| 149 | } |
| 150 | } |
| 151 | void alloc_first_seg() { |
| 152 | Y_ASSERT(capacity() == 0); |
| 153 | check_capacity(segment_size); |
| 154 | Y_ASSERT(capacity() == segment_size * sizeof(T)); |
| 155 | } |
| 156 | }; |
| 157 | |
| 158 | class segmented_string_pool: public segmented_pool<char> { |
nothing calls this directly
no test coverage detected