| 12 | using std::unique_ptr; |
| 13 | |
| 14 | void curl_multi::multi_deleter::operator()(CURLM* ptr) const { |
| 15 | curl_multi_cleanup(ptr); |
| 16 | } |
| 17 | |
| 18 | curl_multi::curl_multi() : curl_multi(CURL_GLOBAL_ALL) {} |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected