Skip to content

Commit d79446c

Browse files
committed
Fix astyle CI failures
1 parent 49e58dd commit d79446c

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

drivers/include/drivers/interfaces/InterfaceCAN.h

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -118,35 +118,35 @@ namespace interface {
118118
/* Having this as a struct allows interface::CAN and/or mbed::CAN to inherit the enums */
119119
struct can {
120120

121-
enum Mode {
122-
Reset = 0,
123-
Normal,
124-
Silent,
125-
LocalTest,
126-
GlobalTest,
127-
SilentTest
128-
};
129-
130-
enum IrqType {
131-
RxIrq = 0,
132-
TxIrq,
133-
EwIrq,
134-
DoIrq,
135-
WuIrq,
136-
EpIrq,
137-
AlIrq,
138-
BeIrq,
139-
IdIrq,
140-
141-
IrqCnt
142-
};
121+
enum Mode {
122+
Reset = 0,
123+
Normal,
124+
Silent,
125+
LocalTest,
126+
GlobalTest,
127+
SilentTest
128+
};
129+
130+
enum IrqType {
131+
RxIrq = 0,
132+
TxIrq,
133+
EwIrq,
134+
DoIrq,
135+
WuIrq,
136+
EpIrq,
137+
AlIrq,
138+
BeIrq,
139+
IdIrq,
140+
141+
IrqCnt
142+
};
143143

144144
// Prevent slicing and user creation of base class.
145145
protected:
146146
can() = default;
147147
~can() = default;
148-
can(const can&) = default;
149-
can& operator=(const can&) = default;
148+
can(const can &) = default;
149+
can &operator=(const can &) = default;
150150

151151
};
152152

0 commit comments

Comments
 (0)