| Index: src/unicode.h
|
| diff --git a/src/unicode.h b/src/unicode.h
|
| index 2d7f995a68fdcc3a4567902a1f750a3ed6eec77a..7471a638c045d169e58bceae78087615b06202a9 100644
|
| --- a/src/unicode.h
|
| +++ b/src/unicode.h
|
| @@ -15,8 +15,8 @@
|
|
|
| namespace unibrow {
|
|
|
| -typedef int32_t uchar;
|
| -typedef uint8_t byte;
|
| +typedef unsigned int uchar;
|
| +typedef unsigned char byte;
|
|
|
| /**
|
| * The max length of the result of converting the case of a single
|
| @@ -130,7 +130,7 @@ class Utf16 {
|
|
|
| class Utf8 {
|
| public:
|
| - static inline unsigned Length(uchar chr, int previous);
|
| + static inline uchar Length(uchar chr, int previous);
|
| static inline unsigned EncodeOneByte(char* out, uint8_t c);
|
| static inline unsigned Encode(char* out,
|
| uchar c,
|
|
|