From 7721deb19b1050c495b6e720433a85c99e169823 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 15:26:45 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ratgdo/ratgdo.h b/components/ratgdo/ratgdo.h index ba5f103..4183802 100644 --- a/components/ratgdo/ratgdo.h +++ b/components/ratgdo/ratgdo.h @@ -36,10 +36,10 @@ namespace ratgdo { struct cmd { uint64_t fixed; uint32_t data; - inline bool operator!=(cmd const &other) const + inline bool operator!=(cmd const& other) const { return (fixed != other.fixed || data != other.data); - } + } }; typedef struct {