[libcxx-commits] [libcxxabi] [libcxxabi] Update ItaniumDemangle.h from LLVM (PR #140273)
via libcxx-commits
libcxx-commits at lists.llvm.org
Fri May 16 09:12:44 PDT 2025
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 HEAD~1 HEAD --extensions h -- libcxxabi/src/demangle/ItaniumDemangle.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/libcxxabi/src/demangle/ItaniumDemangle.h b/libcxxabi/src/demangle/ItaniumDemangle.h
index 4e7f92dd1..cee0dd5d4 100644
--- a/libcxxabi/src/demangle/ItaniumDemangle.h
+++ b/libcxxabi/src/demangle/ItaniumDemangle.h
@@ -172,7 +172,11 @@ public:
/// Three-way bool to track a cached value. Unknown is possible if this node
/// has an unexpanded parameter pack below it that may affect this cache.
- enum class Cache : uint8_t { Yes, No, Unknown, };
+ enum class Cache : uint8_t {
+ Yes,
+ No,
+ Unknown,
+ };
/// Operator precedence for expression nodes. Used to determine required
/// parens in expression emission.
``````````
</details>
https://github.com/llvm/llvm-project/pull/140273
More information about the libcxx-commits
mailing list