From 63f762bc4847147bb9c18ed9ef41911daa444823 Mon Sep 17 00:00:00 2001 From: Sean Middleditch Date: Wed, 13 Jan 2010 18:34:17 -0800 Subject: [PATCH] save flags default to 0 --- janssonxx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/janssonxx.h b/janssonxx.h index 57e2aed..6703f95 100644 --- a/janssonxx.h +++ b/janssonxx.h @@ -57,12 +57,12 @@ public: } // write the value to a file - int save_file(const char* path, int flags = JSON_INDENT(2)) const { + int save_file(const char* path, int flags = 0) const { return json_dump_file(_value, path, flags); } // write the value to a string (caller must deallocate with free()!) - char* save_string(int flags = JSON_INDENT(2)) const { + char* save_string(int flags = 0) const { return json_dumps(_value, flags); }