| 10449 | template <class ParamType> |
| 10450 | struct TestParamInfo { |
| 10451 | TestParamInfo(const ParamType& a_param, size_t an_index) : |
| 10452 | param(a_param), |
| 10453 | index(an_index) {} |
| 10454 | ParamType param; |
| 10455 | size_t index; |
| 10456 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected