aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/Support/ExprDeclBitVector.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Analysis/Support/ExprDeclBitVector.h')
-rw-r--r--include/clang/Analysis/Support/ExprDeclBitVector.h4
1 files 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;