mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-05 20:48:46 +02:00
Backends: DX12: Fix warning (#3706). Disable obsolete Tables enums, leave them commented out. Using _MSVC_LANG to enable offsetof() and static_assert() on VS2015.3+
This commit is contained in:
@ -5552,6 +5552,9 @@ void ImGui::ShowAboutWindow(bool* p_open)
|
||||
#ifdef _MSC_VER
|
||||
ImGui::Text("define: _MSC_VER=%d", _MSC_VER);
|
||||
#endif
|
||||
#ifdef _MSVC_LANG
|
||||
ImGui::Text("define: _MSVC_LANG=%d", (int)_MSVC_LANG);
|
||||
#endif
|
||||
#ifdef __MINGW32__
|
||||
ImGui::Text("define: __MINGW32__");
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user