eigen/failtest/const_qualified_block_method_retval_0.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
276 B
C++
Raw Normal View History

2011-02-06 14:44:51 +08:00
#include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
2024-01-20 07:30:18 +08:00
void foo(CV_QUALIFIER Matrix3d &m) {
Block<Matrix3d, 3, 3> b(m.block<3, 3>(0, 0));
EIGEN_UNUSED_VARIABLE(b);
}
2011-02-06 14:44:51 +08:00
int main() {}