Skip to content

Commit 722dd67

Browse files
Added missing virtual destructors
1 parent fc9a636 commit 722dd67

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

api/Printable.h

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class Print;
3333
class Printable
3434
{
3535
public:
36+
virtual ~Printable() {}
3637
virtual size_t printTo(Print& p) const = 0;
3738
};
3839

api/Stream.h

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class Stream : public Print
6262
virtual int peek() = 0;
6363

6464
Stream() {_timeout=1000;}
65+
virtual ~Stream() {}
6566

6667
// parsing methods
6768

api/String.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class String
8181
explicit String(unsigned long, unsigned char base=10);
8282
explicit String(float, unsigned char decimalPlaces=2);
8383
explicit String(double, unsigned char decimalPlaces=2);
84-
~String(void);
84+
virtual ~String(void);
8585

8686
// memory management
8787
// return true on success, false on failure (in which case, the string

0 commit comments

Comments
 (0)