mbed library sources modified for open wear

Dependents:   openwear-lifelogger-example

Fork of mbed-src by mbed official

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Mon May 26 18:30:07 2014 +0100
Parent:
212:34d62c0b2af6
Child:
214:b6ec89a903fb
Commit message:
Synchronized with git revision 3cec47a2d5a7be8cf25757494272b60c1d8538d1

Full URL: https://github.com/mbedmicro/mbed/commit/3cec47a2d5a7be8cf25757494272b60c1d8538d1/

Changed in this revision

api/SerialBase.h Show annotated file Show diff for this revision Revisions of this file
api/can_helper.h Show annotated file Show diff for this revision Revisions of this file
--- a/api/SerialBase.h	Mon May 26 18:15:07 2014 +0100
+++ b/api/SerialBase.h	Mon May 26 18:30:07 2014 +0100
@@ -121,7 +121,8 @@
 
 protected:
     SerialBase(PinName tx, PinName rx);
-    virtual ~SerialBase();
+    virtual ~SerialBase() {
+    }
 
     int _base_getc();
     int _base_putc(int c);
--- a/api/can_helper.h	Mon May 26 18:15:07 2014 +0100
+++ b/api/can_helper.h	Mon May 26 18:30:07 2014 +0100
@@ -41,9 +41,6 @@
     unsigned char  len;                // Length of data field in bytes
     CANFormat      format;             // 0 - STANDARD, 1- EXTENDED IDENTIFIER
     CANType        type;               // 0 - DATA FRAME, 1 - REMOTE FRAME
-
-    virtual ~CAN_Message() {
-    }
 };
 typedef struct CAN_Message CAN_Message;