[Libreoffice-commits] .: unodevtools/inc

Joseph Powers jpowers at kemper.freedesktop.org
Fri Feb 4 06:24:06 PST 2011


 unodevtools/inc/unodevtools/typemanager.hxx |   11 -----------
 1 file changed, 11 deletions(-)

New commits:
commit d8c0608bdedaea60f55eb94ca50556d8007e30cb
Author: Joseph Powers <jpowers27 at cox.net>
Date:   Fri Feb 4 06:23:55 2011 -0800

    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.

diff --git a/unodevtools/inc/unodevtools/typemanager.hxx b/unodevtools/inc/unodevtools/typemanager.hxx
index 44d9ca3..c1f375a 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 {
 


More information about the Libreoffice-commits mailing list