Browse Source

video_core/gpu_thread: Amend constructor initializer list order

Moves the data members to satisfy the order they're declared as in the
constructor initializer list.

Silences a -Wreorder warning.
Lioncash 7 years ago
parent
commit
48a461a629
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/video_core/gpu_thread.h

+ 2 - 2
src/video_core/gpu_thread.h

@@ -127,10 +127,10 @@ private:
 
 
 private:
 private:
     SynchState state;
     SynchState state;
-    std::thread thread;
-    std::thread::id thread_id;
     VideoCore::RendererBase& renderer;
     VideoCore::RendererBase& renderer;
     Tegra::DmaPusher& dma_pusher;
     Tegra::DmaPusher& dma_pusher;
+    std::thread thread;
+    std::thread::id thread_id;
 };
 };
 
 
 } // namespace VideoCommon::GPUThread
 } // namespace VideoCommon::GPUThread