| 321 | CURLM *get_curl() const; |
| 322 | private: |
| 323 | struct multi_deleter { |
| 324 | void operator()(CURLM* ptr) const; |
| 325 | }; |
| 326 | |
| 327 | using multi_ptr = std::unique_ptr<CURLM, multi_deleter>; |
| 328 |
nothing calls this directly
no outgoing calls
no test coverage detected