From 53407e58beb80d03a9aa0453d7f45bd0051360f1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 15:17:35 -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 dd5b042..53f2880 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; - inline bool operator!=(const command &a) const + inline bool operator!=(command a) { return (fixed != a.fixed || data != a.data); }