| 29 | |
| 30 | |
| 31 | template <typename T> std::string GetRouteKey(T t) { |
| 32 | std::ostringstream oss; |
| 33 | oss << t; |
| 34 | return oss.str(); |
| 35 | } |
| 36 | |
| 37 | template<typename T, typename... Args> std::string GetRouteKey(T t, Args... args) { |
| 38 | std::ostringstream oss; |
no outgoing calls
no test coverage detected