forked from OSchip/llvm-project
[NFC]Convert Class to use member initialization instead of inline.
llvm-svn: 331536
This commit is contained in:
parent
3edc63a579
commit
8668503c8f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue