git-svn-id: svn://ttmath.org/publicrep/winix/trunk@613 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2010-06-22 13:05:49 +00:00
parent 8d3c7500d8
commit 56075857f2
1 changed files with 8 additions and 1 deletions

View File

@ -521,7 +521,14 @@ void item_tab_dates_equal(Info & i)
ptm1->tm_min == ptm2->tm_min &&
ptm1->tm_sec == ptm2->tm_sec;
i.out << "<!-- equal:(" << (int)i.res << ") -->";
i.out << "<!-- equal:(" << (int)i.res << ") \n";
i.out << ptm1->tm_year << ", " << ptm2->tm_year << ", "
<< ptm1->tm_mon << ", " << ptm2->tm_mon << ", "
<< ptm1->tm_mday << ", " << ptm2->tm_mday << ", "
<< ptm1->tm_hour << ", " << ptm2->tm_hour << ", "
<< ptm1->tm_min << ", " << ptm2->tm_min << ", "
<< ptm1->tm_sec << ", " << ptm2->tm_sec
<< " -->";
}
}