We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1cafb6 commit ef38374Copy full SHA for ef38374
src/lib_json/json_reader.cpp
@@ -1265,7 +1265,7 @@ bool OurReader::readStringSingleQuote() {
1265
return c == '\'';
1266
}
1267
1268
-bool OurReader::readObject(Token& tokenStart) {
+bool OurReader::readObject(Token& /*tokenStart*/) {
1269
Token tokenName;
1270
std::string name;
1271
Value init(objectValue);
@@ -1326,7 +1326,7 @@ bool OurReader::readObject(Token& tokenStart) {
1326
"Missing '}' or object member name", tokenName, tokenObjectEnd);
1327
1328
1329
-bool OurReader::readArray(Token& tokenStart) {
+bool OurReader::readArray(Token& /*tokenStart*/) {
1330
Value init(arrayValue);
1331
currentValue().swapPayload(init);
1332
skipSpaces();
0 commit comments