From c9e889723b7af832322d178975e6e440d6cd3ae5 Mon Sep 17 00:00:00 2001 From: LDA Date: Mon, 26 Jun 2023 11:48:27 -0700 Subject: resolved most of the compiler warnings/errors under gcc also update xxhash and tinyformat --- source/core/StarString.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/core/StarString.hpp') diff --git a/source/core/StarString.hpp b/source/core/StarString.hpp index 5adb0f9..1fe1aaa 100644 --- a/source/core/StarString.hpp +++ b/source/core/StarString.hpp @@ -428,7 +428,7 @@ String String::lookupTags(Lookup&& lookup) const { } } - return move(finalString); + return finalString; } template @@ -466,7 +466,7 @@ Maybe String::maybeLookupTagsView(Lookup&& lookup) const { for (auto& view : finalViews) finalString += view; - return move(finalString); + return String(finalString); } template -- cgit v1.2.3