diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-27 20:03:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-27 20:03:29 +0000 |
commit | d87f8d76e0633141712c32bc5266903e0a7715cd (patch) | |
tree | e3aa41e1c2a1d760765c68a65171fe51ef02e046 /clang/unittests/AST/CommentParser.cpp | |
parent | 7fa030330c5f36d2515792643214e3ac6f352392 (diff) | |
download | bcm5719-llvm-d87f8d76e0633141712c32bc5266903e0a7715cd.tar.gz bcm5719-llvm-d87f8d76e0633141712c32bc5266903e0a7715cd.zip |
Update for LLVM api change.
llvm-svn: 216585
Diffstat (limited to 'clang/unittests/AST/CommentParser.cpp')
-rw-r--r-- | clang/unittests/AST/CommentParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/AST/CommentParser.cpp b/clang/unittests/AST/CommentParser.cpp index ae1410f377f..8c3895bda67 100644 --- a/clang/unittests/AST/CommentParser.cpp +++ b/clang/unittests/AST/CommentParser.cpp @@ -54,8 +54,8 @@ protected: }; FullComment *CommentParserTest::parseString(const char *Source) { - MemoryBuffer *Buf = MemoryBuffer::getMemBuffer(Source); - FileID File = SourceMgr.createFileID(Buf); + std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Source); + FileID File = SourceMgr.createFileID(Buf.release()); SourceLocation Begin = SourceMgr.getLocForStartOfFile(File); Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source)); |