mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-31 19:00:35 +08:00
Made sure that the use const expressions are not enabled when compiling with nvcc even when gcc 4.9 is used as the host compiler.
This commit is contained in:
parent
0dda72316f
commit
d259b719d1
@ -410,7 +410,9 @@
|
||||
#endif
|
||||
|
||||
// Does the compiler support const expressions?
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201402L) || \
|
||||
#ifdef __CUDACC__
|
||||
// Const expressions are not supported regardless of what host compiler is used
|
||||
#elif (defined(__cplusplus) && __cplusplus >= 201402L) || \
|
||||
EIGEN_GNUC_AT_LEAST(4,9)
|
||||
#define EIGEN_HAS_CONSTEXPR 1
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user