Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and esteve committed Jul 16, 2024
1 parent eca6c8e commit 75cd59d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef AUTOWARE_KALMAN_FILTER__KALMAN_FILTER_HPP_
#define AUTOWARE_KALMAN_FILTER__KALMAN_FILTER_HPP_
#ifndef AUTOWARE__KALMAN_FILTER__KALMAN_FILTER_HPP_
#define AUTOWARE__KALMAN_FILTER__KALMAN_FILTER_HPP_

#include <Eigen/Core>
#include <Eigen/LU>
Expand Down Expand Up @@ -211,4 +211,4 @@ class KalmanFilter
Eigen::MatrixXd P_; //!< @brief covariance of estimated state
};
} // namespace autoware::kalman_filter
#endif // AUTOWARE_KALMAN_FILTER__KALMAN_FILTER_HPP_
#endif // AUTOWARE__KALMAN_FILTER__KALMAN_FILTER_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef AUTOWARE_KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_
#define AUTOWARE_KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_
#ifndef AUTOWARE__KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_
#define AUTOWARE__KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_

#include "autoware/kalman_filter/kalman_filter.hpp"

Expand Down Expand Up @@ -86,4 +86,4 @@ class TimeDelayKalmanFilter : public KalmanFilter
int dim_x_ex_; //!< @brief dimension of extended state with dime delay
};
} // namespace autoware::kalman_filter
#endif // AUTOWARE_KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_
#endif // AUTOWARE__KALMAN_FILTER__TIME_DELAY_KALMAN_FILTER_HPP_

0 comments on commit 75cd59d

Please sign in to comment.