Remove most of the unordered_ stuff and use the standard equivalents instead.
Change-Id: I01c6f195fd2cf6edbe430fb31e99b2e2748c2088
diff --git a/src/class_loader.h b/src/class_loader.h
index a5436fa..83f35c0 100644
--- a/src/class_loader.h
+++ b/src/class_loader.h
@@ -3,11 +3,11 @@
#ifndef ART_SRC_CLASS_LOADER_H_
#define ART_SRC_CLASS_LOADER_H_
+#include <map>
#include <vector>
#include "dex_file.h"
#include "object.h"
-#include "unordered_map.h"
namespace art {
@@ -26,7 +26,7 @@
ClassLoader* parent_;
Object* proxyCache_;
- typedef std::tr1::unordered_map<const ClassLoader*, std::vector<const DexFile*>, ObjectIdentityHash> Table;
+ typedef std::map<const ClassLoader*, std::vector<const DexFile*> > Table;
static Table compile_time_class_paths_;
static bool use_compile_time_class_path;