Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / copresence / timed_map.h
index 4367e59..7def76e 100644 (file)
@@ -48,7 +48,7 @@ class TimedMap {
 
   const ValueType& GetValue(const KeyType& key) {
     ClearExpiredTokens();
-    typename std::map<KeyType, ValueType>::const_iterator elt = map_.find(key);
+    auto elt = map_.find(key);
     return elt == map_.end() ? kEmptyValue : elt->second;
   }