| 9 | |
| 10 | struct tbl_functor { |
| 11 | explicit tbl_functor(vector<pair<int, string> > &vec_) : vec(vec_) { } |
| 12 | |
| 13 | void operator() ( int id, string name) { |
| 14 | vec.push_back(make_pair(id, move(name))); |
nothing calls this directly
no outgoing calls
no test coverage detected