From e7cb1fe27d7de67f9302aba72c3e1ec8bd2a0dab Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 15:15:53 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ratgdo/ratgdo.h b/components/ratgdo/ratgdo.h index 70c54eb..a90642e 100644 --- a/components/ratgdo/ratgdo.h +++ b/components/ratgdo/ratgdo.h @@ -36,7 +36,7 @@ namespace ratgdo { typedef struct { uint64_t fixed; uint32_t data; - bool operator==(const command& a) const + bool operator==(const command a) const { return (fixed == a.fixed && data == a.data); }