Implementation of equality operator overload.
| 61 | |
| 62 | // Implementation of equality operator overload. |
| 63 | bool curl_easy::operator==(const curl_easy &easy) const { |
| 64 | return this->curl == easy.curl; |
| 65 | } |
| 66 | |
| 67 | // Implementation of destructor. |
| 68 | curl_easy::~curl_easy() NOEXCEPT { |
nothing calls this directly
no outgoing calls
no test coverage detected