change initialization order to remove a warning

This commit is contained in:
Sébastien Loriot 2013-02-11 10:40:19 +01:00
parent 0fd82df3a9
commit 4548ff235b
1 changed files with 1 additions and 1 deletions

View File

@ -110,8 +110,8 @@ public:
return solver().info() == Eigen::Success;
}
protected:
boost::shared_ptr<EigenSolverT> m_solver_sptr;
const typename Matrix::EigenType* m_mat;
boost::shared_ptr<EigenSolverT> m_solver_sptr;
};