From ee94bc63e4ce47a502891480a2796b53d54fcdfc Mon Sep 17 00:00:00 2001 From: "Kang, Hsin-Yi" Date: Thu, 22 Aug 2024 21:46:50 +0800 Subject: [PATCH] Minor naming fixes for ParameterValue to_string() function (#2609) More appropriate function argument naming. Refer to: https://github.com/ros2/rclcpp/blob/rolling/rclcpp/src/rclcpp/parameter_value.cpp#L83 Signed-off-by: Kang, Hsin-Yi --- rclcpp/include/rclcpp/parameter_value.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclcpp/include/rclcpp/parameter_value.hpp b/rclcpp/include/rclcpp/parameter_value.hpp index fac896ea46..549429aa85 100644 --- a/rclcpp/include/rclcpp/parameter_value.hpp +++ b/rclcpp/include/rclcpp/parameter_value.hpp @@ -359,7 +359,7 @@ class ParameterValue /// Return the value of a parameter as a string RCLCPP_PUBLIC std::string -to_string(const ParameterValue & type); +to_string(const ParameterValue & value); } // namespace rclcpp