diff options
Diffstat (limited to 'libs/libjson/src/JSONNode.h')
-rw-r--r-- | libs/libjson/src/JSONNode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libjson/src/JSONNode.h b/libs/libjson/src/JSONNode.h index fe32427019..2f5119ef90 100644 --- a/libs/libjson/src/JSONNode.h +++ b/libs/libjson/src/JSONNode.h @@ -152,8 +152,8 @@ public: #endif
JSONNode& operator<<(const JSONNode & node);
void reserve(json_index_t size);
- JSONNode JSON_PTR_LIB pop_back(json_index_t pos);
- JSONNode JSON_PTR_LIB pop_back(const json_string & name_t);
+ JSONNode* JSON_PTR_LIB pop_back(json_index_t pos);
+ JSONNode* JSON_PTR_LIB pop_back(const json_string & name_t);
#ifdef JSON_CASE_INSENSITIVE_FUNCTIONS
JSONNode JSON_PTR_LIB pop_back_nocase(const json_string & name_t);
#endif
|