From: Chris Lattner Date: Sat, 7 Jun 2008 19:56:57 +0000 (+0000) Subject: Mark the right ctor explicit, patch by Cédric Venet X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=259dfdc79126a957e56e55e3e3788031b99be12f;p=clang Mark the right ctor explicit, patch by Cédric Venet git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52078 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/Support/ExprDeclBitVector.h b/include/clang/Analysis/Support/ExprDeclBitVector.h index 5796fb39a7..7b44fd7c6b 100644 --- a/include/clang/Analysis/Support/ExprDeclBitVector.h +++ b/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;