diff options
-rw-r--r-- | clang/include/clang/Analysis/Support/ExprDeclBitVector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/Analysis/Support/ExprDeclBitVector.h b/clang/include/clang/Analysis/Support/ExprDeclBitVector.h index 5796fb39a7f..7b44fd7c6ba 100644 --- a/clang/include/clang/Analysis/Support/ExprDeclBitVector.h +++ b/clang/include/clang/Analysis/Support/ExprDeclBitVector.h @@ -31,8 +31,8 @@ struct DeclBitVector_Types { class Idx { unsigned I; public: - Idx(unsigned i) : I(i) {} - explicit Idx() : I(~0U) {} + explicit Idx(unsigned i) : I(i) {} + Idx() : I(~0U) {} bool isValid() const { return I != ~0U; |