diff options
Diffstat (limited to 'source/core/StarOrderedSet.hpp')
-rw-r--r-- | source/core/StarOrderedSet.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarOrderedSet.hpp b/source/core/StarOrderedSet.hpp index 1f42132..abfb19b 100644 --- a/source/core/StarOrderedSet.hpp +++ b/source/core/StarOrderedSet.hpp @@ -167,7 +167,7 @@ template <template <typename...> class Map, typename Value, typename Allocator, auto OrderedSetWrapper<Map, Value, Allocator, Args...>::values() const -> List<value_type> { List<value_type> values; for (auto p : *this) - values.append(move(p)); + values.append(std::move(p)); return values; } |