Linux needs #include <time.h>?

/home/travis/build/bulletphysics/bullet3/src/LinearMath/btQuickprof.cpp:251:19: error: ‘CLOCK_REALTIME’ was not declared in this scope
/home/travis/build/bulletphysics/bullet3/src/LinearMath/btQuickprof.cpp:251:37: error: ‘clock_gettime’ was not declared in this scope
This commit is contained in:
Erwin Coumans
2016-12-26 21:15:59 -08:00
parent 9c12e4edb0
commit 7aa7c4dfee

View File

@@ -56,6 +56,7 @@
#else //_WIN32
#include <sys/time.h>
#include <time.h>
#endif //_WIN32
#define mymin(a,b) (a > b ? a : b)