mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-29 01:50:34 +08:00
clang-tidy modernize-use-equals-default
This commit is contained in:
committed by
Lorenz Meier
parent
9b5df10631
commit
4e32cb17df
@@ -12,9 +12,7 @@ CameraInterface::CameraInterface():
|
||||
{
|
||||
}
|
||||
|
||||
CameraInterface::~CameraInterface()
|
||||
{
|
||||
}
|
||||
CameraInterface::~CameraInterface() = default;
|
||||
|
||||
void CameraInterface::get_pins()
|
||||
{
|
||||
|
||||
@@ -48,9 +48,7 @@ LidarLite::LidarLite() :
|
||||
{
|
||||
}
|
||||
|
||||
LidarLite::~LidarLite()
|
||||
{
|
||||
}
|
||||
LidarLite::~LidarLite() = default;
|
||||
|
||||
void LidarLite::set_minimum_distance(const float min)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user