Commit 331009a3 authored by miloyip's avatar miloyip

Fix gcc warning

parent 7e1a6a1b
......@@ -1196,10 +1196,10 @@ struct TerminateHandler {
bool Double(double) { return e != 6; }
bool String(const char*, SizeType, bool) { return e != 7; }
bool StartObject() { return e != 8; }
bool Key(const char* str, SizeType length, bool copy) { return e != 9; }
bool EndObject(SizeType memberCount) { return e != 10; }
bool Key(const char*, SizeType, bool) { return e != 9; }
bool EndObject(SizeType) { return e != 10; }
bool StartArray() { return e != 11; }
bool EndArray(SizeType elementCount) { return e != 12; }
bool EndArray(SizeType) { return e != 12; }
};
#define TEST_TERMINATION(e, json)\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment