From 6f853ea24babbcc959343d6380b2871d71ea19bb Mon Sep 17 00:00:00 2001 From: yoziru Date: Mon, 5 Aug 2024 06:45:58 +0200 Subject: [PATCH] clang-tidy: rename var to avoid reserved identifier `_` --- esphome/components/argo_ulisse/argo_ulisse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/argo_ulisse/argo_ulisse.h b/esphome/components/argo_ulisse/argo_ulisse.h index cab2fdddd0..efaccb4db0 100644 --- a/esphome/components/argo_ulisse/argo_ulisse.h +++ b/esphome/components/argo_ulisse/argo_ulisse.h @@ -128,7 +128,7 @@ union ArgoProtocolWREM3 { }; #pragma pack(pop) -using ArgoIRMessageType = enum _ArgoIRMessageType { +using ArgoIRMessageTypeEnum = enum ArgoIRMessageType { ARGO_IR_MESSAGE_TYPE_AC_CONTROL = 0, ARGO_IR_MESSAGE_TYPE_IFEEL_TEMP_REPORT = 1, ARGO_IR_MESSAGE_TYPE_TIMER_COMMAND = 2, @@ -136,7 +136,7 @@ using ArgoIRMessageType = enum _ArgoIRMessageType { }; // raw byte length depends on message type -using ArgoIRMessageLength = enum _ArgoIRMessageLength { +using ArgoIRMessageLengthEnum = enum ArgoIRMessageLength { ARGO_IR_MESSAGE_LENGTH_AC_CONTROL = 6, ARGO_IR_MESSAGE_LENGTH_IFEEL_TEMP_REPORT = 2, ARGO_IR_MESSAGE_LENGTH_TIMER_COMMAND = 9,