Index: compiled/IntMap.h |
=================================================================== |
--- a/compiled/IntMap.h |
+++ b/compiled/IntMap.h |
@@ -73,17 +73,17 @@ |
struct Uint32MapEntry : Uint32SetEntry |
{ |
typedef Uint32SetEntry super; |
typedef Value value_type; |
value_type second; |
Uint32MapEntry(key_type_cref key = KEY_INVALID, value_type value = value_type()) |
- : Uint32SetEntry(key), second(value) |
+ : Uint32SetEntry(key), second(std::move(value)) |
{ |
} |
void erase() |
{ |
super::erase(); |
second = value_type(); |
} |