Detect LG_SIZEOF_PTR depending on MSVC platform target

This commit is contained in:
rustyx
2016-01-30 13:37:26 +01:00
committed by Jason Evans
parent effaf7d40f
commit 46e0b2301c
2 changed files with 19 additions and 6 deletions

View File

@@ -33,5 +33,13 @@
*/
#undef JEMALLOC_USE_CXX_THROW
#ifdef _MSC_VER
# ifdef _WIN64
# define LG_SIZEOF_PTR_WIN 3
# else
# define LG_SIZEOF_PTR_WIN 2
# endif
#endif
/* sizeof(void *) == 2^LG_SIZEOF_PTR. */
#undef LG_SIZEOF_PTR