This commit is contained in:
J. Nick Koston 2023-06-09 15:17:35 -05:00
parent 04e712b3b8
commit 53407e58be
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

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