Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more
Diff: ble/FunctionPointerWithContext.h
- Revision:
- 965:212c16f6247f
- Parent:
- 957:15f5e9046dde
- Child:
- 966:9451b90bbb66
--- a/ble/FunctionPointerWithContext.h Thu Nov 26 12:52:34 2015 +0000
+++ b/ble/FunctionPointerWithContext.h Thu Nov 26 12:52:34 2015 +0000
@@ -104,11 +104,6 @@
/** Same as above, workaround for mbed os FunctionPointer implementation. */
void call(ContextType context) {
_caller(this, context);
-
- /* Propagate the call to next in the chain. */
- if (_next) {
- _next->call(context);
- }
}
typedef void (FunctionPointerWithContext::*bool_type)() const;