| 7087 | struct DefaultNameGenerator { |
| 7088 | template <typename T> |
| 7089 | static std::string GetName(int i) { |
| 7090 | return StreamableToString(i); |
| 7091 | } |
| 7092 | }; |
| 7093 | |
| 7094 | template <typename Provided = DefaultNameGenerator> |
nothing calls this directly
no test coverage detected