]> granicus.if.org Git - clang/commitdiff
CGDebugInfo.cpp: Fix a warning. [-Wunused-variable]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 21 Jan 2013 10:51:28 +0000 (10:51 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 21 Jan 2013 10:51:28 +0000 (10:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173022 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp

index 719bb69de427c3ec1964ef99cc468a063a3a1972..ec88d8727ce875ced1e0ab9f1971dfc5fd4da1cc 100644 (file)
@@ -1738,6 +1738,7 @@ static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) {
     }
     
     assert(T != LastT && "Type unwrapping failed to unwrap!");
+    (void)LastT;
   } while (true);
 }