Skip to content

Commit

Permalink
fix namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Autumn60 <[email protected]>
  • Loading branch information
Autumn60 committed Jun 20, 2024
1 parent 3f4b7d6 commit ff19c06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ void ManualController::onInitialize()
"/control/current_gate_mode", 10, std::bind(&ManualController::onGateMode, this, _1));

sub_velocity_ =
autoware_universe_utils::InterProcessPollingSubscriber<VelocityReport>::create_subscription(
autoware::universe_utils::InterProcessPollingSubscriber<VelocityReport>::create_subscription(
raw_node_.get(), "/vehicle/status/velocity_status", 1);

sub_accel_ = autoware_universe_utils::InterProcessPollingSubscriber<AccelWithCovarianceStamped>::
sub_accel_ = autoware::universe_utils::InterProcessPollingSubscriber<AccelWithCovarianceStamped>::
create_subscription(raw_node_.get(), "/localization/acceleration", 1);

sub_engage_ = raw_node_->create_subscription<Engage>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public Q_SLOTS: // NOLINT for Qt
void onGear(const GearReport::ConstSharedPtr msg);
rclcpp::Node::SharedPtr raw_node_;
rclcpp::Subscription<GateMode>::SharedPtr sub_gate_mode_;
autoware_universe_utils::InterProcessPollingSubscriber<VelocityReport>::SharedPtr sub_velocity_;
autoware_universe_utils::InterProcessPollingSubscriber<AccelWithCovarianceStamped>::SharedPtr
autoware::universe_utils::InterProcessPollingSubscriber<VelocityReport>::SharedPtr sub_velocity_;
autoware::universe_utils::InterProcessPollingSubscriber<AccelWithCovarianceStamped>::SharedPtr
sub_accel_;
rclcpp::Subscription<Engage>::SharedPtr sub_engage_;
rclcpp::Publisher<tier4_control_msgs::msg::GateMode>::SharedPtr pub_gate_mode_;
Expand Down

0 comments on commit ff19c06

Please sign in to comment.