Fix code indentation to satisfy code style checker

pull/11236/head
Hugues Kamba 2019-08-15 19:54:09 +01:00
parent d6429ef45f
commit 59a6b55c64
1 changed files with 4 additions and 4 deletions

View File

@ -117,10 +117,10 @@ public:
MBED_DEPRECATED_SINCE("mbed-os-5.1",
"The attach function does not support cv-qualifiers. Replaced by "
"attach(callback(obj, method), t).")
void attach(T *obj, M method, float t)
{
attach(callback(obj, method), (s_timestamp_t)t);
}
void attach(T *obj, M method, float t)
{
attach(callback(obj, method), (s_timestamp_t)t);
}
/** Attach a function to be called by the Ticker, specifying the interval in microseconds
*