From 785ad0cd47aad446fd2aeccb5f43061ca517da21 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 1 Oct 2025 23:27:14 +0200 Subject: [PATCH] preen --- esphome/core/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/helpers.h b/esphome/core/helpers.h index d3852c3969..39d39c1c94 100644 --- a/esphome/core/helpers.h +++ b/esphome/core/helpers.h @@ -130,7 +130,7 @@ template class StaticVector { size_t size() const { return count_; } bool empty() const { return count_ == 0; } - // Direct access to increment size for efficient initialization + // Direct access to size counter for efficient in-place construction size_t &count() { return count_; } T &operator[](size_t i) { return data_[i]; }