diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-07 12:03:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-07 12:03:40 +0000 |
commit | 67d3752f3e59e7f5af163f3521f2c2011392d1f9 (patch) | |
tree | c164096e73a9a639c42067408ece61f73658bcde /src/mir_core/json/JSONNode.h | |
parent | 7ebf1a9591590e96b8660826175d2d86be12a56a (diff) |
- JSONROOT added to handle json parser more conveniently;
- TCHAR* is returned everywhere instead of char*;
git-svn-id: http://svn.miranda-ng.org/main/trunk@6393 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core/json/JSONNode.h')
-rw-r--r-- | src/mir_core/json/JSONNode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_core/json/JSONNode.h b/src/mir_core/json/JSONNode.h index 27dbef2aee..dfb6ff01f3 100644 --- a/src/mir_core/json/JSONNode.h +++ b/src/mir_core/json/JSONNode.h @@ -135,7 +135,7 @@ public: JSONNode & operator[](const json_string & name_t);
const JSONNode & operator[](const json_string & name_t) const;
#ifdef JSON_LIBRARY
- void push_back(JSONNode * node);
+ void push_back(JSONNode *node);
#else
void push_back(const JSONNode & node);
#endif
@@ -385,7 +385,7 @@ public: auto_lock(JSONNode & node, int thread) : mynode(&node), mythread(thread){
mynode -> lock(mythread);
}
- auto_lock(JSONNode * node, int thread) : mynode(node), mythread(thread){
+ auto_lock(JSONNode *node, int thread) : mynode(node), mythread(thread){
mynode -> lock(mythread);
}
~auto_lock(void){
|