mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 02:31:41 +00:00
oops, forgot a return type on isUpperCase() r/sr=sspitzer a=asa [not part of build]
This commit is contained in:
parent
1dfb9604b6
commit
0801450ce0
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user