From 8b3895473da5b56cb6efe5c618f84a4353250af2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 22 Aug 2018 16:29:15 +0200 Subject: [PATCH] Gag inconsequential MSVC warnings in TracySocket. Fix your API! --- common/TracySocket.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/TracySocket.cpp b/common/TracySocket.cpp index 4a918a5b..ebbc1f74 100644 --- a/common/TracySocket.cpp +++ b/common/TracySocket.cpp @@ -12,6 +12,8 @@ #ifdef _MSC_VER # include # include +# pragma warning(disable:4244) +# pragma warning(disable:4267) #else # include # include