| 208 | } |
| 209 | |
| 210 | static std::string Basename(const std::string& path) { |
| 211 | const std::string::size_type slash = path.find_last_of('/'); |
| 212 | return slash == std::string::npos ? path : path.substr(slash + 1); |
| 213 | } |
| 214 | |
| 215 | static void DebugLog(const std::string& message) { |
| 216 | (void) message; |
nothing calls this directly
no outgoing calls
no test coverage detected