diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-04-01 16:39:31 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-04-01 16:39:31 +0200 |
commit | cede94e8190ead8d2bc311e82348119d9abbfc3d (patch) | |
tree | ee28428742e1f19fcc4da6ecadc2c32e89339a3f /libbuild2 | |
parent | 221a53ed3d18217d06f7d8e0bdf9ce315ca2413c (diff) |
Add missing std::move() call
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/functions-string.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/functions-string.cxx b/libbuild2/functions-string.cxx index 0458724..b7e0a17 100644 --- a/libbuild2/functions-string.cxx +++ b/libbuild2/functions-string.cxx @@ -102,7 +102,7 @@ namespace build2 } } - return s; + return move (s); } static size_t |