| 350 | } |
| 351 | |
| 352 | TSharedMutableRef TSharedMutableRef::AllocateAligned(size_t size, size_t alignment, TSharedMutableRefAllocateOptions options, TRefCountedTypeCookie tagCookie) |
| 353 | { |
| 354 | auto holder = New<TCustomAlignedAllocationHolder>(size, alignment, options, tagCookie); |
| 355 | auto ref = holder->GetRef(); |
| 356 | return TSharedMutableRef(ref, std::move(holder)); |
| 357 | } |
| 358 | |
| 359 | TSharedMutableRef TSharedMutableRef::FromBlob(TBlob&& blob) |
| 360 | { |
no test coverage detected