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

move implementation #includes from .hpp to .cpp

This commit is contained in:
Benoit Jacob 2020-11-21 00:25:39 -05:00
parent 994d577db0
commit a0d3a13987
2 changed files with 8 additions and 8 deletions

View File

@ -45,6 +45,14 @@ extern "C"
}; };
#endif #endif
#ifdef __ANDROID__
# include <sys/mman.h>
# include <stdio.h>
# include <stdint.h>
# include <algorithm>
# include <vector>
#endif
namespace tracy namespace tracy
{ {

View File

@ -10,14 +10,6 @@
# include <execinfo.h> # include <execinfo.h>
#endif #endif
#ifdef __ANDROID__
# include <sys/mman.h>
# include <stdio.h>
# include <stdint.h>
# include <algorithm>
# include <vector>
#endif
#ifdef TRACY_HAS_CALLSTACK #ifdef TRACY_HAS_CALLSTACK
#include <assert.h> #include <assert.h>