mirror of
https://github.com/HowardHinnant/date.git
synced 2024-12-27 16:41:04 +08:00
When comparing sys_info in test...
only compare whether the saves are equal to 0 and not their actual values. This allows one to compare against the binary database which does not contain actual values of save.
This commit is contained in:
parent
b49a7575eb
commit
052eebaf00
@ -29,10 +29,11 @@
|
|||||||
bool
|
bool
|
||||||
is_equal(date::sys_info const& x, date::sys_info const& y)
|
is_equal(date::sys_info const& x, date::sys_info const& y)
|
||||||
{
|
{
|
||||||
|
using namespace std::chrono;
|
||||||
return x.begin == y.begin &&
|
return x.begin == y.begin &&
|
||||||
x.end == y.end &&
|
x.end == y.end &&
|
||||||
x.offset == y.offset &&
|
x.offset == y.offset &&
|
||||||
x.save == y.save &&
|
(x.save == minutes{0}) == (y.save == minutes{0}) &&
|
||||||
x.abbrev == y.abbrev;
|
x.abbrev == y.abbrev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user