From 67d3752f3e59e7f5af163f3521f2c2011392d1f9 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 7 Oct 2013 12:03:40 +0000 Subject: - 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 --- src/mir_core/json/JSONNode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mir_core/json/JSONNode.h') 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){ -- cgit v1.2.3