Преглед изворни кода

Merge pull request #2467 from lioncash/move

video_core/gpu_thread: Remove redundant copy constructor for CommandDataContainer
Hexagon12 пре 7 година
родитељ
комит
18cdbdafa2
1 измењених фајлова са 0 додато и 6 уклоњено
  1. 0 6
      src/video_core/gpu_thread.h

+ 0 - 6
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{};
 };