mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -04:00
windows stupidity
This commit is contained in:
parent
0f5255b827
commit
ea84366328
@ -280,7 +280,9 @@ input(istream &in) {
|
||||
return false;
|
||||
}
|
||||
|
||||
(*this) = HTTPDate(date);
|
||||
// Visual C++ has problems with "(*this) = HTTPDate(date)".
|
||||
HTTPDate new_date(date);
|
||||
(*this) = new_date;
|
||||
return is_valid();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user