diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-03-16 10:57:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-03-16 12:41:38 +0000 |
commit | 251135b308fa7a9a5842c0abe7128311579d603b (patch) | |
tree | 08d2464330d7232d353cd49764069f09c4e2a37f /compilerplugins | |
parent | 89657b5309a276f6be59d74651a94132590be028 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/unnecessaryparen.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
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(); |