// file : libbutl/curl.ixx -*- C++ -*- // license : MIT; see accompanying LICENSE file #include // size_t #include // forward() #include // invalid_argument namespace butl { template inline curl:: curl (I&& in, O&& out, E&& err, method_type m, const std::string& url, A&&... options) : curl ([] (const char* [], std::size_t) {}, std::forward (in), std::forward (out), std::forward (err), m, url, std::forward (options)...) { } }