Merge pull request #57 from travisdoor/master

Disable MSVC warnings for integrated client.
This commit is contained in:
Bartosz Taudul 2020-06-20 23:05:43 +02:00 committed by GitHub
commit 5c12c575b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,10 @@
#ifdef TRACY_ENABLE
#ifdef _MSC_VER
# pragma warning(push, 0)
#endif
#include "common/tracy_lz4.cpp"
#include "client/TracyProfiler.cpp"
#include "client/TracyCallstack.cpp"
@ -42,6 +46,7 @@
#ifdef _MSC_VER
# pragma comment(lib, "ws2_32.lib")
# pragma comment(lib, "dbghelp.lib")
# pragma warning(pop)
#endif
#endif