diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-07 01:16:24 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-07 01:16:24 +0100 |
commit | cb55ccddd891783a11224697b4c931e0ad851550 (patch) | |
tree | d2a5f11c9a8d6d658339bdb40cda148b28e23643 /libdbpp | |
parent | boost::mpl::list not included, use std::tuple (diff) | |
download | libdbpp-cb55ccddd891783a11224697b4c931e0ad851550.tar.bz2 libdbpp-cb55ccddd891783a11224697b4c931e0ad851550.tar.xz libdbpp-cb55ccddd891783a11224697b4c931e0ad851550.zip |
Add missing virtual destructor
Diffstat (limited to 'libdbpp')
-rw-r--r-- | libdbpp/column.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdbpp/column.h b/libdbpp/column.h index 4008a81..e4c6895 100644 --- a/libdbpp/column.h +++ b/libdbpp/column.h @@ -15,6 +15,8 @@ namespace DB { /// Abstract class for something that can handle field data. See Column::apply. class DLL_PUBLIC HandleField { public: + virtual ~HandleField() = default; + /// The field is null. virtual void null() = 0; /// The field contains text data. |