Implementation of overloaded constructor.
| 139 | |
| 140 | // Implementation of overloaded constructor. |
| 141 | inline curl_share::curl_share(const long flag) : curl_interface(flag) { |
| 142 | initialize_curl_share(); |
| 143 | } |
| 144 | |
| 145 | // Implementation of copy constructor. |
| 146 | inline curl_share::curl_share(const curl_share &share) : curl_interface() { |
nothing calls this directly
no outgoing calls
no test coverage detected