summaryrefslogtreecommitdiff
path: root/include/cppunit/portability/CppUnitMap.h
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-12-11 08:44:46 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-12-11 09:09:46 +0100
commit2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d (patch)
tree743ecbb456327ad21d7899eb93c06eb75d890956 /include/cppunit/portability/CppUnitMap.h
parente8c0def96e6ca4370377747bda1d8a8c0dab4867 (diff)
downloadcppunit-2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d.tar.gz
remove support for old broken C++ compilers
Diffstat (limited to 'include/cppunit/portability/CppUnitMap.h')
-rw-r--r--include/cppunit/portability/CppUnitMap.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/cppunit/portability/CppUnitMap.h b/include/cppunit/portability/CppUnitMap.h
deleted file mode 100644
index 0cdc723..0000000
--- a/include/cppunit/portability/CppUnitMap.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef CPPUNIT_PORTABILITY_CPPUNITMAP_H
-#define CPPUNIT_PORTABILITY_CPPUNITMAP_H
-
-// The technic used is similar to the wrapper of STLPort.
-
-#include <cppunit/Portability.h>
-#include <functional>
-#include <map>
-
-
-#if CPPUNIT_STD_NEED_ALLOCATOR
-
-template<class Key, class T>
-class CppUnitMap : public std::map<Key
- ,T
- ,std::less<Key>
- ,CPPUNIT_STD_ALLOCATOR>
-{
-public:
-};
-
-#else // CPPUNIT_STD_NEED_ALLOCATOR
-
-#define CppUnitMap std::map
-
-#endif
-
-#endif // CPPUNIT_PORTABILITY_CPPUNITMAP_H
-