| 546 | struct VectorReusableSerializable { |
| 547 | using allocator_type = SwissAllocator<>; |
| 548 | VectorReusableSerializable(allocator_type allocator) |
| 549 | : vs {allocator}, ss {allocator} {} |
| 550 | |
| 551 | SwissVector<SwissString> vs; |
| 552 | SwissVector<BasicReusableSerializable> ss; |
nothing calls this directly
no outgoing calls
no test coverage detected