[Libreoffice-commits] core.git: connectivity/source

Stephan Bergmann sbergman at redhat.com
Mon Nov 14 14:30:28 UTC 2016


 connectivity/source/drivers/file/fcode.cxx |    2 ++
 connectivity/source/inc/file/fcode.hxx     |    2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 1e70553585af382c7da3f79a3edf29de56c2d6a1
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Nov 14 15:29:12 2016 +0100

    Make ~OCode an anchor again for vtable and RTTI emission
    
    ...had been lost with dd5fa4cea7b0c6912754e6887a678a050d4a7610 "declare default
    dtor as virtual"
    
    Change-Id: I30acd02c293a5ecc99f5bf4f6b1f6358ae392e93

diff --git a/connectivity/source/drivers/file/fcode.cxx b/connectivity/source/drivers/file/fcode.cxx
index 3089359..1a496de 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 930ac9b..177e1ca 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;


More information about the Libreoffice-commits mailing list