diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-20 22:05:57 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-07-20 22:05:57 +0000 |
commit | e288cd100f86631ec0ade2a85930397a4ea7b21e (patch) | |
tree | db14cd56e8216fb10384a2f687f5e58ad276313a /lib/Analysis/ProfileInfoLoader.cpp | |
parent | 428ff6a6445ac1a0d263776cb0301f77f1454286 (diff) |
Remove unused private member variables uncovered by the recent changes to clang's -Wunused-private-field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160583 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfoLoader.cpp')
-rw-r--r-- | lib/Analysis/ProfileInfoLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfoLoader.cpp b/lib/Analysis/ProfileInfoLoader.cpp index 027116e7ed..5c7c97cad1 100644 --- a/lib/Analysis/ProfileInfoLoader.cpp +++ b/lib/Analysis/ProfileInfoLoader.cpp @@ -84,7 +84,7 @@ const unsigned ProfileInfoLoader::Uncounted = ~0U; // ProfileInfoLoader::ProfileInfoLoader(const char *ToolName, const std::string &Filename) - : Filename(Filename), Warned(false) { + : Filename(Filename) { FILE *F = fopen(Filename.c_str(), "rb"); if (F == 0) { errs() << ToolName << ": Error opening '" << Filename << "': "; |