diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-16 21:57:30 +0000 |
commit | b85b31b300295d3716832513a64165e3c637338a (patch) | |
tree | c34afbbc23ec8c416e967f3fa8fe6c147b5472d7 /lib/VMCore/PrintModulePass.cpp | |
parent | 7578ea887de6a7cb22c324b629101683a0afb3c5 (diff) |
Remove redundant inline keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/PrintModulePass.cpp')
-rw-r--r-- | lib/VMCore/PrintModulePass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/PrintModulePass.cpp b/lib/VMCore/PrintModulePass.cpp index 415309e52f..2ee49d2359 100644 --- a/lib/VMCore/PrintModulePass.cpp +++ b/lib/VMCore/PrintModulePass.cpp @@ -58,7 +58,7 @@ namespace { PrintFunctionPass(const std::string &B, raw_ostream *o, bool DS) : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {} - inline ~PrintFunctionPass() { + ~PrintFunctionPass() { if (DeleteStream) delete Out; } |