oops, forgot a return type on isUpperCase() r/sr=sspitzer a=asa [not part of build]

This commit is contained in:
beard%netscape.com 2002-10-12 01:14:53 +00:00
parent 1dfb9604b6
commit 0801450ce0

View File

@ -193,7 +193,7 @@ static bool isDecimalNumber(const char* word)
return true;
}
inline isUpperCase(char c) { return ('A' <= c) && (c <= 'Z'); }
inline bool isUpperCase(char c) { return ('A' <= c) && (c <= 'Z'); }
static char* toLowerCase(char* str)
{