diff options
| author | 2016-06-25 13:26:21 -0500 | |
|---|---|---|
| committer | 2016-06-25 13:26:21 -0500 | |
| commit | 0f9274fe2426e3b454d93f07e849243d51991cf8 (patch) | |
| tree | 7fb68a81a0742e1beb59baeda3f60ffc3ef87f78 /src/common/logging/backend.cpp | |
| parent | Merge pull request #1926 from JayFoxRox/gpl (diff) | |
| download | yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.gz yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.xz yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.zip | |
Remove superfluous std::move in return std::move(local_var)
Diffstat (limited to 'src/common/logging/backend.cpp')
| -rw-r--r-- | src/common/logging/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index d7008fc66..0b2fabec9 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -117,7 +117,7 @@ Entry CreateEntry(Class log_class, Level log_level, | |||
| 117 | vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args); | 117 | vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args); |
| 118 | entry.message = std::string(formatting_buffer.data()); | 118 | entry.message = std::string(formatting_buffer.data()); |
| 119 | 119 | ||
| 120 | return std::move(entry); | 120 | return entry; |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | static Filter* filter = nullptr; | 123 | static Filter* filter = nullptr; |