changed a lot of small clang-tidy warnings
This commit is contained in:
@ -13,15 +13,15 @@
|
||||
#define __ISR_include__
|
||||
|
||||
class ISR {
|
||||
|
||||
|
||||
private:
|
||||
ISR (const ISR ©); // Verhindere Kopieren
|
||||
ISR(const ISR& copy) = delete; // Verhindere Kopieren
|
||||
|
||||
public:
|
||||
ISR () {}
|
||||
|
||||
ISR() {}
|
||||
|
||||
// Unterbrechungsbehandlungsroutine
|
||||
virtual void trigger () = 0;
|
||||
virtual void trigger() = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user