| 40 | : stats_{stats} {} |
| 41 | |
| 42 | void addRuntimeStat(const std::string& name, const RuntimeCounter& value) |
| 43 | override { |
| 44 | addOperatorRuntimeStats(name, value, stats_); |
| 45 | } |
| 46 | |
| 47 | private: |
| 48 | std::unordered_map<std::string, RuntimeMetric>& stats_; |
nothing calls this directly
no test coverage detected