From c208d61bcb37125ba747dafc8e9ae1ed06d0cd34 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Fri, 13 Feb 2015 18:11:49 +0000 Subject: [PATCH] Fix -Wunused-variable warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229130 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/PDB/PDBSymbolFunc.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/DebugInfo/PDB/PDBSymbolFunc.cpp b/lib/DebugInfo/PDB/PDBSymbolFunc.cpp index 0195ce35ab0..c350f8f89c1 100644 --- a/lib/DebugInfo/PDB/PDBSymbolFunc.cpp +++ b/lib/DebugInfo/PDB/PDBSymbolFunc.cpp @@ -55,7 +55,6 @@ void PDBSymbolFunc::dump(raw_ostream &OS, int Indent, OS << "(FPO)"; OS << " "; - uint32_t FuncSigId = getTypeId(); if (auto FuncSig = getSignature()) { // If we have a signature, dump the name with the signature. if (auto ReturnType = FuncSig->getReturnType()) { -- 2.34.1