| 8 | namespace NBench { |
| 9 | namespace NCpu { |
| 10 | struct TParams { |
| 11 | inline size_t Iterations() const noexcept { |
| 12 | return Iterations_; |
| 13 | } |
| 14 | |
| 15 | const size_t Iterations_; |
| 16 | }; |
| 17 | |
| 18 | using TUserFunc = void(TParams&); |
| 19 |
no outgoing calls
no test coverage detected