mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-26 11:00:35 +08:00
clang-tidy modernize-use-equals-default
This commit is contained in:
committed by
Lorenz Meier
parent
9b5df10631
commit
4e32cb17df
@@ -46,8 +46,8 @@
|
||||
class StateMachineHelperTest : public UnitTest
|
||||
{
|
||||
public:
|
||||
StateMachineHelperTest();
|
||||
virtual ~StateMachineHelperTest();
|
||||
StateMachineHelperTest() = default;
|
||||
virtual ~StateMachineHelperTest() = default;
|
||||
|
||||
virtual bool run_tests();
|
||||
|
||||
@@ -57,12 +57,6 @@ private:
|
||||
bool isSafeTest();
|
||||
};
|
||||
|
||||
StateMachineHelperTest::StateMachineHelperTest() {
|
||||
}
|
||||
|
||||
StateMachineHelperTest::~StateMachineHelperTest() {
|
||||
}
|
||||
|
||||
bool StateMachineHelperTest::armingStateTransitionTest()
|
||||
{
|
||||
// These are the critical values from vehicle_status_s and actuator_armed_s which must be primed
|
||||
|
||||
Reference in New Issue
Block a user