insert x values; serialize map; deserialize in new map which has a different hash; check equal
| 1405 | // insert x values; serialize map; deserialize in new map which has a |
| 1406 | // different hash; check equal |
| 1407 | struct hash_str_diff { |
| 1408 | std::size_t operator()(const std::string& str) const { |
| 1409 | return std::hash<std::string>()(str) + 123; |
| 1410 | } |
| 1411 | }; |
| 1412 | |
| 1413 | const std::size_t nb_values = 1000; |
| 1414 |
nothing calls this directly
no outgoing calls
no test coverage detected