Skip to content
Snippets Groups Projects
Unverified Commit 18cdbdaf authored by Hexagon12's avatar Hexagon12 Committed by GitHub
Browse files

Merge pull request #2467 from lioncash/move

video_core/gpu_thread: Remove redundant copy constructor for CommandDataContainer
parents 594328f4 c5129a3a
No related branches found
No related tags found
No related merge requests found
...@@ -81,12 +81,6 @@ struct CommandDataContainer { ...@@ -81,12 +81,6 @@ struct CommandDataContainer {
CommandDataContainer(CommandData&& data, u64 next_fence) CommandDataContainer(CommandData&& data, u64 next_fence)
: data{std::move(data)}, fence{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; CommandData data;
u64 fence{}; u64 fence{};
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment