Fix MSVC warning: <unsafe use of type 'bool' in operation>

llvm-svn: 132058
This commit is contained in:
Francois Pichet 2011-05-25 16:07:10 +00:00
parent 58b09c9366
commit 7e401dbe03
1 changed files with 1 additions and 1 deletions

View File

@ -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.