1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Delete dead function causing compilation failure.

llvm-svn: 302057
This commit is contained in:
Zachary Turner 2017-05-03 17:38:49 +00:00
parent 7edb6cd8eb
commit a4a86bd6fc

View File

@ -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;