summaryrefslogtreecommitdiff
path: root/stoc/source/corereflection/base.hxx
diff options
context:
space:
mode:
authorFridrich Strba <fridrich.strba@bluewin.ch>2011-02-03 16:24:08 -0700
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-04 00:28:23 +0100
commit030633cd53e8aacdcf1927c46dd6d5b8db58d841 (patch)
tree300d66694581d452a9709f736ad7376ca8f55043 /stoc/source/corereflection/base.hxx
parentaac09aee6761197a023fba69a88340fdba0684fb (diff)
moving the rest of ure repository to boost unordered containers
Diffstat (limited to 'stoc/source/corereflection/base.hxx')
-rw-r--r--stoc/source/corereflection/base.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/corereflection/base.hxx b/stoc/source/corereflection/base.hxx
index 64e7b5bfc13c..0bdab4cee972 100644
--- a/stoc/source/corereflection/base.hxx
+++ b/stoc/source/corereflection/base.hxx
@@ -44,7 +44,7 @@
#include <list>
#include <algorithm>
#endif
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
@@ -97,9 +97,9 @@ inline typelib_TypeDescription * getTypeByName( const OUString & rName )
return pTypeDescr;
}
-typedef std::hash_map< OUString, WeakReference< XIdlField >,
+typedef boost::unordered_map< OUString, WeakReference< XIdlField >,
FctHashOUString, equal_to< OUString > > OUString2Field;
-typedef std::hash_map< OUString, WeakReference< XIdlMethod >,
+typedef boost::unordered_map< OUString, WeakReference< XIdlMethod >,
FctHashOUString, equal_to< OUString > > OUString2Method;
//==================================================================================================