Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 427bb25

Browse files
committedSep 25, 2024·
added namespace
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent c5204bc commit 427bb25

File tree

66 files changed

+140
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+140
-140
lines changed
 

‎common/autoware_object_recognition_utils/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(BUILD_TESTING)
1919
ament_add_ros_isolated_gtest(test_object_recognition_utils ${test_files})
2020

2121
target_link_libraries(test_object_recognition_utils
22-
object_recognition_utils
22+
${PROJECT_NAME}
2323
)
2424
endif()
2525

‎common/autoware_object_recognition_utils/test/src/test_conversion.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ autoware_perception_msgs::msg::ObjectClassification createObjectClassification(
4343
TEST(conversion, test_toDetectedObject)
4444
{
4545
using autoware_perception_msgs::msg::ObjectClassification;
46-
using object_recognition_utils::toDetectedObject;
46+
using autoware::object_recognition_utils::toDetectedObject;
4747

4848
autoware_perception_msgs::msg::TrackedObject tracked_obj;
4949
// existence probability
@@ -161,7 +161,7 @@ TEST(conversion, test_toDetectedObject)
161161
TEST(conversion, test_toTrackedObject)
162162
{
163163
using autoware_perception_msgs::msg::ObjectClassification;
164-
using object_recognition_utils::toTrackedObject;
164+
using autoware::object_recognition_utils::toTrackedObject;
165165

166166
autoware_perception_msgs::msg::DetectedObject detected_obj;
167167
// existence probability

0 commit comments

Comments
 (0)
Please sign in to comment.