| 86 | template <typename T> struct PSRamDeleter { |
| 87 | PSRamDeleter() FL_NOEXCEPT = default; |
| 88 | void operator()(T *ptr) FL_NOEXCEPT { |
| 89 | if (ptr) { |
| 90 | PSRamDeallocate(ptr); |
| 91 | } |
| 92 | } |
| 93 | }; |
| 94 | |
| 95 | void* Malloc(fl::size size) FL_NOEXCEPT; |
nothing calls this directly
no test coverage detected