Files
eigen/failtest/const_qualified_diagonal_method_retval.cpp

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

17 lines
266 B
C++
Raw Permalink Normal View History

2011-02-06 01:44:51 -05:00
#include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
2024-01-19 15:30:18 -08:00
void foo(CV_QUALIFIER Matrix3d &m) {
Diagonal<Matrix3d> b(m.diagonal());
EIGEN_UNUSED_VARIABLE(b);
}
2011-02-06 01:44:51 -05:00
int main() {}