mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 14:58:39 -05:00
Remove superfluous std::move in return std::move(local_var)
This commit is contained in:
@ -117,7 +117,7 @@ Entry CreateEntry(Class log_class, Level log_level,
|
||||
vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
|
||||
entry.message = std::string(formatting_buffer.data());
|
||||
|
||||
return std::move(entry);
|
||||
return entry;
|
||||
}
|
||||
|
||||
static Filter* filter = nullptr;
|
||||
|
Reference in New Issue
Block a user