| 80 | template <size_t SIZE, size_t ALIGNMENT> |
| 81 | struct aligned_storage { |
| 82 | struct alignas(ALIGNMENT) type { |
| 83 | unsigned char data[SIZE]; |
| 84 | }; |
| 85 | }; |
| 86 | |
| 87 | TypeInfos* TypeInfos::get() { |
no outgoing calls
no test coverage detected
searching dependent graphs…