diff options
Diffstat (limited to 'runtime/safe_map.h')
-rw-r--r-- | runtime/safe_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/safe_map.h b/runtime/safe_map.h index 393bf92ba2..190db6092b 100644 --- a/runtime/safe_map.h +++ b/runtime/safe_map.h @@ -27,7 +27,7 @@ namespace art { // Equivalent to std::map, but without operator[] and its bug-prone semantics (in particular, // the implicit insertion of a default-constructed value on failed lookups). template <typename K, typename V, typename Comparator = std::less<K>, - typename Allocator = std::allocator<std::pair<const K, V> > > + typename Allocator = std::allocator<std::pair<const K, V>>> class SafeMap { private: typedef SafeMap<K, V, Comparator, Allocator> Self; |