summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:01:41 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:26 +0100
commit5061fa53456fc4d361dd4cb7871c56a229937101 (patch)
tree910e36ce67d63c261834656ff0abb54b5fe17809 /idlc
parent471cbb05226c2fd3f92c63f3e6a7087a73ee8f6f (diff)
bool improvements
Change-Id: I0ec9d6ed41eddbc0177c26755b621f404cfd4703
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/astexpression.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/astexpression.cxx b/idlc/source/astexpression.cxx
index 995796e22f7b..8839e4c3b961 100644
--- a/idlc/source/astexpression.cxx
+++ b/idlc/source/astexpression.cxx
@@ -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;