| 149 | |
| 150 | template <size_t Alignment> |
| 151 | struct alignas(Alignment) aligned_buffer<0, Alignment> { |
| 152 | static constexpr size_t s_size {0}; |
| 153 | |
| 154 | aligned_buffer() {} |
| 155 | }; |
| 156 | |
| 157 | TEST_CASE("Check alignment", "[alignment]") { |
| 158 | using buff40_64_a = aligned_buffer_aggregate<40, 64>; |
nothing calls this directly
no outgoing calls
no test coverage detected