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: Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more
Diff: common/FunctionPointer.cpp
- Revision:
- 212:34d62c0b2af6
- Parent:
- 15:4892fe388435
--- a/common/FunctionPointer.cpp Sun May 25 08:00:07 2014 +0100 +++ b/common/FunctionPointer.cpp Mon May 26 18:15:07 2014 +0100 @@ -17,7 +17,9 @@ namespace mbed { -FunctionPointer::FunctionPointer(void (*function)(void)) { +FunctionPointer::FunctionPointer(void (*function)(void)): _function(), + _object(), + _membercaller() { attach(function); }