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/FileBase.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/FileBase.h	Thu Sep 06 13:40:20 2018 +0100
@@ -27,7 +27,7 @@
 #include "platform/NonCopyable.h"
 
 namespace mbed {
-    
+
 typedef enum {
     FilePathType,
     FileSystemPathType
@@ -42,13 +42,13 @@
 /** Class FileBase
  *
  */
- 
+
 class FileBase : private NonCopyable<FileBase> {
 public:
     FileBase(const char *name, PathType t);
     virtual ~FileBase();
 
-    const char* getName(void);
+    const char *getName(void);
     PathType    getPathType(void);
 
     static FileBase *lookup(const char *name, unsigned int len);
@@ -61,7 +61,7 @@
     static SingletonPtr<PlatformMutex> _mutex;
 
     FileBase   *_next;
-    const char * const _name;
+    const char *const _name;
     const PathType _path_type;
 };