| 21 | |
| 22 | struct BasicTypeSerializable { |
| 23 | BasicTypeSerializable() = default; |
| 24 | BasicTypeSerializable(std::mt19937_64& gen) |
| 25 | : i(gen()), s {::std::to_string(gen())}, v(gen() % 10, gen()) {} |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected