From 25d8c1af91225d61205e593d1e3e3dfcba6b220e Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 7 May 2015 10:48:05 +0100 Subject: [PATCH] Removed inline marker #210 --- imgui.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 006aaf5d3..662001e78 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -7800,8 +7800,7 @@ void ImGui::Columns(int columns_count, const char* id, bool border) } } - -inline void ImGui::Indent() +void ImGui::Indent() { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow(); @@ -7809,7 +7808,7 @@ inline void ImGui::Indent() window->DC.CursorPos.x = window->Pos.x + window->DC.ColumnsStartX + window->DC.ColumnsOffsetX; } -inline void ImGui::Unindent() +void ImGui::Unindent() { ImGuiState& g = *GImGui; ImGuiWindow* window = GetCurrentWindow();