Skip to content

Commit b18ffbd

Browse files
committed
Fixed missing namespace forwarding
1 parent fcb9cca commit b18ffbd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/control_filters/gravity_compensation.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ bool GravityCompensation<T>::configure()
106106
try
107107
{
108108
parameter_handler_ =
109-
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_);
109+
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_,
110+
this->param_prefix_);
110111
}
111112
catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
112113
RCLCPP_ERROR((*logger_), "GravityCompensation filter cannot be configured: %s", ex.what());

0 commit comments

Comments
 (0)