Re: [eigen] Array, Matrix, PlainObjectBase and DenseStorage are now move enabled |
[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]
Basically, it says you should check for c++11 support via:
#if __cplusplus >= 201103L
....
#endif
As opposed to:
#ifdef __GXX_EXPERIMENTAL_CXX0X__
....
#endif
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |