mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
bc83b9dc1f
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!
8 lines
217 B
C++
8 lines
217 B
C++
#include "build-result.hh"
|
|
|
|
namespace nix {
|
|
|
|
bool BuildResult::operator==(const BuildResult &) const noexcept = default;
|
|
std::strong_ordering BuildResult::operator<=>(const BuildResult &) const noexcept = default;
|
|
|
|
}
|