TracyImGui.hpp does not need assert.h nor algorithm includes.

This commit is contained in:
Bartosz Taudul 2022-07-02 16:29:37 +02:00
parent 4347cc58b1
commit 1879d07eae
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,6 @@
#include <assert.h>
#include <algorithm>
#include "TracyPrint.hpp" #include "TracyPrint.hpp"
#include "TracyImGui.hpp" #include "TracyImGui.hpp"

View File

@ -5,8 +5,7 @@
# pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data # pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data
#endif #endif
#include <algorithm> #include <math.h>
#include <assert.h>
#include <stdint.h> #include <stdint.h>
#include "imgui.h" #include "imgui.h"