| 6986 | inline bool ClientImpl::is_ssl() const { return false; } |
| 6987 | |
| 6988 | inline Result ClientImpl::Get(const std::string &path) { |
| 6989 | return Get(path, Headers(), Progress()); |
| 6990 | } |
| 6991 | |
| 6992 | inline Result ClientImpl::Get(const std::string &path, Progress progress) { |
| 6993 | return Get(path, Headers(), std::move(progress)); |
no test coverage detected