Added synchronize

This commit is contained in:
Chris Danford
2002-02-11 04:46:31 +00:00
parent 7682367a4e
commit 6ed1d938e7
18 changed files with 180 additions and 45 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ CString GradeToString( Grade g )
case GRADE_D: return "D";
case GRADE_E: return "E";
case GRADE_NO_DATA: return "N";
default: ASSERT(true); return "N";
default: ASSERT( false ); return "N";
}
};
@@ -38,5 +38,5 @@ Grade StringToGrade( CString s )
else if( s == "D" ) return GRADE_D;
else if( s == "E" ) return GRADE_E;
else if( s == "N" ) return GRADE_NO_DATA;
else ASSERT(true); return GRADE_NO_DATA; // invalid grade string
else ASSERT( false ); return GRADE_NO_DATA; // invalid grade string
};