mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 06:52:43 +01:00
Remove comparator.hh and switch to <=> in a bunch of places
Known behavior changes: - `MemorySourceAccessor`'s comparison operators no longer forget to compare the `SourceAccessor` base class. Progress on #10832 What remains for that issue is hopefully much easier!
This commit is contained in:
parent
2a95a2d780
commit
bc83b9dc1f
49 changed files with 300 additions and 271 deletions
|
|
@ -41,7 +41,7 @@ Hash::Hash(HashAlgorithm algo) : algo(algo)
|
|||
}
|
||||
|
||||
|
||||
bool Hash::operator == (const Hash & h2) const
|
||||
bool Hash::operator == (const Hash & h2) const noexcept
|
||||
{
|
||||
if (hashSize != h2.hashSize) return false;
|
||||
for (unsigned int i = 0; i < hashSize; i++)
|
||||
|
|
@ -50,7 +50,7 @@ bool Hash::operator == (const Hash & h2) const
|
|||
}
|
||||
|
||||
|
||||
std::strong_ordering Hash::operator <=> (const Hash & h) const
|
||||
std::strong_ordering Hash::operator <=> (const Hash & h) const noexcept
|
||||
{
|
||||
if (auto cmp = hashSize <=> h.hashSize; cmp != 0) return cmp;
|
||||
for (unsigned int i = 0; i < hashSize; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue