mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
clang-tidy: modernize-use-override (NFC)
Add NOLINT to CommandTestBase due to gmock not adding "override" keyword, which causes warnings on clang.
This commit is contained in:
@@ -14,7 +14,7 @@ namespace frc {
|
||||
class Potentiometer : public PIDSource {
|
||||
public:
|
||||
Potentiometer() = default;
|
||||
virtual ~Potentiometer() = default;
|
||||
~Potentiometer() override = default;
|
||||
|
||||
Potentiometer(Potentiometer&&) = default;
|
||||
Potentiometer& operator=(Potentiometer&&) = default;
|
||||
|
||||
Reference in New Issue
Block a user