diff options
author | scurest <scurest@users.noreply.github.com> | 2016-06-25 13:26:21 -0500 |
---|---|---|
committer | scurest <scurest@users.noreply.github.com> | 2016-06-25 13:26:21 -0500 |
commit | 0f9274fe2426e3b454d93f07e849243d51991cf8 (patch) | |
tree | 7fb68a81a0742e1beb59baeda3f60ffc3ef87f78 /src/video_core | |
parent | 0433e6cf0b9753d30f62cdf9993c54735b2ae2c6 (diff) |
Remove superfluous std::move in return std::move(local_var)
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 871368323..bfa686380 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -328,7 +328,7 @@ std::unique_ptr<PicaTrace> FinishPicaTracing() std::lock_guard<std::mutex> lock(pica_trace_mutex); std::unique_ptr<PicaTrace> ret(std::move(pica_trace)); - return std::move(ret); + return ret; } const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const TextureInfo& info, bool disable_alpha) { |