blob: 04e067c34085a3b52245a78453082c1e2abc8342 [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(float *ptr){
Map<CV_QUALIFIER Vector3f>(ptr).coeffRef(0) = 1.0f;
}
int main() {}