summaryrefslogtreecommitdiff
path: root/basic/source/comp
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-09-19 14:05:29 +0300
committerTor Lillqvist <tml@collabora.com>2017-09-20 09:47:38 +0300
commit6978f506a439cc8bf30393568ba496c266eafdb2 (patch)
treee364373f3e5253d01d29b3ab379d87f114489c9c /basic/source/comp
parente0aed1459513be5e08fab9de06848df5dc9d0b5f (diff)
Bin some noise comments and ASCII graphics
Change-Id: Ib0e786b0e8401da3e3c93bf254727411774e8f43
Diffstat (limited to 'basic/source/comp')
-rw-r--r--basic/source/comp/exprtree.cxx18
-rw-r--r--basic/source/comp/symtbl.cxx18
2 files changed, 0 insertions, 36 deletions
diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx
index 085476bb794a..2643ffb5a856 100644
--- a/basic/source/comp/exprtree.cxx
+++ b/basic/source/comp/exprtree.cxx
@@ -24,12 +24,6 @@
#include "expr.hxx"
#include <o3tl/make_unique.hxx>
-/***************************************************************************
-|*
-|* SbiExpression
-|*
-***************************************************************************/
-
SbiExpression::SbiExpression( SbiParser* p, SbiExprType t,
SbiExprMode eMode, const KeywordSymbolInfo* pKeywordSymbolInfo )
{
@@ -811,12 +805,6 @@ SbiExprNode* SbiExpression::Boolean()
return pNd;
}
-/***************************************************************************
-|*
-|* SbiConstExpression
-|*
-***************************************************************************/
-
SbiConstExpression::SbiConstExpression( SbiParser* p ) : SbiExpression( p )
{
if( pExpr->IsConstant() )
@@ -905,12 +893,6 @@ short SbiConstExpression::GetShortValue()
}
-/***************************************************************************
-|*
-|* SbiExprList
-|*
-***************************************************************************/
-
SbiExprList::SbiExprList( )
{
nDim = 0;
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index 81824a426e68..44684349b4e2 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -34,12 +34,6 @@
// The local stringpool holds all the symbols that don't move to the image
// (labels, constant names etc.).
-/***************************************************************************
-|*
-|* SbiStringPool
-|*
-***************************************************************************/
-
SbiStringPool::SbiStringPool( )
{}
@@ -82,12 +76,6 @@ short SbiStringPool::Add( double n, SbxDataType t )
return Add( OUString::createFromAscii( buf ) );
}
-/***************************************************************************
-|*
-|* SbiSymPool
-|*
-***************************************************************************/
-
SbiSymPool::SbiSymPool( SbiStringPool& r, SbiSymScope s, SbiParser* pP ) : rStrings( r ), pParser( pP )
{
eScope = s;
@@ -256,12 +244,6 @@ void SbiSymPool::CheckRefs()
}
}
-/***************************************************************************
-|*
-|* symbol definitions
-|*
-***************************************************************************/
-
SbiSymDef::SbiSymDef( const OUString& rName ) : aName( rName )
{
eType = SbxEMPTY;