| 179 | |
| 180 | template<class data_t> |
| 181 | static inline data_t* aligned_random(int64_t len) { |
| 182 | data_t* ptr = aligned_alloc<data_t>(len); |
| 183 | rand_inplace(ptr, len); |
| 184 | return ptr; |
| 185 | } |
| 186 | |
| 187 | #endif |
nothing calls this directly
no test coverage detected