diff options
-rw-r--r-- | basic/source/comp/parser.cxx | 2 | ||||
-rw-r--r-- | basic/source/inc/parser.hxx | 1 |
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;} |