From: Daniel Dunbar Date: Mon, 19 Oct 2009 01:20:42 +0000 (+0000) Subject: Suppress build warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4ee4429e2e3d974edd121e26108d2ce6378c751;p=clang Suppress build warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84453 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/TypeLoc.cpp b/lib/AST/TypeLoc.cpp index 7e6b110bf5..50a512028e 100644 --- a/lib/AST/TypeLoc.cpp +++ b/lib/AST/TypeLoc.cpp @@ -92,5 +92,5 @@ namespace { void TypeLoc::initializeImpl(TypeLoc TL, SourceLocation Loc) { do { TypeLocInitializer(Loc).Visit(TL); - } while (TL = TL.getNextTypeLoc()); + } while ((TL = TL.getNextTypeLoc())); }