commit | a0e180632411f7fe0edf454e571c42209ee7b540 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 13 15:59:59 2012 -0700 |
committer | Elliott Hughes <enh@google.com> | Sat Apr 14 11:44:21 2012 -0700 |
tree | 97dc85e76c5449ec1a901226c44e0f68fec89870 | |
parent | e5eb1914de86129d78e965fb9f2e1bfb2aa68640 [diff] [blame] |
Add a SafeMap equivalent to std::map but without the error-prone operator[]. Change-Id: Iae5ba2091c55a34dbd1005cf3d25fce2a8d5c1f9
diff --git a/src/intern_table.h b/src/intern_table.h index bb8e031..58d87d0 100644 --- a/src/intern_table.h +++ b/src/intern_table.h
@@ -18,11 +18,11 @@ #define ART_SRC_INTERN_TABLE_H_ #include <iosfwd> -#include <map> #include "heap.h" #include "mutex.h" #include "object.h" +#include "safe_map.h" namespace art {