fix
This commit is contained in:
parent
c25d49e32e
commit
a1e3984dfb
|
@ -36,6 +36,10 @@ namespace ratgdo {
|
||||||
struct cmd {
|
struct cmd {
|
||||||
uint64_t fixed;
|
uint64_t fixed;
|
||||||
uint32_t data;
|
uint32_t data;
|
||||||
|
inline bool operator!=(cmd const &other) const
|
||||||
|
{
|
||||||
|
return (fixed != other.fixed || data != other.data);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in New Issue