diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2011-02-03 14:05:04 -0700 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-03 22:32:23 +0100 |
commit | f8e27a7c4629a6487a0047a7bd32bf5f171e4d9b (patch) | |
tree | b46331deb3fcc0ebb7bc241be9d7c7b6f35d3fc6 /idlc | |
parent | 712fba7496cf40dd09ec26672c285ed09e55ab53 (diff) |
some std::hash_map/set -> boost::unordered_map/set changes
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/inc/idlc/idlctypes.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/idlc/options.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/idlc/inc/idlc/idlctypes.hxx b/idlc/inc/idlc/idlctypes.hxx index 0849dd85fb28..3b7b1d5e3db5 100644 --- a/idlc/inc/idlc/idlctypes.hxx +++ b/idlc/inc/idlc/idlctypes.hxx @@ -30,7 +30,7 @@ #include <stdio.h> -#include <hash_map> +#include <boost/unordered_map.hpp> #include <list> #include <vector> #include <set> @@ -73,7 +73,7 @@ typedef ::std::list< AstUnionLabel* > LabelList; class AstDeclaration; -typedef ::std::hash_map< ::rtl::OString, AstDeclaration*, HashString, EqualString > DeclMap; +typedef ::boost::unordered_map< ::rtl::OString, AstDeclaration*, HashString, EqualString > DeclMap; typedef ::std::list< AstDeclaration* > DeclList; class AstScope; diff --git a/idlc/inc/idlc/options.hxx b/idlc/inc/idlc/options.hxx index 796552aec671..f319c082cc42 100644 --- a/idlc/inc/idlc/options.hxx +++ b/idlc/inc/idlc/options.hxx @@ -31,7 +31,7 @@ #include <idlc/idlctypes.hxx> -typedef ::std::hash_map< ::rtl::OString, +typedef ::boost::unordered_map< ::rtl::OString, ::rtl::OString, HashString, EqualString > OptionMap; |