mirror of
https://github.com/boostorg/build.git
synced 2026-02-23 03:32:12 +00:00
More Windows build warning removal.
This commit is contained in:
@@ -96,9 +96,10 @@ void timestamp_clear( timestamp * const time )
|
||||
|
||||
int timestamp_cmp( timestamp const * const lhs, timestamp const * const rhs )
|
||||
{
|
||||
return lhs->secs == rhs->secs
|
||||
return int(
|
||||
lhs->secs == rhs->secs
|
||||
? lhs->nsecs - rhs->nsecs
|
||||
: lhs->secs - rhs->secs;
|
||||
: lhs->secs - rhs->secs );
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user