diff options
-rw-r--r-- | autodoc/source/ary/cpp/ca_ce.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/autodoc/source/ary/cpp/ca_ce.cxx b/autodoc/source/ary/cpp/ca_ce.cxx index ea49b1446c49..b2ceb27dc41a 100644 --- a/autodoc/source/ary/cpp/ca_ce.cxx +++ b/autodoc/source/ary/cpp/ca_ce.cxx @@ -450,9 +450,7 @@ CeAdmin::Get_SignatureText( StreamStr & o_rOut, ? i_sParameterNames->end() : aDummy.end(); - bool - bEmpty = (it == it_end); - if (NOT bEmpty) + if (NOT (it == it_end) ) { o_rOut << "( "; Types().Get_TypeText(o_rOut, *it); |