mirror of
https://github.com/NixOS/nix
synced 2025-07-06 00:51:47 +02:00
Work around clang/libc++ issue
This commit is contained in:
parent
d2e1d4916a
commit
b167e2c415
3 changed files with 10 additions and 4 deletions
|
@ -45,7 +45,10 @@ struct Explicit {
|
|||
|
||||
bool operator ==(const Explicit<T> & other) const = default;
|
||||
|
||||
auto operator <=>(const Explicit<T> & other) const = default;
|
||||
bool operator <(const Explicit<T> & other) const
|
||||
{
|
||||
return t < other.t;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue