Fix compile error when defining DEBUG, include memset header

See Issue 678, thanks to Max for the report!
This commit is contained in:
erwin.coumans
2012-12-07 18:21:14 +00:00
parent d54423f9c0
commit 17ca9eb7e7

View File

@@ -25,6 +25,12 @@
#if defined BT_USE_SIMD_VECTOR3
#if DEBUG
#include <string.h>//for memset
#endif
#ifdef __APPLE__
#include <stdint.h>
typedef float float4 __attribute__ ((vector_size(16)));