Sign in
nest-open-source
/
nest-cam
/
v366
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
failtest
/
block_on_const_type_actually_const_1.cpp
blob: 4c3e93ffe0134939035a6d87ed5ac403c182d8ee [
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
(){
MatrixXf
m
;
Block
<
CV_QUALIFIER
MatrixXf
,
3
,
3
>(
m
,
0
,
0
).
coeffRef
(
0
,
0
)
=
1.0f
;
}
int
main
()
{}