This commit is contained in:
J. Nick Koston 2023-06-09 15:22:52 -05:00
parent c25d49e32e
commit a1e3984dfb
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -36,6 +36,10 @@ namespace ratgdo {
struct cmd {
uint64_t fixed;
uint32_t data;
inline bool operator!=(cmd const &other) const
{
return (fixed != other.fixed || data != other.data);
}
};
typedef struct {