From f5615df5e82ef2f84fd3f1672dfc002212105ba1 Mon Sep 17 00:00:00 2001 From: Arnaud Versini Date: Sun, 7 Aug 2016 13:34:47 +0200 Subject: BASIC: Move SbiParser's destructor to cpp file. Change-Id: Id920a83693969ab2d93047524a9affa267a231dc Reviewed-on: https://gerrit.libreoffice.org/27931 Tested-by: Jenkins Reviewed-by: Noel Grandin --- basic/source/comp/parser.cxx | 2 ++ basic/source/inc/parser.hxx | 1 + 2 files changed, 3 insertions(+) (limited to 'basic') diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx index c2463610ae69..2ecc75c8e9c9 100644 --- a/basic/source/comp/parser.cxx +++ b/basic/source/comp/parser.cxx @@ -150,6 +150,8 @@ SbiParser::SbiParser( StarBASIC* pb, SbModule* pm ) } +SbiParser::~SbiParser() { } + // part of the runtime-library? SbiSymDef* SbiParser::CheckRTLForSym(const OUString& rSym, SbxDataType eType) { diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx index 2225cbcf4367..8b16d4c94e25 100644 --- a/basic/source/inc/parser.hxx +++ b/basic/source/inc/parser.hxx @@ -80,6 +80,7 @@ public: SbxDataType eDefTypes[N_DEF_TYPES]; // DEFxxx data types SbiParser( StarBASIC*, SbModule* ); + ~SbiParser( ); bool Parse(); void SetCodeCompleting( bool b ); bool IsCodeCompleting() const { return bCodeCompleting;} -- cgit