| 514 | } |
| 515 | |
| 516 | void testMapMap( |
| 517 | std::function<void(std::map<int32_t, std::map<int32_t, int32_t> > const& _return)> cob, |
| 518 | const int32_t hello) override { |
| 519 | std::map<int32_t, std::map<int32_t, int32_t> > res; |
| 520 | _delegate->testMapMap(res, hello); |
| 521 | cob(res); |
| 522 | } |
| 523 | |
| 524 | void testInsanity( |
| 525 | std::function<void(std::map<UserId, std::map<Numberz::type, Insanity> > const& _return)> cob, |
nothing calls this directly
no test coverage detected