| 462 | } |
| 463 | |
| 464 | void testStruct(std::function<void(Xtruct const& _return)> cob, const Xtruct& thing) override { |
| 465 | Xtruct res; |
| 466 | _delegate->testStruct(res, thing); |
| 467 | cob(res); |
| 468 | } |
| 469 | |
| 470 | void testNest(std::function<void(Xtruct2 const& _return)> cob, const Xtruct2& thing) override { |
| 471 | Xtruct2 res; |
nothing calls this directly
no test coverage detected