Index: compiled/StringMap.h |
=================================================================== |
--- a/compiled/StringMap.h |
+++ b/compiled/StringMap.h |
@@ -90,17 +90,17 @@ |
{ |
typedef StringSetEntry<Key> super; |
typedef Value value_type; |
value_type second; |
StringMapEntry(typename super::key_type_cref key = Key(), |
value_type value = value_type()) |
- : super(key), second(value) |
+ : super(key), second(std::move(value)) |
{ |
} |
void erase() |
{ |
super::erase(); |
second = value_type(); |
} |