From 25f4892aa1552259112c6a2bbbc93181f1287a43 Mon Sep 17 00:00:00 2001 From: Kosta Date: Thu, 4 Sep 2014 15:56:21 +0200 Subject: [PATCH] removed unused argument names --- test/unittest/readertest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittest/readertest.cpp b/test/unittest/readertest.cpp index d7c8edb..b42d832 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);