Fixed a typo in Macro.h

This commit is contained in:
Benoit Steiner
2015-07-16 14:17:50 -07:00
parent a5ec25f11c
commit 979b73cebf

View File

@@ -410,7 +410,7 @@
#endif
// Does the compiler support const expressions?
#if (defined(__plusplus) && __cplusplus >= 201402L) || \
#if (defined(__cplusplus) && __cplusplus >= 201402L) || \
EIGEN_GNUC_AT_LEAST(4,9)
#define EIGEN_HAS_CONSTEXPR 1
#endif