Skip to content

Commit

Permalink
Added missing header guards in sns_linear_solver (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPeterKelly authored and IanTheEngineer committed Jun 19, 2018
1 parent 2af3ccf commit e98c632
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sns_ik_lib/utilities/sns_linear_solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
* --> direct linear solver: prefered solver when available. Requries Eigen 3.3.4
*/

#ifndef SNS_IK_LIB__SNS_LINEAR_SOLVER_H_
#define SNS_IK_LIB__SNS_LINEAR_SOLVER_H_

#include <Eigen/Dense>

namespace sns_ik {
Expand Down Expand Up @@ -116,3 +119,5 @@ class SnsLinearSolver {
#endif // EIGEN_VERSION_AT_LEAST(3,3,4) //- - - - - - - - - - - - - - - - - - - - - - - - - - //

} // namespace sns_ik

#endif // SNS_IK_LIB__SNS_LINEAR_SOLVER_H_

0 comments on commit e98c632

Please sign in to comment.