forked from OSchip/llvm-project
parent
b1322d5691
commit
06cbed4121
|
@ -58,7 +58,7 @@ class RefState {
|
||||||
// family.
|
// family.
|
||||||
|
|
||||||
RefState(Kind k, const Stmt *s, unsigned family)
|
RefState(Kind k, const Stmt *s, unsigned family)
|
||||||
: K(k), S(s), Family(family) {}
|
: S(s), K(k), Family(family) {}
|
||||||
public:
|
public:
|
||||||
bool isAllocated() const { return K == Allocated; }
|
bool isAllocated() const { return K == Allocated; }
|
||||||
bool isReleased() const { return K == Released; }
|
bool isReleased() const { return K == Released; }
|
||||||
|
|
Loading…
Reference in New Issue