summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/src/ex_import/tinystr.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserInfoEx/src/ex_import/tinystr.h')
-rw-r--r--plugins/UserInfoEx/src/ex_import/tinystr.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/plugins/UserInfoEx/src/ex_import/tinystr.h b/plugins/UserInfoEx/src/ex_import/tinystr.h
index ca2c63b1ce..bc854c8ac5 100644
--- a/plugins/UserInfoEx/src/ex_import/tinystr.h
+++ b/plugins/UserInfoEx/src/ex_import/tinystr.h
@@ -47,25 +47,8 @@ Copyright:
#ifndef TIXML_STRING_INCLUDED
#define TIXML_STRING_INCLUDED
-#ifndef USE_MMGR
-#include <assert.h>
-#include <string.h>
-#endif
-
-/* The support for explicit isn't that universal, and it isn't really
- required - it is used to check that the TiXmlString class isn't incorrectly
- used. Be nice to old compilers and macro it here:
-*/
-#if defined(_MSC_VER) && (_MSC_VER >= 1200)
- // Microsoft visual studio, version 6 and higher.
- #define TIXML_EXPLICIT explicit
-#elif defined(__GNUC__) && (__GNUC__ >= 3)
- // GCC version 3 and higher.s
- #define TIXML_EXPLICIT explicit
-#else
- #define TIXML_EXPLICIT
-#endif
+#define TIXML_EXPLICIT explicit
/*
TiXmlString is an emulation of a subset of the std::string template.