diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-29 19:37:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-29 19:37:09 +0000 |
commit | a350048a2574bb603b8a64d210f42e449f8a4dfe (patch) | |
tree | bcdc4afd8c9caf42db1852494184ccd24e4929ea /libs/libjson/src/JSONNode.h | |
parent | 2afddc4305325447f91d879af7d5c4c280257867 (diff) |
get rid of useless wrapper code in libjson
git-svn-id: http://svn.miranda-ng.org/main/trunk@14755 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 487509d852..fe32427019 100644 --- a/libs/libjson/src/JSONNode.h +++ b/libs/libjson/src/JSONNode.h @@ -424,8 +424,8 @@ public: #endif
#ifdef JSON_WRITER
- json_string write(void);
- json_string write_formatted(void);
+ json_string write(void) const;
+ json_string write_formatted(void) const;
#endif
#ifdef JSON_DEBUG
|