Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/core/StarString.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/StarString.hpp')
-rw-r--r--source/core/StarString.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarString.hpp b/source/core/StarString.hpp
index 242d54c..10f5b9f 100644
--- a/source/core/StarString.hpp
+++ b/source/core/StarString.hpp
@@ -473,7 +473,7 @@ Maybe<String> String::maybeLookupTagsView(Lookup&& lookup) const {
template <typename Lookup>
String String::lookupTagsView(Lookup&& lookup) const {
auto result = maybeLookupTagsView(lookup);
- return result ? move(result.take()) : String();
+ return result ? std::move(result.take()) : String();
}
template <typename MapType>