When no allocator passed to the coroutine:
| 647 | |
| 648 | // When no allocator passed to the coroutine: |
| 649 | static void* operator new(size_t __bytes) |
| 650 | { |
| 651 | return __promise::operator new(__bytes, std::allocator_arg, std::allocator<std::byte>{}); |
| 652 | } |
| 653 | |
| 654 | static void operator delete(void* __ptr, size_t __bytes) noexcept |
| 655 | { |