The default argument to the template below for the case when the user does not provide a name generator.
| 7085 | // The default argument to the template below for the case when the user does |
| 7086 | // not provide a name generator. |
| 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> |
| 7095 | struct NameGeneratorSelector { |
nothing calls this directly
no outgoing calls
no test coverage detected