diff options
Diffstat (limited to 'libcc1/connection.hh')
-rw-r--r-- | libcc1/connection.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcc1/connection.hh b/libcc1/connection.hh index 50e8a8b5a03..a0e99bdbd98 100644 --- a/libcc1/connection.hh +++ b/libcc1/connection.hh @@ -46,7 +46,7 @@ namespace cc1_plugin { } - virtual ~connection (); + virtual ~connection () = default; // Send a single character. This is used to introduce various // higher-level protocol elements. @@ -89,7 +89,9 @@ namespace cc1_plugin m_callbacks.add_callback (name, func); } - virtual void print (const char *); + virtual void print (const char *) + { + } private: |