Fix order of initialization warning.

llvm-svn: 178255
This commit is contained in:
Eric Christopher 2013-03-28 18:22:58 +00:00
parent b1322d5691
commit 06cbed4121
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class RefState {
// family.
RefState(Kind k, const Stmt *s, unsigned family)
: K(k), S(s), Family(family) {}
: S(s), K(k), Family(family) {}
public:
bool isAllocated() const { return K == Allocated; }
bool isReleased() const { return K == Released; }