summaryrefslogtreecommitdiff
path: root/tests/test_document.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-07 16:07:03 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-07 16:07:03 +0000
commit47c17a25d934450a28fdceecaecf1100943381a9 (patch)
tree22387c9c184da45703beb25f23131a446bc77bfd /tests/test_document.cpp
parent45a0392656faaac09a8c7e322ead46a84bb1f1a8 (diff)
tests: Added C++0x support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@505 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r--tests/test_document.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp
index 6dbc0fe..bed9498 100644
--- a/tests/test_document.cpp
+++ b/tests/test_document.cpp
@@ -15,6 +15,10 @@
#include <string>
+#ifdef __MINGW32__
+# include <io.h> // for unlink in C++0x mode
+#endif
+
TEST(document_create_empty)
{
pugi::xml_document doc;