From 272cbacc25beec921298db499ec12a11ac584fcb Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Fri, 5 Aug 2016 21:57:10 +0000 Subject: [PATCH] CodeView: Remove an unused variable It was breaking the -Werror build. llvm-svn: 277878 --- llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp index a302505..1b96b0c 100644 --- a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp +++ b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp @@ -29,7 +29,6 @@ static Error visitKnownRecord(const CVRecord &Record, } Error CVTypeVisitor::visitTypeRecord(const CVRecord &Record) { - ArrayRef LeafData = Record.Data; if (auto EC = Callbacks.visitTypeBegin(Record)) return EC; -- 2.7.4