Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#include <iostream>
#include <Eigen/Dense>
int main() {
Eigen::Matrix4d m;
m.resize(4, 4); // no operation
std::cout << "The matrix m is of size " << m.rows() << "x" << m.cols() << std::endl;
}