[clang] [Clang][TableGen] Use const pointers for various Init objects in Diagnostic Emitter (PR #112318)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 15 13:16:57 PDT 2024
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 685bec722f008ae26593a5ebe3d58ca8e5c4a7c2 1629f6eacc566139a3f38100014586fa5dbba152 --extensions cpp -- clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp b/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
index 8530b8f8c4..34e2e8f47a 100644
--- a/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
+++ b/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
@@ -384,7 +384,7 @@ void InferPedantic::compute(VecOrSet DiagsInPedantic,
// The diagnostic is not included in a group that is (transitively) in
// -Wpedantic. Include it in -Wpedantic directly.
- if (auto *V = DiagsInPedantic.dyn_cast<RecordVec*>())
+ if (auto *V = DiagsInPedantic.dyn_cast<RecordVec *>())
V->push_back(R);
else {
DiagsInPedantic.get<RecordSet*>()->insert(R);
@@ -413,7 +413,7 @@ void InferPedantic::compute(VecOrSet DiagsInPedantic,
if (Parents.size() > 0 && AllParentsInPedantic)
continue;
- if (auto *V = GroupsInPedantic.dyn_cast<RecordVec*>())
+ if (auto *V = GroupsInPedantic.dyn_cast<RecordVec *>())
V->push_back(Group);
else {
GroupsInPedantic.get<RecordSet*>()->insert(Group);
``````````
</details>
https://github.com/llvm/llvm-project/pull/112318
More information about the cfe-commits
mailing list