github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. 
:warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- 
clang-tools-extra/clang-tidy/readability/RedundantConstCheck.cpp 
clang-tools-extra/clang-tidy/readability/RedundantConstCheck.h 
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-const.cpp 
clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp 
--diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/clang-tools-extra/clang-tidy/readability/RedundantConstCheck.cpp 
b/clang-tools-extra/clang-tidy/readability/RedundantConstCheck.cpp
index f7cc78cf7..b14f4a2f6 100644
--- a/clang-tools-extra/clang-tidy/readability/RedundantConstCheck.cpp
+++ b/clang-tools-extra/clang-tidy/readability/RedundantConstCheck.cpp
@@ -37,10 +37,11 @@ findConstToRemove(const VarDecl *VD, const 
MatchFinder::MatchResult &Result) {
   // e.g: constexpr const auto const str = "hello";
   // In cases like this, clang analyzer already warns about the use of const
   // as duplicate, so we can safely ignore these cases.
-  const SourceLocation ConstSearchStartLoc = !IsPointer
-      ? VD->getBeginLoc()
-      : utils::lexer::findPreviousTokenKind(
-        NameBeginLoc, SM, Result.Context->getLangOpts(), tok::star);
+  const SourceLocation ConstSearchStartLoc =
+      !IsPointer
+          ? VD->getBeginLoc()
+          : utils::lexer::findPreviousTokenKind(
+                NameBeginLoc, SM, Result.Context->getLangOpts(), tok::star);
 
   if (ConstSearchStartLoc.isInvalid())
     return std::nullopt;

``````````

</details>


https://github.com/llvm/llvm-project/pull/189733
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to