forked from OSchip/llvm-project
Quieting an MSVC warning about converting negative integer constants to unsigned types.
llvm-svn: 184941
This commit is contained in:
parent
b34c1fdfd4
commit
29c427bec9
|
@ -701,7 +701,7 @@ private:
|
|||
public:
|
||||
enum {
|
||||
InvalidParamIndex = ~0U,
|
||||
VarArgParamIndex = InvalidParamIndex - 1U
|
||||
VarArgParamIndex = ~0U/*InvalidParamIndex*/ - 1U
|
||||
};
|
||||
|
||||
ParamCommandComment(SourceLocation LocBegin,
|
||||
|
|
Loading…
Reference in New Issue