[llvm] [Support] Remove AlignedCharArrayUnion from Expected and ErrorOr, NFCI. (PR #127407)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 03:22:54 PST 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 538b8f8008b95782ea1967284e22500c72aec67d fd8b3eb34d17a854d32749c3fb79081f5491d473 --extensions h -- llvm/include/llvm/Support/Error.h llvm/include/llvm/Support/ErrorOr.h llvm/include/llvm/Support/TrailingObjects.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/Support/ErrorOr.h b/llvm/include/llvm/Support/ErrorOr.h
index bbfd2cae26..211ea0c732 100644
--- a/llvm/include/llvm/Support/ErrorOr.h
+++ b/llvm/include/llvm/Support/ErrorOr.h
@@ -246,9 +246,7 @@ private:
return &ErrorStorage;
}
- const std::error_code *getErrorStorage() const {
- return &ErrorStorage;
- }
+ const std::error_code *getErrorStorage() const { return &ErrorStorage; }
union {
storage_type TStorage;
``````````
</details>
https://github.com/llvm/llvm-project/pull/127407
More information about the llvm-commits
mailing list