From 3a72deddf925a9397e5db362e3e2502197e748a7 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 21 Apr 2026 11:26:45 +0200 Subject: [PATCH] [core] Address review: drop redundant defines.h include from util.cpp util.h now includes defines.h unconditionally, so the explicit include in util.cpp is duplicative. --- esphome/core/util.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/core/util.cpp b/esphome/core/util.cpp index cb6ed671de..54a7956163 100644 --- a/esphome/core/util.cpp +++ b/esphome/core/util.cpp @@ -1,5 +1,4 @@ #include "esphome/core/util.h" -#include "esphome/core/defines.h" #include "esphome/core/application.h" #include "esphome/core/version.h" #include "esphome/core/log.h"