This commit is contained in:
J. Nick Koston 2023-06-09 15:21:16 -05:00
parent 1fb5fef247
commit cd318cb388
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

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