From 1879d07eae26fc2b806725f92e1433eeeea3412a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 2 Jul 2022 16:29:37 +0200 Subject: [PATCH] TracyImGui.hpp does not need assert.h nor algorithm includes. --- server/TracyImGui.cpp | 3 +++ server/TracyImGui.hpp | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/server/TracyImGui.cpp b/server/TracyImGui.cpp index b50b818e..b7104f15 100644 --- a/server/TracyImGui.cpp +++ b/server/TracyImGui.cpp @@ -1,3 +1,6 @@ +#include +#include + #include "TracyPrint.hpp" #include "TracyImGui.hpp" diff --git a/server/TracyImGui.hpp b/server/TracyImGui.hpp index 890fe815..1f1928f2 100644 --- a/server/TracyImGui.hpp +++ b/server/TracyImGui.hpp @@ -5,8 +5,7 @@ # pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data #endif -#include -#include +#include #include #include "imgui.h"