windows stupidity

This commit is contained in:
David Rose 2003-01-29 20:43:30 +00:00
parent 0f5255b827
commit ea84366328

View File

@ -280,7 +280,9 @@ input(istream &in) {
return false; return false;
} }
(*this) = HTTPDate(date); // Visual C++ has problems with "(*this) = HTTPDate(date)".
HTTPDate new_date(date);
(*this) = new_date;
return is_valid(); return is_valid();
} }