Skip to content

Commit 89e634d

Browse files
committed
Cleanup.
1 parent 931ec30 commit 89e634d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/data-tests/testdata-xml.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include <cassert>
1212
#include <cstdlib>
13+
#include <cstring>
1314
#include <future>
1415
#include <iostream>
1516
#include <iterator>
@@ -314,7 +315,7 @@ TEST_CASE("Reading OSM XML 140: Using Reader") {
314315
const char* uc = t["unicode_char"];
315316

316317
const auto len = atoi(t["unicode_utf8_length"]);
317-
REQUIRE(len == strlen(uc));
318+
REQUIRE(len == std::strlen(uc));
318319

319320
REQUIRE(S_(uc) == t["unicode_xml"]);
320321

0 commit comments

Comments
 (0)