mirror of
https://github.com/august-alt/gpui.git
synced 2025-03-14 12:58:39 +03:00
fix: incorect operator==
This commit is contained in:
parent
9b423b1abe
commit
e79e41b385
@ -70,7 +70,7 @@ typedef struct PolicyInstruction
|
||||
{
|
||||
inline bool operator==(const PolicyInstruction &other) const
|
||||
{
|
||||
return key == other.key && key == other.key && value == other.value && data == other.data;
|
||||
return key == other.key && value == other.value && type == other.type && data == other.data;
|
||||
}
|
||||
inline bool operator!=(const PolicyInstruction &other) const
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user