diff options
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){
|