mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
187:0387e8f68319
Parent:
178:79309dc6340a
Child:
188:bcfe06ba3d64
--- a/platform/PlatformMutex.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/PlatformMutex.h	Thu Sep 06 13:40:20 2018 +0100
@@ -33,19 +33,23 @@
 */
 class PlatformMutex : private mbed::NonCopyable<PlatformMutex> {
 public:
-    PlatformMutex() {
+    PlatformMutex()
+    {
         // Stub
 
     }
-    ~PlatformMutex() {
+    ~PlatformMutex()
+    {
         // Stub
     }
 
-    void lock() {
+    void lock()
+    {
         // Do nothing
     }
 
-    void unlock() {
+    void unlock()
+    {
         // Do nothing
     }
 };