freebsd-ports/graphics/libx3dtk/files/patch-examples-infoReader-Date.cpp
Martin Wilke 33c56fba95 - Unbreak for 6.2
PR:		ports/103752
Submitted by:	German Tischler <tanis(at)gaspode.franken.de> (maintainer)
2006-09-30 07:47:25 +00:00

19 lines
558 B
C++

*** examples/infoReader/Date.cpp.orig Thu Sep 28 13:23:25 2006
--- examples/infoReader/Date.cpp Thu Sep 28 13:23:36 2006
***************
*** 39,45 ****
return "\"" + m + "/" + d + "/" + y + "\"";
}
! std::ostream& X3DTK::operator<<(std::ostream& o, const Date &date)
{
return o << date.month << "/" << date.day << "/" << date.year;
}
--- 39,45 ----
return "\"" + m + "/" + d + "/" + y + "\"";
}
! std::ostream& operator<<(std::ostream& o, const Date &date)
{
return o << date.month << "/" << date.day << "/" << date.year;
}