summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-05-30 15:45:57 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-05-30 15:45:57 +0300
commite25ca371cdef387bf6421747830434fd1694d3f1 (patch)
treeee67df9ade809af058abfbe3343caa735368a040 /setup_native/source/win32/customactions
parentf8205aeecb38200b3179d01e4021dbe41e466b6c (diff)
Use boost::unordered_map instead of the non-std hash_map so that it compiles without stlport
Diffstat (limited to 'setup_native/source/win32/customactions')
-rw-r--r--setup_native/source/win32/customactions/rebase/rebase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup_native/source/win32/customactions/rebase/rebase.cxx b/setup_native/source/win32/customactions/rebase/rebase.cxx
index 601af93dd20a..ad3686c52b3d 100644
--- a/setup_native/source/win32/customactions/rebase/rebase.cxx
+++ b/setup_native/source/win32/customactions/rebase/rebase.cxx
@@ -20,11 +20,11 @@
#include <malloc.h>
#include <time.h>
#include <string>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
const DWORD PE_Signature = 0x00004550;
typedef std::pair< std::string, bool > StringPair;
-typedef std::hash_map< std::string, bool > ExcludeLibsMap;
+typedef boost::unordered_map< std::string, bool > ExcludeLibsMap;
#ifdef DEBUG
static void OutputDebugStringFormat( LPCSTR pFormat, ... )