From: Benjamin Kramer Date: Sun, 8 Oct 2017 21:23:02 +0000 (+0000) Subject: Remove unused variables. No functionality change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f78fbad698726ef650c754a231149a59edf257c9;p=llvm Remove unused variables. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/BinaryStreamTest.cpp b/unittests/Support/BinaryStreamTest.cpp index 005ec9ff58d..cbad0f390c8 100644 --- a/unittests/Support/BinaryStreamTest.cpp +++ b/unittests/Support/BinaryStreamTest.cpp @@ -314,7 +314,6 @@ TEST_F(BinaryStreamTest, MutableBinaryByteStreamBounds) { // For every combination of input stream and output stream. for (auto &Stream : Streams) { - MutableArrayRef Buffer; ASSERT_EQ(InputData.size(), Stream.Input->getLength()); // 1. Try two reads that are supposed to work. One from offset 0, and one @@ -355,7 +354,6 @@ TEST_F(BinaryStreamTest, FixedStreamArray) { initializeInput(IntBytes, alignof(uint32_t)); for (auto &Stream : Streams) { - MutableArrayRef Buffer; ASSERT_EQ(InputData.size(), Stream.Input->getLength()); FixedStreamArray Array(*Stream.Input);