util/AllocatedArray: add method release()
This commit is contained in:
parent
53ffcf455c
commit
ad00926e1b
@ -76,7 +76,7 @@ public:
|
|||||||
:AllocatedArray(other.buffer) {}
|
:AllocatedArray(other.buffer) {}
|
||||||
|
|
||||||
AllocatedArray(AllocatedArray &&other) noexcept
|
AllocatedArray(AllocatedArray &&other) noexcept
|
||||||
:buffer(std::exchange(other.buffer, nullptr)) {}
|
:buffer(other.release()) {}
|
||||||
|
|
||||||
~AllocatedArray() noexcept {
|
~AllocatedArray() noexcept {
|
||||||
delete[] buffer.data;
|
delete[] buffer.data;
|
||||||
@ -259,6 +259,13 @@ public:
|
|||||||
|
|
||||||
buffer.size = _size;
|
buffer.size = _size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Give up ownership of the allocated buffer and return it.
|
||||||
|
*/
|
||||||
|
Buffer release() noexcept {
|
||||||
|
return std::exchange(buffer, nullptr);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user