diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-14 14:09:15 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-14 14:09:17 +0200 |
commit | c5129a3a58956256c72bf3915a2a2ac93a1f58e3 (patch) | |
tree | 7edb0e421653340647833a3b4b50058e2388c0cf /src/video_core | |
parent | Merge pull request #2462 from lioncash/video-mm (diff) | |
download | yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar.gz yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar.bz2 yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar.lz yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar.xz yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.tar.zst yuzu-c5129a3a58956256c72bf3915a2a2ac93a1f58e3.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 cc14527c7..64a3335ba 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{}; }; |