From a4ee4429e2e3d974edd121e26108d2ce6378c751 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 19 Oct 2009 01:20:42 +0000 Subject: [PATCH] Suppress build warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84453 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/TypeLoc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); } -- 2.50.1