summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu_thread.h
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2019-05-19 16:20:37 +0200
committerGitHub <noreply@github.com>2019-05-19 16:20:37 +0200
commit18cdbdafa225a22fb9fea13b997312cb37d415ab (patch)
tree2e72166d640b649f76d09a6603846a2540fce376 /src/video_core/gpu_thread.h
parentMerge pull request #2463 from lioncash/set (diff)
parentvideo_core/gpu_thread: Remove redundant copy constructor for CommandDataContainer (diff)
downloadyuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar.gz
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar.bz2
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar.lz
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar.xz
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.tar.zst
yuzu-18cdbdafa225a22fb9fea13b997312cb37d415ab.zip
Diffstat (limited to 'src/video_core/gpu_thread.h')
-rw-r--r--src/video_core/gpu_thread.h6
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{};
};