Fixes a compiler error when compiling with Visual Age (by Hady Zalek).

This commit is contained in:
vladlosev 2011-04-08 00:42:19 +00:00
parent 962b6554f4
commit 7d560ed699

View File

@ -138,7 +138,7 @@ enum CharFormat {
// Returns true if c is a printable ASCII character. We test the
// value of c directly instead of calling isprint(), which is buggy on
// Windows Mobile.
static inline bool IsPrintableAscii(wchar_t c) {
inline bool IsPrintableAscii(wchar_t c) {
return 0x20 <= c && c <= 0x7E;
}