| 33 | namespace curl { |
| 34 | template <class V> |
| 35 | inline curl_pair<CURLoption, V> |
| 36 | make_option(const CURLoption opt, const V &val) |
| 37 | { |
| 38 | return curl_pair<CURLoption, V>(opt, val); |
| 39 | } |
| 40 | |
| 41 | template <class V> |
| 42 | inline curl_pair<CURLformoption, V> |
nothing calls this directly
no outgoing calls
no test coverage detected