summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/parse.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx
index 4911e8516a81..1bcef035d5b2 100644
--- a/starmath/inc/parse.hxx
+++ b/starmath/inc/parse.hxx
@@ -33,7 +33,6 @@ class SmParser
{
OUString m_aBufferString;
SmToken m_aCurToken;
- SmNodeStack m_aNodeStack;
std::vector<std::unique_ptr<SmErrorDesc>> m_aErrDescList;
int m_nCurError;
sal_Int32 m_nBufferIndex,
@@ -62,7 +61,7 @@ class SmParser
// grammar
SmTableNode *DoTable();
- void DoLine();
+ SmLineNode *DoLine();
SmNode *DoExpression(bool bUseExtraSpaces = true);
SmNode *DoRelation();
SmNode *DoSum();
@@ -93,8 +92,6 @@ class SmParser
SmExpressionNode *DoError(SmParseError Error);
// end of grammar
- void Error(SmParseError Error);
-
public:
SmParser();