Sign in
eigen
/
mirror
/
570753759291b60b031d9afd285b3e1efe4f63bc
/
.
/
failtest
/
map_nonconst_ctor_on_const_ptr_0.cpp
blob: d75686f5809cd821cecab9d8e0bad9070f7427dd [
file
]
#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
()
{}