[NFC]Convert Class to use member initialization instead of inline.

llvm-svn: 331536
This commit is contained in:
Erich Keane 2018-05-04 16:19:53 +00:00
parent 3edc63a579
commit 8668503c8f
1 changed files with 5 additions and 9 deletions

View File

@ -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