Moves the data members to satisfy the order they're declared as in the constructor initializer list. Silences a -Wreorder warning.
@@ -127,10 +127,10 @@ private:
private:
SynchState state;
- std::thread thread;
- std::thread::id thread_id;
VideoCore::RendererBase& renderer;
Tegra::DmaPusher& dma_pusher;
+ std::thread thread;
+ std::thread::id thread_id;
};
} // namespace VideoCommon::GPUThread