Skip to content
Snippets Groups Projects
Verified Commit 3d6555e8 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Remove CURLUcode conversions for now since that requires curl 7.80

parent 2cbf2de8
No related branches found
No related tags found
No related merge requests found
Pipeline #2134 passed
......@@ -7,7 +7,7 @@
namespace coeurl {
const char* to_string(CURLcode c);
const char* to_string(CURLUcode c);
//const char* to_string(CURLUcode c);
const char* to_string(CURLMcode c);
const char* to_string(CURLSHcode c);
};
......
......@@ -4,9 +4,9 @@ const char* coeurl::to_string(CURLcode c) {
return curl_easy_strerror(c);
}
const char* coeurl::to_string(CURLUcode c) {
return curl_url_strerror(c);
}
//const char* coeurl::to_string(CURLUcode c) {
// return curl_url_strerror(c);
//}
const char* coeurl::to_string(CURLMcode c) {
return curl_multi_strerror(c);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment