blob: d75686f5809cd821cecab9d8e0bad9070f7427dd [file] [log] [blame]
#include "../Eigen/Core"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define CV_QUALIFIER const
#else
#define CV_QUALIFIER
#endif
using namespace Eigen;
void foo(CV_QUALIFIER float *ptr){
Map<Matrix3f> m(ptr);
}
int main() {}