Merge pull request #8170 from tweag/fix-aarch64-build
Explicitely define `LockFile::operator!=`
This commit is contained in:
@@ -73,6 +73,9 @@ struct LockFile
|
||||
std::optional<FlakeRef> isUnlocked() const;
|
||||
|
||||
bool operator ==(const LockFile & other) const;
|
||||
// Needed for old gcc versions that don't synthesize it (like gcc 8.2.2
|
||||
// that is still the default on aarch64-linux)
|
||||
bool operator !=(const LockFile & other) const;
|
||||
|
||||
std::shared_ptr<Node> findInput(const InputPath & path);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user