mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
Remove unused operator<=>'s that darwin can't generate
It was complaining *a lot*, with dozens of MB of logs.
This commit is contained in:
parent
27eaeebc41
commit
11a6db5993
2 changed files with 0 additions and 9 deletions
|
@ -217,8 +217,6 @@ struct StoreReferences
|
||||||
* iff self is true.
|
* iff self is true.
|
||||||
*/
|
*/
|
||||||
size_t size() const;
|
size_t size() const;
|
||||||
|
|
||||||
auto operator <=>(const StoreReferences &) const = default;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// This matches the additional info that we need for makeTextPath
|
// This matches the additional info that we need for makeTextPath
|
||||||
|
@ -234,8 +232,6 @@ struct TextInfo
|
||||||
* disallowed
|
* disallowed
|
||||||
*/
|
*/
|
||||||
StorePathSet references;
|
StorePathSet references;
|
||||||
|
|
||||||
auto operator <=>(const TextInfo &) const = default;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FixedOutputInfo
|
struct FixedOutputInfo
|
||||||
|
@ -254,8 +250,6 @@ struct FixedOutputInfo
|
||||||
* References to other store objects or this one.
|
* References to other store objects or this one.
|
||||||
*/
|
*/
|
||||||
StoreReferences references;
|
StoreReferences references;
|
||||||
|
|
||||||
auto operator <=>(const FixedOutputInfo &) const = default;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -272,8 +266,6 @@ struct ContentAddressWithReferences
|
||||||
|
|
||||||
Raw raw;
|
Raw raw;
|
||||||
|
|
||||||
auto operator <=>(const ContentAddressWithReferences &) const = default;
|
|
||||||
|
|
||||||
MAKE_WRAPPER_CONSTRUCTOR(ContentAddressWithReferences);
|
MAKE_WRAPPER_CONSTRUCTOR(ContentAddressWithReferences);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -71,7 +71,6 @@ struct StoreReference
|
||||||
Params params;
|
Params params;
|
||||||
|
|
||||||
bool operator==(const StoreReference & rhs) const = default;
|
bool operator==(const StoreReference & rhs) const = default;
|
||||||
auto operator<=>(const StoreReference & rhs) const = default;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render the whole store reference as a URI, including parameters.
|
* Render the whole store reference as a URI, including parameters.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue