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

Arnaud Versini arnaud.versini at gmail.com
Mon Aug 8 06:33:14 UTC 2016


 basic/source/comp/parser.cxx |    2 ++
 basic/source/inc/parser.hxx  |    1 +
 2 files changed, 3 insertions(+)

New commits:
commit f5615df5e82ef2f84fd3f1672dfc002212105ba1
Author: Arnaud Versini <arnaud.versini at gmail.com>
Date:   Sun Aug 7 13:34:47 2016 +0200

    BASIC: Move SbiParser's destructor to cpp file.
    
    Change-Id: Id920a83693969ab2d93047524a9affa267a231dc
    Reviewed-on: https://gerrit.libreoffice.org/27931
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/basic/source/comp/parser.cxx b/basic/source/comp/parser.cxx
index c246361..2ecc75c 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 2225cbc..8b16d4c 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;}


More information about the Libreoffice-commits mailing list