| 343 | } |
| 344 | |
| 345 | TSharedMutableRef TSharedMutableRef::AllocatePageAligned(size_t size, TSharedMutableRefAllocateOptions options, TRefCountedTypeCookie tagCookie) |
| 346 | { |
| 347 | auto holder = New<TPageAlignedAllocationHolder>(size, options, tagCookie); |
| 348 | auto ref = holder->GetRef(); |
| 349 | return TSharedMutableRef(ref, std::move(holder)); |
| 350 | } |
| 351 | |
| 352 | TSharedMutableRef TSharedMutableRef::AllocateAligned(size_t size, size_t alignment, TSharedMutableRefAllocateOptions options, TRefCountedTypeCookie tagCookie) |
| 353 | { |
nothing calls this directly
no test coverage detected