commit | 8d6c0fb97910823db8307cc85059440a9dbadba9 | [log] [tgz] |
---|---|---|
author | Devang Patel <dpatel@apple.com> | Thu Sep 29 16:48:44 2011 +0000 |
committer | Devang Patel <dpatel@apple.com> | Thu Sep 29 16:48:44 2011 +0000 |
tree | 9c3e21736eef7478cdaaa733932a78d2f79f6a0f | |
parent | 7a50202be59b59416d2d42820e68b26ed78b3d0f [diff] [blame] |
Remove unnecessary and unused data member. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140786 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvm-cov/GCOVReader.cpp b/tools/llvm-cov/GCOVReader.cpp index cf01078..e4570b1 100644 --- a/tools/llvm-cov/GCOVReader.cpp +++ b/tools/llvm-cov/GCOVReader.cpp
@@ -29,7 +29,7 @@ /// read - Read GCOV buffer. bool GCOVFile::read(GCOVBuffer &Buffer) { - Format = Buffer.readGCOVFormat(); + GCOVFormat Format = Buffer.readGCOVFormat(); if (Format == InvalidGCOV) return false;