Skip to content

Commit b98f199

Browse files
committed
Fixed missing namespace forwarding
1 parent 4154508 commit b98f199

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/control_filters/low_pass_filter.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ bool LowPassFilter<T>::configure()
8787
try
8888
{
8989
parameter_handler_ =
90-
std::make_shared<low_pass_filter::ParamListener>(this->params_interface_);
90+
std::make_shared<low_pass_filter::ParamListener>(this->params_interface_,
91+
this->param_prefix_);
9192
}
9293
catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
9394
RCLCPP_ERROR((*logger_), "LowPass filter cannot be configured: %s", ex.what());

0 commit comments

Comments
 (0)