From 97e0d20ce9223cc12a44ab0da31e72eead9353a5 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Mon, 8 Jan 2018 21:16:20 +0100 Subject: [PATCH] :construction: debug --- test/src/unit-ubjson.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/src/unit-ubjson.cpp b/test/src/unit-ubjson.cpp index d65f5a14d..e4c060918 100644 --- a/test/src/unit-ubjson.cpp +++ b/test/src/unit-ubjson.cpp @@ -99,9 +99,12 @@ TEST_CASE("UBJSON") numbers.push_back(-100000000000l); numbers.push_back(-10000000000l); numbers.push_back(-2147483649l); + size_t index = 0; for (auto i : numbers) { CAPTURE(i); + CAPTURE(index); + ++index; // create JSON value with integer number json j = i;