Implementation of get_formatted method.
| 68 | |
| 69 | // Implementation of get_formatted method. |
| 70 | std::string curl::cookie_date::get_formatted() NOEXCEPT { |
| 71 | ostringstream stream; |
| 72 | stream<<this->week_day<<", "<<this->day<<"-"<<this->month<<"-"<<this->year; |
| 73 | return stream.str(); |
| 74 | } |
nothing calls this directly
no outgoing calls
no test coverage detected