Skip to content

Commit bf55986

Browse files
fix(radar_fusion_to_detected_object): move headers to a separate directory (#5920)
* fix(radar_fusion_to_detected_object): move headers to a separate directory Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp> * style(pre-commit): autofix * fix: fix header name Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp> * style(pre-commit): autofix --------- Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent a04f825 commit bf55986

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

perception/radar_fusion_to_detected_object/include/radar_fusion_to_detected_object.hpp perception/radar_fusion_to_detected_object/include/radar_fusion_to_detected_object/radar_fusion_to_detected_object.hpp

+3-3
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 RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
16-
#define RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
15+
#ifndef RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
16+
#define RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
1717

1818
#include "rclcpp/logger.hpp"
1919
#include "tier4_autoware_utils/geometry/boost_geometry.hpp"
@@ -115,4 +115,4 @@ class RadarFusionToDetectedObject
115115
};
116116
} // namespace radar_fusion_to_detected_object
117117

118-
#endif // RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
118+
#endif // RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_HPP_
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
#ifndef RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT__RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT_NODE_HPP_
17-
#define RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT__RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT_NODE_HPP_
16+
#ifndef RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_NODE_HPP_
17+
#define RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_NODE_HPP_
1818

1919
#include "message_filters/subscriber.h"
2020
#include "message_filters/sync_policies/approximate_time.h"
2121
#include "message_filters/synchronizer.h"
22-
#include "radar_fusion_to_detected_object.hpp"
22+
#include "radar_fusion_to_detected_object/radar_fusion_to_detected_object.hpp"
2323
#include "rclcpp/rclcpp.hpp"
2424

2525
#include "autoware_auto_perception_msgs/msg/detected_objects.hpp"
@@ -89,4 +89,4 @@ class RadarObjectFusionToDetectedObjectNode : public rclcpp::Node
8989

9090
} // namespace radar_fusion_to_detected_object
9191

92-
#endif // RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT__RADAR_OBJECT_FUSION_TO_DETECTED_OBJECT_NODE_HPP_
92+
#endif // RADAR_FUSION_TO_DETECTED_OBJECT__RADAR_FUSION_TO_DETECTED_OBJECT_NODE_HPP_

perception/radar_fusion_to_detected_object/src/radar_fusion_to_detected_object.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
#include "radar_fusion_to_detected_object.hpp"
16+
#include "radar_fusion_to_detected_object/radar_fusion_to_detected_object.hpp"
1717

1818
#include <tier4_autoware_utils/geometry/geometry.hpp>
1919
#include <tier4_autoware_utils/math/normalization.hpp>

perception/radar_fusion_to_detected_object/src/radar_object_fusion_to_detected_object_node/radar_object_fusion_to_detected_object_node.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515

16-
#include "radar_object_fusion_to_detected_object/radar_object_fusion_to_detected_object_node.hpp"
17-
16+
#include "radar_fusion_to_detected_object/radar_fusion_to_detected_object_node.hpp"
1817
#include "rclcpp/rclcpp.hpp"
1918

2019
#include <memory>

0 commit comments

Comments
 (0)