diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2019-05-19 15:20:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 15:20:37 +0100 |
commit | 18cdbdafa225a22fb9fea13b997312cb37d415ab (patch) | |
tree | 2e72166d640b649f76d09a6603846a2540fce376 /src | |
parent | 594328f4946e4c1b347a308c0888c399cd74d4f2 (diff) | |
parent | c5129a3a58956256c72bf3915a2a2ac93a1f58e3 (diff) |
Merge pull request #2467 from lioncash/move
video_core/gpu_thread: Remove redundant copy constructor for CommandDataContainer
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/gpu_thread.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h index cdf86f562..05a168a72 100644 --- a/src/video_core/gpu_thread.h +++ b/src/video_core/gpu_thread.h @@ -81,12 +81,6 @@ struct CommandDataContainer { CommandDataContainer(CommandData&& data, u64 next_fence) : data{std::move(data)}, fence{next_fence} {} - CommandDataContainer& operator=(const CommandDataContainer& t) { - data = std::move(t.data); - fence = t.fence; - return *this; - } - CommandData data; u64 fence{}; }; |