| 123 | return fl::aligned_alloc(align, size); |
| 124 | } |
| 125 | static void operator delete(void* ptr) { |
| 126 | fl::aligned_free(ptr); |
| 127 | } |
| 128 | |
| 129 | // Get pointer to the inline object storage |
| 130 | T* get_object() FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected