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
commitd8c0608bdedaea60f55eb94ca50556d8007e30cb (patch)
treec46cdb706fda6ba4ae4f173be614c62bbf1541b0 /unodevtools
parentef810f3e4a9f0cb0c00761ac9b546da1709f6c68 (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 44d9ca3e..c1f375a2 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 {