From 29c427bec9259531b9fa552556e01e3d9c098af7 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 26 Jun 2013 12:54:49 +0000 Subject: [PATCH] Quieting an MSVC warning about converting negative integer constants to unsigned types. llvm-svn: 184941 --- clang/include/clang/AST/Comment.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/Comment.h b/clang/include/clang/AST/Comment.h index 613ad53..d943ad2 100644 --- a/clang/include/clang/AST/Comment.h +++ b/clang/include/clang/AST/Comment.h @@ -701,7 +701,7 @@ private: public: enum { InvalidParamIndex = ~0U, - VarArgParamIndex = InvalidParamIndex - 1U + VarArgParamIndex = ~0U/*InvalidParamIndex*/ - 1U }; ParamCommandComment(SourceLocation LocBegin, -- 2.7.4