Skip to content
Snippets Groups Projects
Commit 48a461a6 authored by Lioncash's avatar Lioncash
Browse files

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.
parent 3b63a46c
No related branches found
No related tags found
No related merge requests found
......@@ -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
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