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 4b5202ab5c..89da927cc2 100644 --- a/runtime/safe_map.h +++ b/runtime/safe_map.h @@ -70,7 +70,7 @@ class SafeMap { // Used to insert a new mapping. void Put(const K& k, const V& v) { std::pair<iterator, bool> result = map_.insert(std::make_pair(k, v)); - DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. + DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. } // Used to insert a new mapping or overwrite an existing mapping. Note that if the value type |