Skip to content

Commit

Permalink
Update filter_base.cpp (#708)
Browse files Browse the repository at this point in the history
fixing can't subtract times [#707](#707)
  • Loading branch information
mnissov authored Nov 23, 2021
1 parent ad7a984 commit 5d2e882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filter_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace robot_localization
FilterBase::FilterBase()
: initialized_(false), use_control_(false),
use_dynamic_process_noise_covariance_(false), control_timeout_(0),
last_measurement_time_(0, 0, RCL_ROS_TIME), latest_control_time_(0),
last_measurement_time_(0, 0, RCL_ROS_TIME), latest_control_time_(0, 0, RCL_ROS_TIME),
sensor_timeout_(0), debug_stream_(nullptr),
acceleration_gains_(TWIST_SIZE, 0.0),
acceleration_limits_(TWIST_SIZE, 0.0),
Expand Down

0 comments on commit 5d2e882

Please sign in to comment.