| 17 | } |
| 18 | |
| 19 | inline constexpr size_t PadToAlignment(size_t bytes, size_t alignment) |
| 20 | { |
| 21 | return bytes + GetPadding(bytes, alignment); |
| 22 | } |
| 23 | |
| 24 | template<std::copy_constructible T> |
| 25 | class CloningUptr : public std::unique_ptr<T> |
no test coverage detected