Fix ci
This commit is contained in:
parent
377a2a91fd
commit
5d8dbac43c
@ -110,7 +110,7 @@ TEST(memory_large_allocations)
|
|||||||
// grow
|
// grow
|
||||||
for (node = doc.first_child(); node; node = node.next_sibling())
|
for (node = doc.first_child(); node; node = node.next_sibling())
|
||||||
{
|
{
|
||||||
std::basic_string<char_t> s{ node.value() };
|
std::basic_string<char_t> s(node.value());
|
||||||
|
|
||||||
CHECK(node.set_value((s + s).c_str()));
|
CHECK(node.set_value((s + s).c_str()));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user