diff options
Diffstat (limited to 'source/core/StarPythonic.hpp')
-rw-r--r-- | source/core/StarPythonic.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarPythonic.hpp b/source/core/StarPythonic.hpp index 0bfdc50..0131130 100644 --- a/source/core/StarPythonic.hpp +++ b/source/core/StarPythonic.hpp @@ -599,7 +599,7 @@ template <typename ResultContainer, typename Iterable> ResultContainer enumerateConstruct(Iterable&& list) { ResultContainer res; for (auto el : enumerateIterator(list)) - res.push_back(move(el)); + res.push_back(std::move(el)); return res; } |