| 164 | } |
| 165 | |
| 166 | std::size_t |
| 167 | Arena::align (std::size_t s) |
| 168 | { |
| 169 | return amrex::aligned_size(align_size, s); |
| 170 | } |
| 171 | |
| 172 | void* |
| 173 | Arena::allocate_system (std::size_t nbytes) // NOLINT(readability-make-member-function-const) |
nothing calls this directly
no test coverage detected