fix
This commit is contained in:
parent
53407e58be
commit
8f64541823
|
@ -36,9 +36,9 @@ namespace ratgdo {
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint64_t fixed;
|
uint64_t fixed;
|
||||||
uint32_t data;
|
uint32_t data;
|
||||||
inline bool operator!=(command a)
|
inline bool operator!=(const command& cmd) const
|
||||||
{
|
{
|
||||||
return (fixed != a.fixed || data != a.data);
|
return (fixed != cmd.fixed || data != cmd.data);
|
||||||
}
|
}
|
||||||
} command;
|
} command;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue