From 51de452ef613a50637b839f088860d6c654fd91d Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Wed, 5 Apr 2017 19:10:28 +0900 Subject: starmath: Kill newly unused m_aNodeStack which now has been replaced naturally with the call stack of SmParser functions. Change-Id: I970a350aae6927c6d13ed4917aa29bce3888a3fe Reviewed-on: https://gerrit.libreoffice.org/36136 Tested-by: Jenkins Reviewed-by: Takeshi Abe --- starmath/inc/parse.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'starmath/inc') 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> 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(); -- cgit