summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/idlc')
-rw-r--r--idlc/inc/idlc/idlctypes.hxx10
-rw-r--r--idlc/inc/idlc/options.hxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/idlc/inc/idlc/idlctypes.hxx b/idlc/inc/idlc/idlctypes.hxx
index 7766f837b3a5..e9e4c0c8d6b5 100644
--- a/idlc/inc/idlc/idlctypes.hxx
+++ b/idlc/inc/idlc/idlctypes.hxx
@@ -21,11 +21,11 @@
#include <stdio.h>
-#include <boost/unordered_map.hpp>
#include <list>
-#include <vector>
-#include <string>
#include <set>
+#include <string>
+#include <unordered_map>
+#include <vector>
#include <sal/types.h>
#include <rtl/ustring.hxx>
@@ -44,8 +44,8 @@ typedef ::std::set< OString, LessString > StringSet;
class AstDeclaration;
-typedef ::boost::unordered_map< OString, AstDeclaration*, OStringHash > DeclMap;
-typedef ::std::list< AstDeclaration* > DeclList;
+typedef std::unordered_map< OString, AstDeclaration*, OStringHash > DeclMap;
+typedef std::list< AstDeclaration* > DeclList;
class AstScope;
AstDeclaration* SAL_CALL scopeAsDecl(AstScope* pScope);
diff --git a/idlc/inc/idlc/options.hxx b/idlc/inc/idlc/options.hxx
index 08d839e736f1..ccd2d01639d5 100644
--- a/idlc/inc/idlc/options.hxx
+++ b/idlc/inc/idlc/options.hxx
@@ -22,7 +22,7 @@
#include <idlc/idlctypes.hxx>
-typedef ::boost::unordered_map< OString,
+typedef std::unordered_map< OString,
OString,
OStringHash > OptionMap;