Skip to content

Commit

Permalink
fix: modify error in deprecated warning
Browse files Browse the repository at this point in the history
Signed-off-by: Ryohsuke Mitsudome <[email protected]>
  • Loading branch information
mitsudome-r committed Nov 26, 2024
1 parent 1920051 commit efe7553
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ autoware_map_msgs::msg::MapProjectorInfo load_info_from_yaml(const std::string &
} else if (msg.projector_type == "local") {
RCLCPP_WARN_STREAM(

Check failure on line 50 in map/autoware_map_projection_loader/src/map_projection_loader.cpp

View workflow job for this annotation

GitHub Actions / cppcheck-differential

There is an unknown macro here somewhere. Configuration is required. If RCLCPP_WARN_STREAM is a macro then please configure it. [unknownMacro]
rclcpp::get_logger("MapProjectionLoader"),
"Load " << lanelet2_map_filename << std::endl
<< "DEPRECATED WARNING: projector type "local" is deprecated."
"Please use "Local" instead. For more info, visit "
"Load " << filename << std::endl
<< "DEPRECATED WARNING: projector type \"local\" is deprecated."
"Please use \"Local\" instead. For more info, visit "
"https://github.com/autowarefoundation/autoware.universe/blob/main/map/"
"map_projection_loader/"
"README.md"
Expand Down

0 comments on commit efe7553

Please sign in to comment.