diff options
Diffstat (limited to 'NvCloth/include')
| -rw-r--r-- | NvCloth/include/NvCloth/ps/PsAllocator.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/NvCloth/include/NvCloth/ps/PsAllocator.h b/NvCloth/include/NvCloth/ps/PsAllocator.h index 7d61bee..81f46fa 100644 --- a/NvCloth/include/NvCloth/ps/PsAllocator.h +++ b/NvCloth/include/NvCloth/ps/PsAllocator.h @@ -37,7 +37,11 @@ #if(PX_WINDOWS_FAMILY || PX_XBOXONE) #include <exception> -#include <typeinfo.h> + #if PX_VC >= 16 + #include <typeinfo> + #else + #include <typeinfo.h> + #endif #endif #if(PX_APPLE_FAMILY) #include <typeinfo> |