]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Disable REFCOUNT_DEBUG by default in json_object.c
authorChristopher Watford <christopher.watford@gmail.com>
Tue, 30 Jun 2009 03:40:53 +0000 (03:40 +0000)
committerChristopher Watford <christopher.watford@gmail.com>
Tue, 30 Jun 2009 03:40:53 +0000 (03:40 +0000)
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@40 327403b1-1117-474d-bef2-5cb71233fd97

ChangeLog
json_object.c

index bcff91f1c06a99339894653093ac7ad96bd42386..6065747ee728b7e96836e07fc10e320e6346d09f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
     Spotted by Vitaly Kruglikov, Vitaly dot Kruglikov at palm dot com
   * optimizations to json_tokener_parse_ex(), printbuf_memappend()
     Brent Miller, bdmiller at yahoo dash inc dot com
+  * Disable REFCOUNT_DEBUG by default in json_object.c
   * Don't use this as a variable, so we can compile with a C++ compiler
   * Add casts from void* to type of assignment when using malloc 
   * Add #ifdef __cplusplus guards to all of the headers
index e412e4f7dbf20006b7fd294ced316cf8d50f8234..f52445c901163e2da6fb015d1d30767ce02393b0 100644 (file)
@@ -27,7 +27,7 @@
   char* strndup(const char* str, size_t n);
 #endif /* !HAVE_STRNDUP */
 
-#define REFCOUNT_DEBUG 1
+/* #define REFCOUNT_DEBUG 1 */
 
 const char *json_number_chars = "0123456789.+-eE";
 const char *json_hex_chars = "0123456789abcdef";