* Rounds up the number to the next closest number * as per the alignment. */
| 119 | * as per the alignment. |
| 120 | */ |
| 121 | constexpr static size_t align_up(size_t n) noexcept |
| 122 | { |
| 123 | return (n + (alignment - 1)) & ~(alignment - 1); |
| 124 | } |
| 125 | |
| 126 | private: // data members |
| 127 | /// Storage |
nothing calls this directly
no outgoing calls
no test coverage detected