[clang] [analyzer] Modernize FuchsiaHandleChecker (PR #111588)
DonĂ¡t Nagy via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 9 03:54:23 PDT 2024
================
@@ -127,26 +135,30 @@ class HandleState {
bool isEscaped() const { return K == Kind::Escaped; }
bool isUnowned() const { return K == Kind::Unowned; }
- static HandleState getMaybeAllocated(SymbolRef ErrorSym) {
- return HandleState(Kind::MaybeAllocated, ErrorSym);
+ static HandleState getMaybeAllocated(SymbolRef ErrorSym, std::uint8_t Idx) {
----------------
NagyDonat wrote:
Why do you use `std::uint8_t Idx` here while `Idx` is `unsigned` elsewhere?
https://github.com/llvm/llvm-project/pull/111588
More information about the cfe-commits
mailing list