Index: src/unicode.h |
diff --git a/src/unicode.h b/src/unicode.h |
index 0278576317c256450c11ebe3ec52cf4100a5530d..f8a1f60cdd04ac9578aa374eb2dd7599bf3ee9b6 100644 |
--- a/src/unicode.h |
+++ b/src/unicode.h |
@@ -140,7 +140,10 @@ class Latin1 { |
#else |
static const unsigned kMaxChar = 0xff; |
#endif |
- static inline bool NonLatin1CanBeConvertedToLatin1(uint16_t); |
+ // Returns 0 if character does not convert to single latin-1 character |
+ // or if the character doesn't not convert back to latin-1 via inverse |
+ // operation (upper to lower, etc). |
+ static inline uint16_t ConvertNonLatin1ToLatin1(uint16_t); |
}; |
class Utf8 { |