NOLINTNEXTLINE(readability-const-return-type)
| 242 | static Eigen::MatrixXd create() { return Eigen::MatrixXd::Ones(10, 10); } |
| 243 | // NOLINTNEXTLINE(readability-const-return-type) |
| 244 | static const Eigen::MatrixXd createConst() { return Eigen::MatrixXd::Ones(10, 10); } |
| 245 | Eigen::MatrixXd &get() { return mat; } |
| 246 | Eigen::MatrixXd *getPtr() { return &mat; } |
| 247 | const Eigen::MatrixXd &view() { return mat; } |
nothing calls this directly
no outgoing calls
no test coverage detected