mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
clang: fix compilation on 3.8
This commit is contained in:
parent
46abe0f315
commit
4babe9076b
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ public:
|
||||||
{
|
{
|
||||||
auto buf = llvm::WritableMemoryBuffer::getNewUninitMemBuffer(cached.size());
|
auto buf = llvm::WritableMemoryBuffer::getNewUninitMemBuffer(cached.size());
|
||||||
cached.read(buf->getBufferStart(), buf->getBufferSize());
|
cached.read(buf->getBufferStart(), buf->getBufferSize());
|
||||||
return buf;
|
return std::move(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue