diff options
| author | Erich Keane <erich.keane@intel.com> | 2018-05-04 16:19:53 +0000 |
|---|---|---|
| committer | Erich Keane <erich.keane@intel.com> | 2018-05-04 16:19:53 +0000 |
| commit | 8668503c8f60f0238d9bc699eeead01a1d78e61d (patch) | |
| tree | 28d0288b8af736c961093f6a551941b6c579bc8f | |
| parent | 3edc63a579b462ad6ce0d82395042f0d7c7f28d6 (diff) | |
| download | bcm5719-llvm-8668503c8f60f0238d9bc699eeead01a1d78e61d.tar.gz bcm5719-llvm-8668503c8f60f0238d9bc699eeead01a1d78e61d.zip | |
[NFC]Convert Class to use member initialization instead of inline.
llvm-svn: 331536
| -rw-r--r-- | clang/include/clang/Frontend/DependencyOutputOptions.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/clang/include/clang/Frontend/DependencyOutputOptions.h b/clang/include/clang/Frontend/DependencyOutputOptions.h index ccd8efa67c9..dab4e8b2941 100644 --- a/clang/include/clang/Frontend/DependencyOutputOptions.h +++ b/clang/include/clang/Frontend/DependencyOutputOptions.h @@ -65,15 +65,11 @@ public: std::string ModuleDependencyOutputDir; public: - DependencyOutputOptions() { - IncludeSystemHeaders = 0; - ShowHeaderIncludes = 0; - UsePhonyTargets = 0; - AddMissingHeaderDeps = 0; - IncludeModuleFiles = 0; - ShowIncludesDest = ShowIncludesDestination::None; - OutputFormat = DependencyOutputFormat::Make; - } + DependencyOutputOptions() + : IncludeSystemHeaders(0), ShowHeaderIncludes(0), UsePhonyTargets(0), + AddMissingHeaderDeps(0), IncludeModuleFiles(0), + ShowIncludesDest(ShowIncludesDestination::None), + OutputFormat(DependencyOutputFormat::Make) {} }; } // end namespace clang |

