aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/CompilerInstance.h
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2011-01-26 00:18:08 +0000
committerJeffrey Yasskin <jyasskin@google.com>2011-01-26 00:18:08 +0000
commit61d2ab0fa1827c43e5f9023a26c36102cd549f82 (patch)
tree594bfb0727795b02f892f3d33ae93ba07cec9e77 /include/clang/Frontend/CompilerInstance.h
parenteaf969bf4b657f0c4577f38a39f8c4ef1d9272fc (diff)
Remove CompilerInstance::getOutputFileList because it is unimplemented and unused.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124256 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CompilerInstance.h')
-rw-r--r--include/clang/Frontend/CompilerInstance.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/Frontend/CompilerInstance.h b/include/clang/Frontend/CompilerInstance.h
index 5f47aa601e..67d6dd81fe 100644
--- a/include/clang/Frontend/CompilerInstance.h
+++ b/include/clang/Frontend/CompilerInstance.h
@@ -454,11 +454,6 @@ public:
/// @name Output Files
/// {
- /// getOutputFileList - Get the list of (path, output stream) pairs of output
- /// files; the path may be empty but the stream will always be non-null.
- const std::list< std::pair<std::string,
- llvm::raw_ostream*> > &getOutputFileList() const;
-
/// addOutputFile - Add an output file onto the list of tracked output files.
///
/// \param OutFile - The output file info.