diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-23 17:32:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-23 17:32:07 +0000 |
commit | 8c33681f317706acf4cd319927a2e37fc78c2256 (patch) | |
tree | 9b60033e353e050a7eaf534dfc2cff594f76d2ea /src/modules/json/JSONWorker.h | |
parent | d11afafa9a4ffcf5c33f64d55d1ce22e452d6120 (diff) |
- warning fixes
- code formatting
git-svn-id: http://svn.miranda-ng.org/main/trunk@577 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/json/JSONWorker.h')
-rw-r--r-- | src/modules/json/JSONWorker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/json/JSONWorker.h b/src/modules/json/JSONWorker.h index 373660743c..91a4f6d8c4 100644 --- a/src/modules/json/JSONWorker.h +++ b/src/modules/json/JSONWorker.h @@ -31,12 +31,12 @@ public: static json_string UnfixString(const json_string & value_t, bool flag); JSON_PRIVATE static json_char Hex(const json_char * & pos); - static unsigned json_char UTF8(const json_char * & pos); + static json_uchar UTF8(const json_char * & pos); static json_char* UTF8_2(const json_char * & pos); - static json_string toUTF8(unsigned json_char p); + static json_string toUTF8(json_uchar p); #ifdef JSON_UNICODE static json_string UTF(const json_char * & pos); - static json_string toSurrogatePair(unsigned json_char pos); + static json_string toSurrogatePair(json_uchar pos); #endif static void SpecialChar(const json_char * & pos, json_string & res); static size_t FindNextRelevant(json_char ch, const json_string & value_t, const size_t pos); |