1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Fix std::move warning

This commit is contained in:
Megamouse 2024-08-01 01:12:58 +02:00
parent 319c533196
commit 08168c39c8

View File

@ -297,7 +297,7 @@ fmt::base57_result fmt::base57_result::from_string(std::string_view str)
} }
} }
return std::move(result); return result;
} }
void fmt_class_string<const void*>::format(std::string& out, u64 arg) void fmt_class_string<const void*>::format(std::string& out, u64 arg)