Eigen compilation warning for 4x4 matrix inverse at InverseSize4.h
I've found a compile warning for MSVC VS2019 and originally posted it on stackoverflow, please have a look: https://stackoverflow.com/questions/66674636/eigen-compilation-warning-for-4x4-matrix-inverse-at-inversesize4-h
Is it possible to fix this in eigen or do I have to manually adapt the source on my side? Thx for help!
EDIT: minimal example
Eigen::Matrix4d m;
Eigen::Vector4d v;
Eigen::Vector4d r = m.inverse() * v;
Edited by André Prager