| 6598 | }; |
| 6599 | |
| 6600 | struct new_table { |
| 6601 | int sequence_hint = 0; |
| 6602 | int map_hint = 0; |
| 6603 | |
| 6604 | new_table() = default; |
| 6605 | new_table(const new_table&) = default; |
| 6606 | new_table(new_table&&) = default; |
| 6607 | new_table& operator=(const new_table&) = default; |
| 6608 | new_table& operator=(new_table&&) = default; |
| 6609 | |
| 6610 | new_table(int sequence_hint, int map_hint = 0) : sequence_hint(sequence_hint), map_hint(map_hint) { |
| 6611 | } |
| 6612 | }; |
| 6613 | |
| 6614 | const new_table create = {}; |
| 6615 |
no outgoing calls
no test coverage detected