mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 13:01:27 +12:00
Fix std::move warning
This commit is contained in:
parent
319c533196
commit
08168c39c8
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue