| 54 | : stats_{stats} {} |
| 55 | |
| 56 | void addRuntimeStat(const std::string& name, const RuntimeCounter& value) |
| 57 | override { |
| 58 | addOperatorRuntimeStats(name, value, stats_); |
| 59 | } |
| 60 | |
| 61 | private: |
| 62 | std::unordered_map<std::string, RuntimeMetric>& stats_; |
nothing calls this directly
no test coverage detected