mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-10-14 00:51:28 +08:00
Fix bug in aligned_free with windows CE
(transplanted from 25bcbfb10cb099a448cec0def453af6ba7810d72 )
This commit is contained in:
parent
fcc46f49ca
commit
394784c999
@ -227,7 +227,7 @@ inline void aligned_free(void *ptr)
|
|||||||
std::free(ptr);
|
std::free(ptr);
|
||||||
#elif EIGEN_HAS_MM_MALLOC
|
#elif EIGEN_HAS_MM_MALLOC
|
||||||
_mm_free(ptr);
|
_mm_free(ptr);
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER) && (!defined(_WIN32_WCE))
|
||||||
_aligned_free(ptr);
|
_aligned_free(ptr);
|
||||||
#else
|
#else
|
||||||
handmade_aligned_free(ptr);
|
handmade_aligned_free(ptr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user