Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-06-22 14:40:00 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-06-22 14:40:00 +0300
commiteb4c7ca9ea83ab211d9ef10bb1c5e7dd02c066cc (patch)
tree233d33f1834f8564a9a1f3dcd77d368d06eefdca /server/TracyImGui.hpp
parenta3ce08a9f9df7c3f692be579ac7b86343a8c1e34 (diff)
Ignore useless warnings.
Diffstat (limited to 'server/TracyImGui.hpp')
-rw-r--r--server/TracyImGui.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/TracyImGui.hpp b/server/TracyImGui.hpp
index fd33efb1..e805867e 100644
--- a/server/TracyImGui.hpp
+++ b/server/TracyImGui.hpp
@@ -1,6 +1,10 @@
#ifndef __TRACYIMGUI_HPP__
#define __TRACYIMGUI_HPP__
+#ifdef _MSC_VER
+# pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data
+#endif
+
#include "../imgui/imgui.h"
#include "../imgui/imgui_internal.h"