Sign in
eigen
/
mirror
/
51311ec6514fcde396bdb7c1c323606862348dc6
/
.
/
failtest
/
map_nonconst_ctor_on_const_ptr_0.cpp
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
()
{}