Implementation of copy constructor.
| 126 | |
| 127 | // Implementation of copy constructor. |
| 128 | inline curl_form::curl_form(const curl_form &form) : form_post(nullptr), last_ptr(nullptr) { |
| 129 | *this = form; |
| 130 | } |
| 131 | |
| 132 | // Implementation of utility function to check if a pointer points to null. |
| 133 | template<typename T> inline void curl_form::is_null(const T *ptr) const { |
nothing calls this directly
no outgoing calls
no test coverage detected