char aChar = theExpr[aPos];
while( aPos < aLen && isSpace( aChar ) )
- aPos++;
+ aChar = theExpr[++aPos];
if ( aPos >= aLen )
break;
//=======================================================================
bool SALOME_EvalParser::isMonoParam() const
{
- return myError == EvalExpr_OK && myPostfix.size()==1 && myPostfix.begin()->myType == Param;
+ return myError==EvalExpr_OK && myPostfix.size()==1 && myPostfix.begin()->myType==Param;
}
//=======================================================================