From 53550424d90c8e4b4e01dbc4d26a4f7235065af6 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sun, 21 Sep 2014 21:52:24 +0000 Subject: tests: Fix PUGIXML_WCHAR_MODE build git-svn-id: https://pugixml.googlecode.com/svn/trunk@1017 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_write.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_write.cpp') diff --git a/tests/test_write.cpp b/tests/test_write.cpp index 1009d4e..523a91e 100644 --- a/tests/test_write.cpp +++ b/tests/test_write.cpp @@ -415,12 +415,12 @@ TEST(write_stackless) std::basic_string data; for (unsigned int i = 0; i < count; ++i) - data += ""; + data += STR(""); - data += "text"; + data += STR("text"); for (unsigned int i = 0; i < count; ++i) - data += ""; + data += STR(""); xml_document doc; CHECK(doc.load(data.c_str())); -- cgit v1.2.3