| 1091 | |
| 1092 | // Implementation of overloaded add method. |
| 1093 | template<typename Iterator> void curl_easy::add(Iterator begin, const Iterator end) { |
| 1094 | for (; begin != end; ++begin) { |
| 1095 | this->add(*begin); |
| 1096 | } |
| 1097 | } |
| 1098 | |
| 1099 | // Implementation of overloaded add method. |
| 1100 | template <CURLoption Opt> void curl_easy::add(detail::Option_type<Opt> val) { |
no test coverage detected