This commit is contained in:
J. Nick Koston 2023-06-09 15:15:53 -05:00
parent 37bda22d66
commit e7cb1fe27d
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;
bool operator==(const command& a) const bool operator==(const command a) const
{ {
return (fixed == a.fixed && data == a.data); return (fixed == a.fixed && data == a.data);
} }