From: NAKAMURA Takumi Date: Mon, 21 Jan 2013 10:51:28 +0000 (+0000) Subject: CGDebugInfo.cpp: Fix a warning. [-Wunused-variable] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d24c9ab90b42370bb417f44e001a0347ee1ca87e;p=clang CGDebugInfo.cpp: Fix a warning. [-Wunused-variable] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173022 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 719bb69de4..ec88d8727c 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1738,6 +1738,7 @@ static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) { } assert(T != LastT && "Type unwrapping failed to unwrap!"); + (void)LastT; } while (true); }