Change m_nPrecNum from int to size_t and rename to m_precedenceOpCount (#33)

This commit is contained in:
Josh Koon
2019-02-21 16:36:54 -08:00
committed by GitHub
parent 1302d51afe
commit 5a530c4bed
3 changed files with 21 additions and 21 deletions

View File

@@ -65,7 +65,7 @@ CCalcEngine::CCalcEngine(bool fPrecedence, bool fIntegerMode, CalculationManager
m_nOpCode(0),
m_nPrevOpCode(0),
m_openParenCount(0),
m_nPrecNum(0),
m_precedenceOpCount(0),
m_nTempCom(0),
m_nLastCom(0),
m_parenVals{},