Quieting an MSVC warning about converting negative integer constants to unsigned types.

llvm-svn: 184941
This commit is contained in:
Aaron Ballman 2013-06-26 12:54:49 +00:00
parent b34c1fdfd4
commit 29c427bec9
1 changed files with 1 additions and 1 deletions

View File

@ -701,7 +701,7 @@ private:
public:
enum {
InvalidParamIndex = ~0U,
VarArgParamIndex = InvalidParamIndex - 1U
VarArgParamIndex = ~0U/*InvalidParamIndex*/ - 1U
};
ParamCommandComment(SourceLocation LocBegin,