1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Fix multiple build errors when compiling with MinGW.

This commit is contained in:
Rokas Kupstys
2019-08-04 12:00:38 +03:00
parent eed7039853
commit b391e4c21a
6 changed files with 26 additions and 2 deletions
+4
View File
@@ -1,12 +1,16 @@
#ifdef _MSC_VER
# pragma warning( disable: 4244 ) // conversion from don't care to whatever, possible loss of data
#endif
#ifdef __MINGW32__
# define __STDC_FORMAT_MACROS
#endif
#include <assert.h>
#include <inttypes.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h> // llabs()
#include <string.h>
#include "TracyPrint.hpp"