Kaydet (Commit) 5061fa53 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

bool improvements

Change-Id: I0ec9d6ed41eddbc0177c26755b621f404cfd4703
üst 471cbb05
......@@ -839,7 +839,7 @@ sal_Bool AstExpression::operator==(AstExpression *pExpr)
sal_Bool AstExpression::compare(AstExpression *pExpr)
{
bool bRet = sal_False;
bool bRet = false;
if (m_combOperator != pExpr->getCombOperator())
return bRet;
evaluate(EK_const);
......@@ -882,7 +882,7 @@ sal_Bool AstExpression::compare(AstExpression *pExpr)
break;
default:
OSL_ASSERT(false);
bRet = sal_False;
bRet = false;
break;
}
return bRet;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment