| 95 | |
| 96 | DALI_NO_EXEC_CHECK |
| 97 | DALI_HOST_DEV static void destroy(T *ptr, size_t count) noexcept { |
| 98 | for (size_t i = 0; i < count; i++) { |
| 99 | ptr[i].~T(); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | DALI_NO_EXEC_CHECK |
| 104 | DALI_HOST_DEV static void copy(T *dst, const T *src, size_t count) { |
no outgoing calls
no test coverage detected