Commit 7d560ed6 authored by vladlosev's avatar vladlosev
Browse files

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

parent 962b6554
...@@ -138,7 +138,7 @@ enum CharFormat { ...@@ -138,7 +138,7 @@ enum CharFormat {
// Returns true if c is a printable ASCII character. We test the // Returns true if c is a printable ASCII character. We test the
// value of c directly instead of calling isprint(), which is buggy on // value of c directly instead of calling isprint(), which is buggy on
// Windows Mobile. // Windows Mobile.
static inline bool IsPrintableAscii(wchar_t c) { inline bool IsPrintableAscii(wchar_t c) {
return 0x20 <= c && c <= 0x7E; return 0x20 <= c && c <= 0x7E;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment