[clang] Move Sema::WarnedStackExhausted from public to private. (PR #111799)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 10 00:47:05 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Boaz Brickner (bricknerb)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/111799.diff
1 Files Affected:
- (modified) clang/include/clang/Sema/Sema.h (+2-2)
``````````diff
diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h
index e0a5397d8db80d..0ac33adfa1a85d 100644
--- a/clang/include/clang/Sema/Sema.h
+++ b/clang/include/clang/Sema/Sema.h
@@ -872,8 +872,6 @@ class Sema final : public SemaBase {
/// For example, user-defined classes, built-in "id" type, etc.
Scope *TUScope;
- bool WarnedStackExhausted = false;
-
void incrementMSManglingNumber() const {
return CurScope->incrementMSManglingNumber();
}
@@ -1185,6 +1183,8 @@ class Sema final : public SemaBase {
std::optional<std::unique_ptr<DarwinSDKInfo>> CachedDarwinSDKInfo;
bool WarnedDarwinSDKInfoMissing = false;
+ bool WarnedStackExhausted = false;
+
Sema(const Sema &) = delete;
void operator=(const Sema &) = delete;
``````````
</details>
https://github.com/llvm/llvm-project/pull/111799
More information about the cfe-commits
mailing list