We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a7b1b2 commit 1d2fe4dCopy full SHA for 1d2fe4d
src/util/image_util.cc
@@ -52,7 +52,7 @@ namespace {
52
53
void eigen2cv(const Eigen::MatrixXd& mat, ugu::Image1d& img) {
54
Eigen::MatrixXd mat_ = mat;
55
- if constexpr (mat.IsRowMajor != 0) {
+ if constexpr (Eigen::MatrixXd::IsRowMajor != 0) {
56
mat_ = mat.transpose();
57
}
58
0 commit comments