diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-02-17 19:04:40 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-02-17 19:04:40 +0000 |
commit | d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa (patch) | |
tree | daa7114340d0a564f6f78facdfcf6a2eb3dc633a /clang/lib/Frontend/FrontendActions.cpp | |
parent | e6be5e1c0dd68d8a25145ba9d179eca8943a7e10 (diff) | |
download | bcm5719-llvm-d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa.tar.gz bcm5719-llvm-d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa.zip |
Eliminate the internal command-line option for viewing inheritance in C++ classes, since it's only really worked for the trivial cases anyway due to lame pseudo-parsing of the class name. The viewInheritance() function is still available for use in the debugger, where this is far more useful
llvm-svn: 125762
Diffstat (limited to 'clang/lib/Frontend/FrontendActions.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendActions.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Frontend/FrontendActions.cpp b/clang/lib/Frontend/FrontendActions.cpp index e454321c0cc..d8e7d290450 100644 --- a/clang/lib/Frontend/FrontendActions.cpp +++ b/clang/lib/Frontend/FrontendActions.cpp @@ -119,11 +119,6 @@ bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI, return false; } -ASTConsumer *InheritanceViewAction::CreateASTConsumer(CompilerInstance &CI, - llvm::StringRef InFile) { - return CreateInheritanceViewer(CI.getFrontendOpts().ViewClassInheritance); -} - ASTConsumer *SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI, llvm::StringRef InFile) { return new ASTConsumer(); |