Skip to content
Snippets Groups Projects
Commit 2cd051dc authored by Julien Schueller's avatar Julien Schueller
Browse files

Win32RenderWindowInteractor: Use brace initializer

Fixes: !11848
parent 54bbb17f
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ private:
HWND WindowId;
int TimerId;
HANDLE PlatformId;
std::atomic<bool> Posted = false;
std::atomic<bool> Posted{ false };
};
std::map<int, std::unique_ptr<TimerContext>> TimerContextMap;
};
......
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