mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-06 00:00:35 +08:00
clang-tidy modernize-use-equals-default
This commit is contained in:
committed by
Lorenz Meier
parent
9b5df10631
commit
4e32cb17df
@@ -58,8 +58,8 @@ public:
|
||||
class McPosControlTests : public UnitTest
|
||||
{
|
||||
public:
|
||||
McPosControlTests();
|
||||
virtual ~McPosControlTests();
|
||||
McPosControlTests() = default;
|
||||
virtual ~McPosControlTests() = default;
|
||||
|
||||
virtual bool run_tests();
|
||||
|
||||
@@ -67,14 +67,6 @@ private:
|
||||
bool cross_sphere_line_test();
|
||||
};
|
||||
|
||||
McPosControlTests::McPosControlTests()
|
||||
{
|
||||
}
|
||||
|
||||
McPosControlTests::~McPosControlTests()
|
||||
{
|
||||
}
|
||||
|
||||
bool McPosControlTests::cross_sphere_line_test()
|
||||
{
|
||||
MulticopterPositionControl control = MulticopterPositionControl();
|
||||
|
||||
Reference in New Issue
Block a user