From 7a83696a76e576ce230988b092b1152ac18f42b7 Mon Sep 17 00:00:00 2001 From: Pierre-André Jacquod Date: Sun, 4 Sep 2011 21:14:48 +0200 Subject: [cppchecker] superfluous variable deleted --- autodoc/source/ary/cpp/ca_ce.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'autodoc') 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); -- cgit