mirror of
https://github.com/NixOS/nix.git
synced 2025-11-13 22:12:43 +01:00
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;
|
|
|
|
}
|