Perhaps this should use non-static data member initializers instead? On Fri, May 4, 2018 at 9:23 AM Erich Keane via cfe-commits < cfe-commits@lists.llvm.org> wrote:
> Author: erichkeane > Date: Fri May 4 09:19:53 2018 > New Revision: 331536 > > URL: http://llvm.org/viewvc/llvm-project?rev=331536&view=rev > Log: > [NFC]Convert Class to use member initialization instead of inline. > > Modified: > cfe/trunk/include/clang/Frontend/DependencyOutputOptions.h > > Modified: cfe/trunk/include/clang/Frontend/DependencyOutputOptions.h > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/DependencyOutputOptions.h?rev=331536&r1=331535&r2=331536&view=diff > > ============================================================================== > --- cfe/trunk/include/clang/Frontend/DependencyOutputOptions.h (original) > +++ cfe/trunk/include/clang/Frontend/DependencyOutputOptions.h Fri May 4 > 09:19:53 2018 > @@ -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 > > > _______________________________________________ > cfe-commits mailing list > cfe-commits@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits >
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits