diff options
Diffstat (limited to 'Public/Developer/System.Core/Sources/Heap.cxx')
| -rw-r--r-- | Public/Developer/System.Core/Sources/Heap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Public/Developer/System.Core/Sources/Heap.cxx b/Public/Developer/System.Core/Sources/Heap.cxx index 18106f41..370693cc 100644 --- a/Public/Developer/System.Core/Sources/Heap.cxx +++ b/Public/Developer/System.Core/Sources/Heap.cxx @@ -65,17 +65,17 @@ HeapInterface::HeapInterface() { HeapInterface::~HeapInterface() { delete this; } -void HeapInterface::Delete(PtrHeapType me) noexcept { +void HeapInterface::Delete(HeapRef me) noexcept { CA_MUST_PASS(me); HcFreeProcessHeap(kApplicationObject, me); } -SizeType HeapInterface::Size(PtrHeapType me) noexcept { +SizeType HeapInterface::Size(HeapRef me) noexcept { CA_MUST_PASS(me); return HcProcessHeapSize(kApplicationObject, me); } -PtrHeapType HeapInterface::New(const SizeType& sz, const DWordType flags) { +HeapRef HeapInterface::New(const SizeType& sz, const DWordType flags) { SizeType _sz = sz; if (!_sz) ++_sz; |
