From b5703523f907fc30bab50789c937e377ea4fbca1 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 13 Dec 2025 01:44:25 +0900 Subject: [PATCH] nolint for the macros that have to be macros --- esphome/core/buildinfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/core/buildinfo.cpp b/esphome/core/buildinfo.cpp index 4947f7fe7f6..2913b1f898c 100644 --- a/esphome/core/buildinfo.cpp +++ b/esphome/core/buildinfo.cpp @@ -27,9 +27,9 @@ #endif #if defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ == 8 -#define WS 64 +#define WS 64 // NOLINT #else -#define WS 32 +#define WS 32 // NOLINT #define USE_32BIT #endif