summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/src/ex_import/tinystr.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-03-17 16:35:15 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-03-17 16:35:15 +0000
commit6c43253da0dd38a409146f7acb90ae6cc1ef8069 (patch)
tree6da7874de2057cde0dd14167153950d03ea6d22f /plugins/UserInfoEx/src/ex_import/tinystr.h
parent82ae452fff08430d514f762f49e78fec90f88625 (diff)
removed not used headers
added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@4079 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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.