| 274 | |
| 275 | template <size_t N> |
| 276 | std::string random_binary_string(std::mt19937 & gen) |
| 277 | { |
| 278 | std::string s(N, ' '); |
| 279 | for(auto & c : s ) |
| 280 | c = std::uniform_int_distribution<char>('0', '1')(gen); |
| 281 | return s; |
| 282 | } |
| 283 | |
| 284 | struct PoDStructCereal |
| 285 | { |
nothing calls this directly
no outgoing calls
no test coverage detected