diff options
| author | David Blaikie <dblaikie@gmail.com> | 2014-07-17 20:40:36 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2014-07-17 20:40:36 +0000 |
| commit | a51666a4d624a745df90e1c84777fb7a644ff80b (patch) | |
| tree | 27a6715358a552387f3e0fd041de88a3095d0a35 /clang/unittests/AST/EvaluateAsRValueTest.cpp | |
| parent | fa59e620126114e35477299dbb726c4e85195276 (diff) | |
| download | bcm5719-llvm-a51666a4d624a745df90e1c84777fb7a644ff80b.tar.gz bcm5719-llvm-a51666a4d624a745df90e1c84777fb7a644ff80b.zip | |
unique_ptr-ify ownership of ASTConsumers
(after fixing a bug in MultiplexConsumer I noticed the ownership of the
nested consumers was implemented with raw pointers - so this fixes
that... and follows the source back to its origin pushing unique_ptr
ownership up through there too)
llvm-svn: 213307
Diffstat (limited to 'clang/unittests/AST/EvaluateAsRValueTest.cpp')
| -rw-r--r-- | clang/unittests/AST/EvaluateAsRValueTest.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/unittests/AST/EvaluateAsRValueTest.cpp b/clang/unittests/AST/EvaluateAsRValueTest.cpp index 9120c936ed1..b5f9b32740f 100644 --- a/clang/unittests/AST/EvaluateAsRValueTest.cpp +++ b/clang/unittests/AST/EvaluateAsRValueTest.cpp @@ -59,9 +59,10 @@ class EvaluateConstantInitializersVisitor class EvaluateConstantInitializersAction : public clang::ASTFrontendAction { public: - clang::ASTConsumer *CreateASTConsumer(clang::CompilerInstance &Compiler, - llvm::StringRef FilePath) override { - return new Consumer; + std::unique_ptr<clang::ASTConsumer> + CreateASTConsumer(clang::CompilerInstance &Compiler, + llvm::StringRef FilePath) override { + return llvm::make_unique<Consumer>(); } private: |

