forked from OSchip/llvm-project
Fix MSVC warning: <unsafe use of type 'bool' in operation>
llvm-svn: 132058
This commit is contained in:
parent
58b09c9366
commit
7e401dbe03
|
@ -978,7 +978,7 @@ TemplateSpecializationType::PrintTemplateArgumentList(
|
|||
SpecString += '<';
|
||||
|
||||
for (unsigned Arg = 0; Arg < NumArgs; ++Arg) {
|
||||
if (SpecString.size() > !SkipBrackets)
|
||||
if (SpecString.size() > unsigned(!SkipBrackets))
|
||||
SpecString += ", ";
|
||||
|
||||
// Print the argument into a string.
|
||||
|
|
Loading…
Reference in New Issue