Added alternative C++11 detection.

This commit is contained in:
Hauke Heibel 2013-08-10 19:11:03 +02:00
parent 097a105603
commit 8a89ba9275

View File

@ -104,8 +104,9 @@
// Do we support r-value references?
#if (__has_feature(cxx_rvalue_references) || \
(defined(__cplusplus) && __cplusplus >= 201103L) || \
defined(__GXX_EXPERIMENTAL_CXX0X__) || \
(defined(_MSC_VER) && _MSC_VER >= 1600))
(defined(_MSC_VER) && _MSC_VER >= 1600))
#define EIGEN_HAVE_RVALUE_REFERENCES
#endif