Home
last modified time | relevance | path

Searched defs:VarCreationState (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.h85 struct VarCreationState { struct
87 VarCreationState() = default; argument
88 VarCreationState(bool b) : S(b) {} in VarCreationState() function
89 static VarCreationState NotCreated() { return VarCreationState(); } in NotCreated() argument
92 bool notCreated() const { return !S; } in notCreated()