Browse Source

remove unnecessary ;

master
Thomas Gubler 9 years ago
parent
commit
99ac532746
  1. 2
      matrix/Dcm.hpp
  2. 2
      matrix/Euler.hpp
  3. 2
      matrix/Matrix.hpp
  4. 2
      matrix/Quaternion.hpp
  5. 2
      matrix/Scalar.hpp
  6. 2
      matrix/SquareMatrix.hpp
  7. 2
      matrix/Vector.hpp
  8. 2
      matrix/Vector2.hpp
  9. 2
      matrix/Vector3.hpp
  10. 2
      matrix/filter.hpp
  11. 2
      matrix/integration.hpp

2
matrix/Dcm.hpp

@ -87,6 +87,6 @@ public: @@ -87,6 +87,6 @@ public:
typedef Dcm<float> Dcmf;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Euler.hpp

@ -97,6 +97,6 @@ public: @@ -97,6 +97,6 @@ public:
typedef Euler<float> Eulerf;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Matrix.hpp

@ -436,6 +436,6 @@ std::ostream& operator<<(std::ostream& os, @@ -436,6 +436,6 @@ std::ostream& operator<<(std::ostream& os,
typedef Matrix<float, 3, 3> Matrix3f;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Quaternion.hpp

@ -124,6 +124,6 @@ public: @@ -124,6 +124,6 @@ public:
typedef Quaternion<float> Quatf;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Scalar.hpp

@ -50,6 +50,6 @@ private: @@ -50,6 +50,6 @@ private:
typedef Scalar<float> Scalarf;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/SquareMatrix.hpp

@ -217,6 +217,6 @@ SquareMatrix <Type, M> inv(const SquareMatrix<Type, M> & A) @@ -217,6 +217,6 @@ SquareMatrix <Type, M> inv(const SquareMatrix<Type, M> & A)
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Vector.hpp

@ -69,6 +69,6 @@ public: @@ -69,6 +69,6 @@ public:
};
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Vector2.hpp

@ -60,6 +60,6 @@ public: @@ -60,6 +60,6 @@ public:
typedef Vector2<float> Vector2f;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/Vector3.hpp

@ -65,6 +65,6 @@ public: @@ -65,6 +65,6 @@ public:
typedef Vector3<float> Vector3f;
}; // namespace matrix
} // namespace matrix
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */

2
matrix/filter.hpp

@ -23,4 +23,4 @@ int kalman_correct( @@ -23,4 +23,4 @@ int kalman_correct(
return 0;
}
}; // namespace matrix
} // namespace matrix

2
matrix/integration.hpp

@ -24,4 +24,4 @@ int integrate_rk4( @@ -24,4 +24,4 @@ int integrate_rk4(
return 0;
}
}; // namespace matrix
} // namespace matrix

Loading…
Cancel
Save