Skip to content

Commit

Permalink
chore: fix missing imports and compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mojomex committed Aug 30, 2024
1 parent 95c3709 commit 31a26ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include <array>
#include <cstdint>
#include <iomanip>
#include <ostream>
#include <string>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <continental_srvs/srv/continental_ars548_set_vehicle_parameters.hpp>
#include <geometry_msgs/msg/accel_with_covariance_stamped.hpp>
#include <geometry_msgs/msg/twist_with_covariance_stamped.hpp>
#include <std_msgs/msg/float32.hpp>

#include <memory>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ContinentalARS548RosWrapper final : public rclcpp::Node
{
public:
explicit ContinentalARS548RosWrapper(const rclcpp::NodeOptions & options);
~ContinentalARS548RosWrapper() noexcept {};
~ContinentalARS548RosWrapper() noexcept override = default;

/// @brief Get current status of this driver
/// @return Current status
Expand Down

0 comments on commit 31a26ce

Please sign in to comment.