🚧 gucc: add impl of operator== for fs::Partition

This commit is contained in:
Vladislav Nepogodin 2024-07-27 01:04:57 +04:00
parent 06325bbcd9
commit 7caecbfc32
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9

View File

@ -29,6 +29,8 @@ struct Partition final {
std::optional<std::string> luks_mapper_name{};
std::optional<std::string> luks_uuid{};
std::optional<std::string> luks_passphrase{};
constexpr bool operator==(const Partition&) const = default;
};
} // namespace gucc::fs