We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6429ef commit 59a6b55Copy full SHA for 59a6b55
drivers/Ticker.h
@@ -117,10 +117,10 @@ class Ticker : public TimerEvent, private NonCopyable<Ticker> {
117
MBED_DEPRECATED_SINCE("mbed-os-5.1",
118
"The attach function does not support cv-qualifiers. Replaced by "
119
"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
- }
+ void attach(T *obj, M method, float t)
+ {
+ attach(callback(obj, method), (s_timestamp_t)t);
+ }
124
125
/** Attach a function to be called by the Ticker, specifying the interval in microseconds
126
*
0 commit comments