mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +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:
@@ -29,7 +29,7 @@ class XboxController : public GenericHID {
|
||||
*/
|
||||
explicit XboxController(int port);
|
||||
|
||||
virtual ~XboxController() = default;
|
||||
~XboxController() override = default;
|
||||
|
||||
XboxController(XboxController&&) = default;
|
||||
XboxController& operator=(XboxController&&) = default;
|
||||
|
||||
Reference in New Issue
Block a user