mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 07:28:10 +01:00
clang-tidy: rename var to avoid reserved identifier _
This commit is contained in:
parent
e9c12e47f6
commit
6f853ea24b
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue