declare default dtor as virtual

Change-Id: Ic77dbe3ffb2d2856d437158914b877b913296e0e
This commit is contained in:
Caolán McNamara
2016-08-30 14:19:44 +01:00
parent 181c6a8886
commit dd5fa4cea7
2 changed files with 1 additions and 12 deletions

View File

@@ -32,16 +32,6 @@ using namespace connectivity::file;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdb;
OCode::OCode()
{
}
OCode::~OCode()
{
}
OOperandRow::OOperandRow(sal_uInt16 _nPos, sal_Int32 _rType)
: OOperand(_rType)
, m_nRowPos(_nPos)

View File

@@ -44,8 +44,7 @@ namespace connectivity
class OOO_DLLPUBLIC_FILE OCode
{
public:
OCode();
virtual ~OCode();
virtual ~OCode() = default;
inline static void * SAL_CALL operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }