Workarounf nvcc not being able to find RowMajor when declaring a Matrix<...> inside another namespace.

This commit is contained in:
Gael Guennebaud
2013-06-25 10:08:50 +02:00
parent 64054ee396
commit 231d4a6fda
2 changed files with 10 additions and 10 deletions

View File

@@ -87,9 +87,9 @@
#endif
#ifdef EIGEN_DEFAULT_TO_ROW_MAJOR
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION RowMajor
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Eigen::RowMajor
#else
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION ColMajor
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Eigen::ColMajor
#endif
#ifndef EIGEN_DEFAULT_DENSE_INDEX_TYPE