Skip to content

Commit

Permalink
Fix different time sources error (#679)
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
  • Loading branch information
christophebedard authored Jul 6, 2021
1 parent 3b2cb79 commit a1e48b4
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, 0u),
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, 0u), debug_stream_(nullptr),
acceleration_gains_(TWIST_SIZE, 0.0),
acceleration_limits_(TWIST_SIZE, 0.0),
Expand Down

0 comments on commit a1e48b4

Please # to comment.