From 259dfdc79126a957e56e55e3e3788031b99be12f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 7 Jun 2008 19:56:57 +0000 Subject: [PATCH] =?utf8?q?Mark=20the=20right=20ctor=20explicit,=20patch=20?= =?utf8?q?by=20C=C3=A9dric=20Venet?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52078 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/Support/ExprDeclBitVector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1