diff --git a/test/indexed_view.cpp b/test/indexed_view.cpp index 3ac6706ef..231f44393 100644 --- a/test/indexed_view.cpp +++ b/test/indexed_view.cpp @@ -439,11 +439,13 @@ void check_indexed_view() VERIFY( MATCH( A(all,1)(1), "101")); } +#if EIGEN_HAS_CXX11 //Bug IndexView with a single static row should be RowMajor: { // A(1, seq(0,2,1)).cwiseAbs().colwise().replicate(2).eval(); STATIC_CHECK(( (internal::evaluator::Flags & RowMajorBit) == RowMajorBit )); } +#endif }