Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions backend/flipperzero/deviceinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ struct HardwareInfo {

// Needed in order to work with QVariant
bool operator !=(const HardwareInfo &other) const { Q_UNUSED(other) return true; }
bool operator ==(const HardwareInfo &other) const { Q_UNUSED(other) return false; }
};

struct SoftwareInfo {
Expand All @@ -50,6 +51,7 @@ struct SoftwareInfo {

// Needed in order to work with QVariant
bool operator !=(const SoftwareInfo &other) const { Q_UNUSED(other) return true; }
bool operator ==(const SoftwareInfo &other) const { Q_UNUSED(other) return false; }
};

struct StorageInfo {
Expand All @@ -67,6 +69,7 @@ struct StorageInfo {

// Needed in order to work with QVariant
bool operator !=(const StorageInfo &other) const { Q_UNUSED(other) return true; }
bool operator ==(const StorageInfo &other) const { Q_UNUSED(other) return false; }
};

struct ProtobufInfo {
Expand Down