diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2019-05-19 16:20:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 16:20:37 +0200 |
commit | 18cdbdafa225a22fb9fea13b997312cb37d415ab (patch) | |
tree | 2e72166d640b649f76d09a6603846a2540fce376 /src/video_core | |
parent | Merge pull request #2463 from lioncash/set (diff) | |
parent | video_core/gpu_thread: Remove redundant copy constructor for CommandDataContainer (diff) | |
download | yuzu-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')
-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{}; }; |