* Returns the error code if there is one. Returns CURLE_OK if none has been set. */
| 157 | * Returns the error code if there is one. Returns CURLE_OK if none has been set. |
| 158 | */ |
| 159 | inline CURLcode get_code() const { |
| 160 | return code; |
| 161 | } |
| 162 | private: |
| 163 | CURLcode code; |
| 164 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected