mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
clang-tidy: modernize-use-equals-default
This commit is contained in:
@@ -220,7 +220,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
|
||||
RobotBase::RobotBase(RobotBase&&) noexcept
|
||||
: m_ds(DriverStation::GetInstance()) {}
|
||||
|
||||
RobotBase::~RobotBase() {}
|
||||
RobotBase::~RobotBase() = default;
|
||||
|
||||
RobotBase& RobotBase::operator=(RobotBase&&) noexcept {
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user