summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-02-04 06:23:55 -0800
committerJoseph Powers <jpowers27@cox.net>2011-02-04 06:23:55 -0800
commitb3e9505cc1d6685ef6bdf747800cce1b0fb52a35 (patch)
treebe1f2d109fc859ede78572ade395594edb44400c /unodevtools
parentdc19cced039f184efb43ae7eb7c9fdb868fda1ec (diff)
Remove "Visual C++, 32-bit, version 5.0" and prior version of T2TypeClassMap
Fridrich Strba removed this support in his patches to change the class from a std::hash to a boost::unordered_map.
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/inc/unodevtools/typemanager.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/unodevtools/inc/unodevtools/typemanager.hxx b/unodevtools/inc/unodevtools/typemanager.hxx
index 6db17516ac31..79dceee17959 100644
--- a/unodevtools/inc/unodevtools/typemanager.hxx
+++ b/unodevtools/inc/unodevtools/typemanager.hxx
@@ -39,16 +39,6 @@ class RegistryKey;
namespace typereg { class Reader; }
-#if defined( _MSC_VER ) && ( _MSC_VER < 1200 )
-typedef ::std::__hash_map__
-<
- ::rtl::OString, // Typename
- RTTypeClass, // TypeClass
- HashString,
- EqualString,
- NewAlloc
-> T2TypeClassMap;
-#else
typedef boost::unordered_map
<
::rtl::OString, // Typename
@@ -56,7 +46,6 @@ typedef boost::unordered_map
HashString,
EqualString
> T2TypeClassMap;
-#endif
namespace unodevtools {