diff options
author | Zachary Turner <zturner@google.com> | 2017-05-03 17:38:49 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-03 17:38:49 +0000 |
commit | 9232eb4cceac9ea878d39e84d52473132fe336aa (patch) | |
tree | 4caab67d1705c4f6addce85fbc739284c5dda329 | |
parent | 63ff5c6677bb0f400cb29e93fb763f97ebf9cc95 (diff) | |
download | bcm5719-llvm-9232eb4cceac9ea878d39e84d52473132fe336aa.tar.gz bcm5719-llvm-9232eb4cceac9ea878d39e84d52473132fe336aa.zip |
Delete dead function causing compilation failure.
llvm-svn: 302057
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp b/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp index 2cfac801141..249bc4a03b8 100644 --- a/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp @@ -25,12 +25,6 @@ namespace { class StringTableBuilderTest : public ::testing::Test {}; } -template <typename T> -static void ExpectExpected(Expected<T> &&E, const T &Value) { - EXPECT_EXPECTED(E); - EXPECT_EQ(Value, *E); -} - TEST_F(StringTableBuilderTest, Simple) { // Create /names table contents. PDBStringTableBuilder Builder; |