mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-14 23:07:35 +08:00
clang-tidy modernize-redundant-void-arg
This commit is contained in:
committed by
Lorenz Meier
parent
3c4c09593f
commit
a7cdef6c5c
+1
-1
@@ -242,7 +242,7 @@ bool Ekf::update()
|
||||
}
|
||||
}
|
||||
|
||||
bool Ekf::initialiseFilter(void)
|
||||
bool Ekf::initialiseFilter()
|
||||
{
|
||||
// Keep accumulating measurements until we have a minimum of 10 samples for the required sensors
|
||||
|
||||
|
||||
@@ -75,12 +75,12 @@ float ECL_L1_Pos_Controller::switch_distance(float wp_radius)
|
||||
return math::min(wp_radius, _L1_distance);
|
||||
}
|
||||
|
||||
bool ECL_L1_Pos_Controller::reached_loiter_target(void)
|
||||
bool ECL_L1_Pos_Controller::reached_loiter_target()
|
||||
{
|
||||
return _circle_mode;
|
||||
}
|
||||
|
||||
float ECL_L1_Pos_Controller::crosstrack_error(void)
|
||||
float ECL_L1_Pos_Controller::crosstrack_error()
|
||||
{
|
||||
return _crosstrack_error;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user