Skip to content

Commit 7a02691

Browse files
pre-commit-ci[bot]Motsu-san
authored andcommitted
style(pre-commit): autofix
1 parent 7507529 commit 7a02691

File tree

15 files changed

+45
-45
lines changed

15 files changed

+45
-45
lines changed

localization/autoware_ekf_localizer/src/internal/aged_object_queue.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__AGED_OBJECT_QUEUE_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__AGED_OBJECT_QUEUE_HPP_
15+
#ifndef INTERNAL__AGED_OBJECT_QUEUE_HPP_
16+
#define INTERNAL__AGED_OBJECT_QUEUE_HPP_
1717

1818
#include <cstddef>
1919
#include <queue>
@@ -86,4 +86,4 @@ class AgedObjectQueue
8686

8787
} // namespace autoware::ekf_localizer
8888

89-
#endif // AUTOWARE__EKF_LOCALIZER__AGED_OBJECT_QUEUE_HPP_
89+
#endif // INTERNAL__AGED_OBJECT_QUEUE_HPP_

localization/autoware_ekf_localizer/src/internal/covariance.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__COVARIANCE_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__COVARIANCE_HPP_
15+
#ifndef INTERNAL__COVARIANCE_HPP_
16+
#define INTERNAL__COVARIANCE_HPP_
1717

1818
#include "matrix_types.hpp"
1919

@@ -25,4 +25,4 @@ std::array<double, 36> ekf_covariance_to_twist_message_covariance(const Matrix6d
2525

2626
} // namespace autoware::ekf_localizer
2727

28-
#endif // AUTOWARE__EKF_LOCALIZER__COVARIANCE_HPP_
28+
#endif // INTERNAL__COVARIANCE_HPP_

localization/autoware_ekf_localizer/src/internal/diagnostics.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__DIAGNOSTICS_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__DIAGNOSTICS_HPP_
15+
#ifndef INTERNAL__DIAGNOSTICS_HPP_
16+
#define INTERNAL__DIAGNOSTICS_HPP_
1717

1818
#include <diagnostic_msgs/msg/diagnostic_status.hpp>
1919

@@ -46,4 +46,4 @@ diagnostic_msgs::msg::DiagnosticStatus merge_diagnostic_status(
4646

4747
} // namespace autoware::ekf_localizer
4848

49-
#endif // AUTOWARE__EKF_LOCALIZER__DIAGNOSTICS_HPP_
49+
#endif // INTERNAL__DIAGNOSTICS_HPP_

localization/autoware_ekf_localizer/src/internal/ekf_localizer.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__EKF_LOCALIZER_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__EKF_LOCALIZER_HPP_
15+
#ifndef INTERNAL__EKF_LOCALIZER_HPP_
16+
#define INTERNAL__EKF_LOCALIZER_HPP_
1717

1818
#include "aged_object_queue.hpp"
1919
#include "ekf_module.hpp"
@@ -194,4 +194,4 @@ class EKFLocalizer : public rclcpp::Node
194194

195195
} // namespace autoware::ekf_localizer
196196

197-
#endif // AUTOWARE__EKF_LOCALIZER__EKF_LOCALIZER_HPP_
197+
#endif // INTERNAL__EKF_LOCALIZER_HPP_

localization/autoware_ekf_localizer/src/internal/ekf_module.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__EKF_MODULE_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__EKF_MODULE_HPP_
15+
#ifndef INTERNAL__EKF_MODULE_HPP_
16+
#define INTERNAL__EKF_MODULE_HPP_
1717

1818
#include "hyper_parameters.hpp"
1919
#include "state_index.hpp"
@@ -152,4 +152,4 @@ class EKFModule
152152

153153
} // namespace autoware::ekf_localizer
154154

155-
#endif // AUTOWARE__EKF_LOCALIZER__EKF_MODULE_HPP_
155+
#endif // INTERNAL__EKF_MODULE_HPP_

localization/autoware_ekf_localizer/src/internal/hyper_parameters.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__HYPER_PARAMETERS_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__HYPER_PARAMETERS_HPP_
15+
#ifndef INTERNAL__HYPER_PARAMETERS_HPP_
16+
#define INTERNAL__HYPER_PARAMETERS_HPP_
1717

1818
#include <rclcpp/rclcpp.hpp>
1919

@@ -109,4 +109,4 @@ class HyperParameters
109109

110110
} // namespace autoware::ekf_localizer
111111

112-
#endif // AUTOWARE__EKF_LOCALIZER__HYPER_PARAMETERS_HPP_
112+
#endif // INTERNAL__HYPER_PARAMETERS_HPP_

localization/autoware_ekf_localizer/src/internal/mahalanobis.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__MAHALANOBIS_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__MAHALANOBIS_HPP_
15+
#ifndef INTERNAL__MAHALANOBIS_HPP_
16+
#define INTERNAL__MAHALANOBIS_HPP_
1717

1818
#include <Eigen/Core>
1919
#include <Eigen/Dense>
@@ -28,4 +28,4 @@ double mahalanobis(const Eigen::VectorXd & x, const Eigen::VectorXd & y, const E
2828

2929
} // namespace autoware::ekf_localizer
3030

31-
#endif // AUTOWARE__EKF_LOCALIZER__MAHALANOBIS_HPP_
31+
#endif // INTERNAL__MAHALANOBIS_HPP_

localization/autoware_ekf_localizer/src/internal/matrix_types.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__MATRIX_TYPES_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__MATRIX_TYPES_HPP_
15+
#ifndef INTERNAL__MATRIX_TYPES_HPP_
16+
#define INTERNAL__MATRIX_TYPES_HPP_
1717

1818
#include <Eigen/Core>
1919

@@ -25,4 +25,4 @@ using Matrix6d = Eigen::Matrix<double, 6, 6>;
2525

2626
} // namespace autoware::ekf_localizer
2727

28-
#endif // AUTOWARE__EKF_LOCALIZER__MATRIX_TYPES_HPP_
28+
#endif // INTERNAL__MATRIX_TYPES_HPP_

localization/autoware_ekf_localizer/src/internal/measurement.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__MEASUREMENT_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__MEASUREMENT_HPP_
15+
#ifndef INTERNAL__MEASUREMENT_HPP_
16+
#define INTERNAL__MEASUREMENT_HPP_
1717

1818
#include <Eigen/Core>
1919

@@ -29,4 +29,4 @@ Eigen::Matrix2d twist_measurement_covariance(
2929

3030
} // namespace autoware::ekf_localizer
3131

32-
#endif // AUTOWARE__EKF_LOCALIZER__MEASUREMENT_HPP_
32+
#endif // INTERNAL__MEASUREMENT_HPP_

localization/autoware_ekf_localizer/src/internal/numeric.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef AUTOWARE__EKF_LOCALIZER__NUMERIC_HPP_
16-
#define AUTOWARE__EKF_LOCALIZER__NUMERIC_HPP_
15+
#ifndef INTERNAL__NUMERIC_HPP_
16+
#define INTERNAL__NUMERIC_HPP_
1717

1818
#include <Eigen/Core>
1919

@@ -34,4 +34,4 @@ inline bool has_nan(const Eigen::MatrixXd & v)
3434

3535
} // namespace autoware::ekf_localizer
3636

37-
#endif // AUTOWARE__EKF_LOCALIZER__NUMERIC_HPP_
37+
#endif // INTERNAL__NUMERIC_HPP_

0 commit comments

Comments
 (0)