diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-06 20:13:35 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-06 20:13:35 +0000 | 
| commit | 6694ed095d6b27a2c92ec4fd63664fcd88a05749 (patch) | |
| tree | 0633c29bd8350e306f3a24a30f3f6045efd35420 /lib/Frontend/CompilerInvocation.cpp | |
| parent | d5dc75c5cf109efe52b1da32ec44a667389a0f0a (diff) | |
Notes
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
| -rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 15 | 
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index ca4a7655a37df..93bbcc42da1a3 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -60,12 +60,11 @@ CompilerInvocationBase::CompilerInvocationBase()      PreprocessorOpts(new PreprocessorOptions()) {}  CompilerInvocationBase::CompilerInvocationBase(const CompilerInvocationBase &X) -  : RefCountedBase<CompilerInvocation>(), -    LangOpts(new LangOptions(*X.getLangOpts())), -    TargetOpts(new TargetOptions(X.getTargetOpts())), -    DiagnosticOpts(new DiagnosticOptions(X.getDiagnosticOpts())), -    HeaderSearchOpts(new HeaderSearchOptions(X.getHeaderSearchOpts())), -    PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} +    : LangOpts(new LangOptions(*X.getLangOpts())), +      TargetOpts(new TargetOptions(X.getTargetOpts())), +      DiagnosticOpts(new DiagnosticOptions(X.getDiagnosticOpts())), +      HeaderSearchOpts(new HeaderSearchOptions(X.getHeaderSearchOpts())), +      PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {}  CompilerInvocationBase::~CompilerInvocationBase() {} @@ -1214,8 +1213,8 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,      // Add the testing module file extension.      Opts.ModuleFileExtensions.push_back( -      new TestModuleFileExtension(BlockName, MajorVersion, MinorVersion, -                                  Hashed, UserInfo)); +        std::make_shared<TestModuleFileExtension>( +            BlockName, MajorVersion, MinorVersion, Hashed, UserInfo));    }    if (const Arg *A = Args.getLastArg(OPT_code_completion_at)) {  | 
