windows regression fixes - 7.05

[SVN r23357]
This commit is contained in:
Jeff Garland
2004-07-06 01:46:40 +00:00
parent 6fede05b10
commit e263e5f2fd

View File

@@ -41,6 +41,7 @@ int main(){
ws = to_sql_wstring(dp.begin());
check("date to_sql_string", ws == res);
wss.str(L"");
#ifndef BOOST_NO_STD_ITERATOR_TRAITS
{
res = L"2003-Aug-21";
std::wstringstream wss(L"2003-Aug-21");
@@ -48,6 +49,9 @@ int main(){
wss >> testdate;
check("date operator>>", to_simple_wstring(testdate) == res);
}
#else
check("no date operator>> for this compiler", false);
#endif
// greg_month
wss << dp.begin().month();