compilerplugins/clang/unnecessaryparen.cxx |    1 -
 1 file changed, 1 deletion(-)

New commits:
commit 251135b308fa7a9a5842c0abe7128311579d603b
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Thu Mar 16 10:57:37 2023 +0100
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Thu Mar 16 12:41:38 2023 +0000

    Remove empty comment
    
    ...which I had added as part of 0025fa723afb9f6a0d94b9b3185ea14da18f1bd5 
"Enable
    loplugin:unnecessaryparen for integer and Boolean literals", and where I
    apparently wanted to include a link but forgot to do so (and no longer know 
what
    link that would have been)
    
    Change-Id: I245725fea80ee0e13d76026656d433d5c42e4c19
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148975
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/compilerplugins/clang/unnecessaryparen.cxx 
b/compilerplugins/clang/unnecessaryparen.cxx
index 3b9e5f14bbbb..11655d51389e 100644
--- a/compilerplugins/clang/unnecessaryparen.cxx
+++ b/compilerplugins/clang/unnecessaryparen.cxx
@@ -552,7 +552,6 @@ bool UnnecessaryParen::VisitMemberExpr(const MemberExpr* 
memberExpr)
 // in Clang's lib/Analysis/ReachableCode.cpp looks for, descending into 
certain unary and binary
 // operators):
 void UnnecessaryParen::handleUnreachableCodeConditionParens(Expr const * expr) 
{
-    // Cf. :
     auto const e = ignoreAllImplicit(expr);
     if (auto const e1 = dyn_cast<ParenExpr>(e)) {
         auto const sub = e1->getSubExpr();

Reply via email to