summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
diff options
context:
space:
mode:
author Olivier Galibert <olivier.galibert@lne.fr>2016-04-06 09:55:39 +0200
committer Olivier Galibert <galibert@pobox.com>2016-04-06 09:57:41 +0200
commitcba86ac1722089d58f885ac2d695a6f23b3762a6 (patch)
treeedde1f46eabe115b9e49ac80f80fef0877152a26 /3rdparty
parent9d9939820840bcd96e8b496433515f4e242c559c (diff)
Silence borderline warning (nw)
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/bgfx/3rdparty/ocornut-imgui/imgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/bgfx/3rdparty/ocornut-imgui/imgui.cpp b/3rdparty/bgfx/3rdparty/ocornut-imgui/imgui.cpp
index eab90ad5b1d..4e086d323ca 100644
--- a/3rdparty/bgfx/3rdparty/ocornut-imgui/imgui.cpp
+++ b/3rdparty/bgfx/3rdparty/ocornut-imgui/imgui.cpp
@@ -1653,7 +1653,7 @@ ImGuiWindow* ImGui::GetParentWindow()
{
ImGuiState& g = *GImGui;
IM_ASSERT(g.CurrentWindowStack.Size >= 2);
- return g.CurrentWindowStack[g.CurrentWindowStack.Size - 2];
+ return g.CurrentWindowStack[(unsigned int)g.CurrentWindowStack.Size - 2];
}
void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window = NULL)