Skip to content

Commit

Permalink
Fixed missing namespace forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
guihomework committed Mar 13, 2023
1 parent fcb9cca commit ab3838d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/control_filters/gravity_compensation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ bool GravityCompensation<T>::configure()
try
{
parameter_handler_ =
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_);
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_, this->param_prefix_);
}
catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
RCLCPP_ERROR((*logger_), "GravityCompensation filter cannot be configured: %s", ex.what());
Expand Down

0 comments on commit ab3838d

Please sign in to comment.