diff options
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/file/fcode.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/inc/file/fcode.hxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/connectivity/source/drivers/file/fcode.cxx b/connectivity/source/drivers/file/fcode.cxx index 3089359e858f..1a496de16479 100644 --- a/connectivity/source/drivers/file/fcode.cxx +++ b/connectivity/source/drivers/file/fcode.cxx @@ -32,6 +32,8 @@ using namespace connectivity::file; using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::sdb; +OCode::~OCode() = default; + OOperandRow::OOperandRow(sal_uInt16 _nPos, sal_Int32 _rType) : OOperand(_rType) , m_nRowPos(_nPos) diff --git a/connectivity/source/inc/file/fcode.hxx b/connectivity/source/inc/file/fcode.hxx index 930ac9b4a4fb..177e1ca32edd 100644 --- a/connectivity/source/inc/file/fcode.hxx +++ b/connectivity/source/inc/file/fcode.hxx @@ -45,7 +45,7 @@ namespace connectivity { public: //virtual dtor to allow this to be the root of the class hierarchy - virtual ~OCode() = default; + virtual ~OCode(); #if !defined _MSC_VER || _MSC_VER >= 1900 //but that disables the default move ctor OCode(OCode&&) = default; |