Skip to content

Commit 273b8ac

Browse files
authored
chore(autoware_localization_util): minor refactoring for header wrap (#874)
* chore: use `<>` for public header wrap Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp> * fix: apply `pre-commit` Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp> --------- Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp>
1 parent f20e40b commit 273b8ac

File tree

8 files changed

+11
-16
lines changed

8 files changed

+11
-16
lines changed

localization/autoware_localization_util/include/autoware/localization_util/smart_pose_buffer.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
#ifndef AUTOWARE__LOCALIZATION_UTIL__SMART_POSE_BUFFER_HPP_
1616
#define AUTOWARE__LOCALIZATION_UTIL__SMART_POSE_BUFFER_HPP_
1717

18-
#include "autoware/localization_util/util_func.hpp"
19-
18+
#include <autoware/localization_util/util_func.hpp>
2019
#include <rclcpp/rclcpp.hpp>
2120

2221
#include <geometry_msgs/msg/pose_with_covariance_stamped.hpp>

localization/autoware_localization_util/src/covariance_ellipse.cpp

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

15-
#include "autoware/localization_util/covariance_ellipse.hpp"
16-
15+
#include <autoware/localization_util/covariance_ellipse.hpp>
1716
#include <tf2/utils.hpp>
1817

1918
#include <tf2_geometry_msgs/tf2_geometry_msgs.hpp>

localization/autoware_localization_util/src/smart_pose_buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware/localization_util/smart_pose_buffer.hpp"
15+
#include <autoware/localization_util/smart_pose_buffer.hpp>
1616

1717
namespace autoware::localization_util
1818
{

localization/autoware_localization_util/src/tree_structured_parzen_estimator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware/localization_util/tree_structured_parzen_estimator.hpp"
15+
#include <autoware/localization_util/tree_structured_parzen_estimator.hpp>
1616

1717
#include <algorithm>
1818
#include <cassert>

localization/autoware_localization_util/src/util_func.cpp

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

15-
#include "autoware/localization_util/util_func.hpp"
16-
17-
#include "autoware/localization_util/matrix_type.hpp"
15+
#include <autoware/localization_util/matrix_type.hpp>
16+
#include <autoware/localization_util/util_func.hpp>
1817

1918
#include <algorithm>
2019
#include <string>

localization/autoware_localization_util/test/test_smart_pose_buffer.cpp

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

15-
#include "autoware/localization_util/smart_pose_buffer.hpp"
16-
#include "autoware/localization_util/util_func.hpp"
17-
1815
#include <ament_index_cpp/get_package_share_directory.hpp>
16+
#include <autoware/localization_util/smart_pose_buffer.hpp>
17+
#include <autoware/localization_util/util_func.hpp>
1918
#include <rclcpp/rclcpp.hpp>
2019

2120
#include <gtest/gtest.h>

localization/autoware_localization_util/test/test_tpe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware/localization_util/tree_structured_parzen_estimator.hpp"
15+
#include <autoware/localization_util/tree_structured_parzen_estimator.hpp>
1616

1717
#include <gtest/gtest.h>
1818

localization/autoware_localization_util/test/test_util_func.cpp

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

15-
#include "autoware/localization_util/matrix_type.hpp"
16-
#include "autoware/localization_util/util_func.hpp"
17-
15+
#include <autoware/localization_util/matrix_type.hpp>
16+
#include <autoware/localization_util/util_func.hpp>
1817
#include <rclcpp/rclcpp.hpp>
1918
#include <tf2/LinearMath/Quaternion.hpp>
2019

0 commit comments

Comments
 (0)