| 202 | } |
| 203 | |
| 204 | static void CheckAv(int errnum, const std::string& context) { |
| 205 | if (errnum < 0) { |
| 206 | throw std::runtime_error(context + ": " + AvError(errnum)); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | static std::string Basename(const std::string& path) { |
| 211 | const std::string::size_type slash = path.find_last_of('/'); |
no test coverage detected