summaryrefslogtreecommitdiffstats
path: root/codemaker
diff options
context:
space:
mode:
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/inc/codemaker/dependencies.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/inc/codemaker/dependencies.hxx b/codemaker/inc/codemaker/dependencies.hxx
index 157939208e5b..c45db676d667 100644
--- a/codemaker/inc/codemaker/dependencies.hxx
+++ b/codemaker/inc/codemaker/dependencies.hxx
@@ -22,11 +22,11 @@
#include "sal/config.h"
+#include <map>
+
#include "rtl/ref.hxx"
#include "rtl/string.hxx"
-#include <boost/unordered_map.hpp>
-
namespace rtl { class OUString; }
class TypeManager;
@@ -47,7 +47,7 @@ public:
*/
enum Kind { KIND_NO_BASE, KIND_BASE };
- typedef boost::unordered_map< rtl::OString, Kind, rtl::OStringHash > Map;
+ typedef std::map< rtl::OString, Kind > Map;
/**
Constructs the dependencies for a given type.