The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
123:b0220dba8be7
Parent:
122:f9eeca106725
--- a/CallChain.h	Thu Jul 07 14:34:11 2016 +0100
+++ b/CallChain.h	Fri Aug 12 13:04:35 2016 +0200
@@ -154,14 +154,12 @@
      */
     void call();
 
-#ifdef MBED_OPERATORS
     void operator ()(void) {
         call();
     }
     pFunctionPointer_t operator [](int i) const {
         return get(i);
     }
-#endif
 
     /* disallow copy constructor and assignment operators */
 private:
@@ -173,4 +171,3 @@
 } // namespace mbed
 
 #endif
-