Remove most of the unordered_ stuff and use the standard equivalents instead.
Change-Id: I01c6f195fd2cf6edbe430fb31e99b2e2748c2088
diff --git a/src/compiler.h b/src/compiler.h
index bf21ed6..9d2b64c 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -3,6 +3,8 @@
#ifndef ART_SRC_COMPILER_H_
#define ART_SRC_COMPILER_H_
+#include <map>
+
#include "compiled_class.h"
#include "compiled_method.h"
#include "constants.h"
@@ -165,7 +167,7 @@
// All method references that this compiler has compiled
MethodTable compiled_methods_;
- typedef std::tr1::unordered_map<std::string, const CompiledInvokeStub*> InvokeStubTable;
+ typedef std::map<std::string, const CompiledInvokeStub*> InvokeStubTable;
// Invocation stubs created to allow invocation of the compiled methods
InvokeStubTable compiled_invoke_stubs_;