diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-17 05:04:39 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-17 05:04:39 +0000 |
commit | 35ffe2fc57bcf040f652fba70e8f3ff3fcf95115 (patch) | |
tree | 6068072f4de32bc3c67ab11c16c2ccade6aac0e7 /include/clang/Frontend/CompilerInvocation.h | |
parent | 093333a46c5155ec1bdcb460fe33201338bc3c45 (diff) |
Rename CompilerInvocation::DiagOpts -> DiagnosticOpts for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89037 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CompilerInvocation.h')
-rw-r--r-- | include/clang/Frontend/CompilerInvocation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Frontend/CompilerInvocation.h b/include/clang/Frontend/CompilerInvocation.h index 0cdb32b006..33234ec898 100644 --- a/include/clang/Frontend/CompilerInvocation.h +++ b/include/clang/Frontend/CompilerInvocation.h @@ -42,7 +42,7 @@ class CompilerInvocation { DependencyOutputOptions DependencyOutputOpts; /// Options controlling the diagnostic engine. - DiagnosticOptions DiagOpts; + DiagnosticOptions DiagnosticOpts; /// Options controlling the frontend itself. FrontendOptions FrontendOpts; @@ -86,8 +86,8 @@ public: return DependencyOutputOpts; } - DiagnosticOptions &getDiagnosticOpts() { return DiagOpts; } - const DiagnosticOptions &getDiagnosticOpts() const { return DiagOpts; } + DiagnosticOptions &getDiagnosticOpts() { return DiagnosticOpts; } + const DiagnosticOptions &getDiagnosticOpts() const { return DiagnosticOpts; } HeaderSearchOptions &getHeaderSearchOpts() { return HeaderSearchOpts; } const HeaderSearchOptions &getHeaderSearchOpts() const { |