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 697b80a commit c47d19dCopy full SHA for c47d19d
extras/tests/MixedConfiguration/string_length_size_4.cpp
@@ -57,6 +57,7 @@ TEST_CASE("ARDUINOJSON_STRING_LENGTH_SIZE == 4") {
57
auto binary = doc.as<MsgPackBinary>();
58
REQUIRE(binary.size() == 65536);
59
REQUIRE(binary.data() != nullptr);
60
- REQUIRE(std::string(reinterpret_cast<const char*>(binary.data()), binary.size()) == str);
+ REQUIRE(std::string(reinterpret_cast<const char*>(binary.data()),
61
+ binary.size()) == str);
62
}
63
0 commit comments