Fatal errors in templates that don't even show up until they're used. Ugh.

This commit is contained in:
Glenn Maynard
2003-11-17 03:53:59 +00:00
parent 7a9bb7bd55
commit 3f666a7cdf
+1 -1
View File
@@ -197,7 +197,7 @@ int FindIndex( T1 begin, T1 end, const T2 *p )
T1 iter = find( begin, end, p );
if( iter == end )
return -1;
return it - begin;
return iter - begin;
}
void TrimLeft(CString &str, const char *s = "\r\n\t ");