From 2a3c451fd3e251b7e8a860bc3cc408eee956a6b3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 13 Mar 2026 13:27:39 -1000 Subject: [PATCH] tidy --- esphome/core/helpers.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/esphome/core/helpers.h b/esphome/core/helpers.h index d2e739ba5a..2267208752 100644 --- a/esphome/core/helpers.h +++ b/esphome/core/helpers.h @@ -1946,9 +1946,10 @@ class LwIPLock { LwIPLock(); ~LwIPLock(); #else - // No lwIP core locking — inline no-ops - LwIPLock() = default; - ~LwIPLock() = default; + // No lwIP core locking — inline no-ops (empty bodies instead of = default + // to prevent clang-tidy unused-variable warnings at call sites) + LwIPLock() {} + ~LwIPLock() {} #endif };