From c9a1664398e8a4a9c8f9a3c38d5e67dadf5c6303 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 13 Oct 2025 14:08:27 -1000 Subject: [PATCH] merge --- esphome/core/helpers.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/esphome/core/helpers.h b/esphome/core/helpers.h index 084ad28882..6b04af3c7c 100644 --- a/esphome/core/helpers.h +++ b/esphome/core/helpers.h @@ -226,9 +226,6 @@ template class FixedVector { // Clear the vector (reset size to 0, keep capacity) void clear() { size_ = 0; } - // Check if vector is empty - bool empty() const { return size_ == 0; } - /// Add element without bounds checking /// Caller must ensure sufficient capacity was allocated via init() /// Silently ignores pushes beyond capacity (no exception or assertion)