Skip to content

Commit 59a6b55

Browse files
committed
Fix code indentation to satisfy code style checker
1 parent d6429ef commit 59a6b55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/Ticker.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ class Ticker : public TimerEvent, private NonCopyable<Ticker> {
117117
MBED_DEPRECATED_SINCE("mbed-os-5.1",
118118
"The attach function does not support cv-qualifiers. Replaced by "
119119
"attach(callback(obj, method), t).")
120-
void attach(T *obj, M method, float t)
121-
{
122-
attach(callback(obj, method), (s_timestamp_t)t);
123-
}
120+
void attach(T *obj, M method, float t)
121+
{
122+
attach(callback(obj, method), (s_timestamp_t)t);
123+
}
124124

125125
/** Attach a function to be called by the Ticker, specifying the interval in microseconds
126126
*

0 commit comments

Comments
 (0)