Don't use move semantics for return values

This commit is contained in:
Yonas Habteab 2022-08-26 17:10:13 +02:00
parent f5380cfeba
commit 1fc4b075f9

View File

@ -242,5 +242,5 @@ String icinga::PackObject(const Value& value)
std::string builder;
PackAny(value, builder);
return std::move(builder);
return builder;
}