Merge pull request #8170 from tweag/fix-aarch64-build

Explicitely define `LockFile::operator!=`
This commit is contained in:
Eelco Dolstra
2023-04-11 12:35:23 +02:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
+3
View File
@@ -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);