ADD cpplint args in action file

This commit is contained in:
fastium
2024-12-18 10:32:03 +01:00
committed by Fastium
parent f8077db299
commit c0335b38a4
23 changed files with 384 additions and 387 deletions

View File

@@ -33,7 +33,7 @@ namespace static_scheduling_with_event {
class GearDevice {
public:
explicit GearDevice(); // NOLINT(runtime/references)
GearDevice(); // NOLINT(runtime/references)
// make the class non copyable
GearDevice(GearDevice&) = delete;
@@ -51,4 +51,4 @@ class GearDevice {
volatile uint8_t _currentGear = bike_computer::kMinGear;
};
} // namespace static_scheduling
} // namespace static_scheduling_with_event