Skip to content

Commit

Permalink
Fix deprecation warnings when compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
destogl committed Dec 3, 2022
1 parent 5a367e2 commit 786b580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tricycle_controller/include/tricycle_controller/odometry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <cmath>

#include "rclcpp/time.hpp"
#include "rcppmath/rolling_mean_accumulator.hpp"
#include "rcpputils/rolling_mean_accumulator.hpp"

namespace tricycle_controller
{
Expand All @@ -45,7 +45,7 @@ class Odometry
void setVelocityRollingWindowSize(size_t velocity_rolling_window_size);

private:
using RollingMeanAccumulator = rcppmath::RollingMeanAccumulator<double>;
using RollingMeanAccumulator = rcpputils::RollingMeanAccumulator<double>;

void integrateRungeKutta2(double linear, double angular);
void integrateExact(double linear, double angular);
Expand Down

0 comments on commit 786b580

Please sign in to comment.