save flags default to 0

This commit is contained in:
Sean Middleditch 2010-01-13 18:34:17 -08:00
parent 5a0efe6536
commit 63f762bc48

View File

@ -57,12 +57,12 @@ public:
} }
// write the value to a file // 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); return json_dump_file(_value, path, flags);
} }
// write the value to a string (caller must deallocate with free()!) // 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); return json_dumps(_value, flags);
} }