Sign in
eigen
/
mirror
/
0e85a677e36956f13a3d85047d088d773b39b69b
/
.
/
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
()
{}