🚨 fixed a compiler warning
This commit is contained in:
parent
e33b31e6aa
commit
57faaf42ca
1 changed files with 1 additions and 1 deletions
|
@ -1493,7 +1493,7 @@ TEST_CASE("regression tests")
|
||||||
)";
|
)";
|
||||||
|
|
||||||
// define parser callback
|
// define parser callback
|
||||||
json::parser_callback_t cb = [](int depth, json::parse_event_t event, json & parsed)
|
json::parser_callback_t cb = [](int /*depth*/, json::parse_event_t event, json & parsed)
|
||||||
{
|
{
|
||||||
// skip object elements with key "Thumbnail"
|
// skip object elements with key "Thumbnail"
|
||||||
if (event == json::parse_event_t::key and parsed == json("Thumbnail"))
|
if (event == json::parse_event_t::key and parsed == json("Thumbnail"))
|
||||||
|
|
Loading…
Reference in a new issue