@@ -331,7 +331,7 @@ TEST_CASE("Writer Object Array Writing", "[writer]")
331331 {
332332 StringStreamWriter str_writer;
333333 Writer writer (str_writer);
334- writer.insert (" key" , [](ArrayWriter& array_writer)
334+ writer.insert (" key" , [](ArrayWriter& /* array_writer*/ )
335335 {
336336 });
337337 REQUIRE (str_writer.str () == " key = [ ]\r\n " );
@@ -365,7 +365,7 @@ TEST_CASE("Writer Object Object Writing", "[writer]")
365365 {
366366 StringStreamWriter str_writer;
367367 Writer writer (str_writer);
368- writer.insert (" key" , [](ObjectWriter& object_writer)
368+ writer.insert (" key" , [](ObjectWriter& /* object_writer*/ )
369369 {
370370 });
371371 REQUIRE (str_writer.str () == " key = {\r\n }\r\n " );
@@ -598,7 +598,7 @@ TEST_CASE("Writer Array Array Writing", "[writer]")
598598 Writer writer (str_writer);
599599 writer.insert (" key" , [](ArrayWriter& array_writer)
600600 {
601- array_writer.push ([](ArrayWriter& array_writer)
601+ array_writer.push ([](ArrayWriter& /* array_writer*/ )
602602 {
603603 });
604604 });
@@ -627,7 +627,7 @@ TEST_CASE("Writer Array Object Writing", "[writer]")
627627 Writer writer (str_writer);
628628 writer.insert (" key" , [](ArrayWriter& array_writer)
629629 {
630- array_writer.push ([](ObjectWriter& object_writer)
630+ array_writer.push ([](ObjectWriter& /* object_writer*/ )
631631 {
632632 });
633633 });
0 commit comments