Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKosta <konstantin.baumann@autodesk.com>2014-09-04 17:56:21 +0400
committerKosta <konstantin.baumann@autodesk.com>2014-09-04 17:56:21 +0400
commit25f4892aa1552259112c6a2bbbc93181f1287a43 (patch)
tree6a3c4202439c22a84a4809e79b4438ff749d39eb
parent8b2faff9818aca4be10589d31088ea1c1bae3bb2 (diff)
removed unused argument names
-rw-r--r--test/unittest/readertest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittest/readertest.cpp b/test/unittest/readertest.cpp
index d7c8edba..b42d8323 100644
--- a/test/unittest/readertest.cpp
+++ b/test/unittest/readertest.cpp
@@ -849,7 +849,7 @@ struct IterativeParsingReaderHandler {
bool StartObject() { RAPIDJSON_ASSERT(LogCount < LogCapacity); Logs[LogCount++] = LOG_STARTOBJECT; return true; }
- bool Key (const Ch* str, SizeType len, bool copy) { RAPIDJSON_ASSERT(LogCount < LogCapacity); Logs[LogCount++] = LOG_KEY; return true; }
+ bool Key (const Ch*, SizeType, bool) { RAPIDJSON_ASSERT(LogCount < LogCapacity); Logs[LogCount++] = LOG_KEY; return true; }
bool EndObject(SizeType c) {
RAPIDJSON_ASSERT(LogCount < LogCapacity);