This commit is contained in:
J. Nick Koston 2023-06-09 15:26:45 -05:00
parent 13adfda0be
commit 7721deb19b
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +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 inline bool operator!=(cmd const& other) const
{ {
return (fixed != other.fixed || data != other.data); return (fixed != other.fixed || data != other.data);
} }
}; };
typedef struct { typedef struct {