On windows CE, assert.h defines NDEBUG if DEBUG is not defined

This commit is contained in:
Gael Guennebaud 2013-07-01 13:47:25 +02:00
parent 22820e950e
commit 65cc51288a

View File

@ -42,6 +42,11 @@
#undef NDEBUG
#endif
// On windows CE, NDEBUG is automatically defined <assert.h> if NDEBUG is not defined.
#ifndef DEBUG
#define DEBUG
#endif
// bounds integer values for AltiVec
#ifdef __ALTIVEC__
#define EIGEN_MAKING_DOCS