summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-08-07 13:34:47 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-08 06:32:32 +0000
commitf5615df5e82ef2f84fd3f1672dfc002212105ba1 (patch)
tree178ca4bb5acbc6867953fca8cac4b4931036065b /basic
parentf02a51e92c580f29c3367f3e563577f805a7013c (diff)
BASIC: Move SbiParser's destructor to cpp file.
Change-Id: Id920a83693969ab2d93047524a9affa267a231dc Reviewed-on: https://gerrit.libreoffice.org/27931 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/parser.cxx2
-rw-r--r--basic/source/inc/parser.hxx1
2 files changed, 3 insertions, 0 deletions
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;}