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)