Bugs item #1281324, was opened at 2005-09-03 17:33
Message generated for change (Comment added) made by redi
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107869&aid=1281324&group_id=7869
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Jonathan Wakely (redi)
Assigned to: Jonathan Wakely (redi)
Summary: Time::compare() ignores seconds
Initial Comment:
short int time_base::compare(const time_base* other) const
{
if (hour != other->hour)
return hour - other->hour;
if (minute != other->minute)
return minute - other->minute;
return minute - other->minute;
}
Compares minutes twice. Fix pending.
----------------------------------------------------------------------
>Comment By: Jonathan Wakely (redi)
Date: 2005-09-03 17:40
Message:
Logged In: YES
user_id=426241
Fixed in CVS
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107869&aid=1281324&group_id=7869
|