We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5092844 commit 660f905Copy full SHA for 660f905
1 file changed
hydra_ros/src/places/external_traversability_estimator.cpp
@@ -58,7 +58,8 @@ void declare_config(ExternalTraversabilityEstimator::Config& config) {
58
}
59
60
ExternalTraversabilityEstimator::ExternalTraversabilityEstimator(const Config& config)
61
- : config(config::checkValid(config)) {
+ : TraversabilityEstimator(TraversabilityEstimator::Config{}),
62
+ config(config::checkValid(config)) {
63
auto nh = ianvs::NodeHandle::this_node();
64
sub_ = nh.create_subscription<nav_msgs::msg::OccupancyGrid>(
65
config.input_topic,
0 commit comments