| 15 | std::unordered_map<int32_t, int32_t> imap; |
| 16 | |
| 17 | MapRecord(std::unordered_map<std::string, int64_t> map_, |
| 18 | std::unordered_map<int32_t, int32_t> imap_) |
| 19 | : map(std::move(map_)) |
| 20 | , imap(std::move(imap_)) |
| 21 | {} |
| 22 | }; |
| 23 | |
| 24 | } // namespace testsuite |
nothing calls this directly
no outgoing calls
no test coverage detected