1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add const version of OwningBinary::getBinary

llvm-svn: 220231
This commit is contained in:
Alexey Samsonov 2014-10-20 20:32:47 +00:00
parent d21561e4bc
commit f5f3d8fbea

View File

@ -140,6 +140,7 @@ public:
OwningBinary<T> &operator=(OwningBinary<T> &&Other);
std::unique_ptr<T> &getBinary();
const std::unique_ptr<T> &getBinary() const;
std::unique_ptr<MemoryBuffer> &getBuffer();
};
@ -165,6 +166,11 @@ template <typename T> std::unique_ptr<T> &OwningBinary<T>::getBinary() {
return Bin;
}
template <typename T>
const std::unique_ptr<T> &OwningBinary<T>::getBinary() const {
return Bin;
}
template <typename T>
std::unique_ptr<MemoryBuffer> &OwningBinary<T>::getBuffer() {
return Buf;