1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00
This commit is contained in:
J. Nick Koston
2026-01-28 05:42:25 -10:00
parent 9d25e385d9
commit 258e57ff17
2 changed files with 1 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ void RuntimeStatsCollector::log_stats_() {
return;
}
// Stack buffer sized to actual active count (up to 256 = 1KB), heap fallback for larger
// Stack buffer sized to actual active count (up to 256 components), heap fallback for larger
SmallBufferWithHeapFallback<256, Component *> buffer(count);
Component **sorted = buffer.get();

View File

@@ -5,7 +5,6 @@
#ifdef USE_RUNTIME_STATS
#include <map>
#include <vector>
#include <cstdint>
#include <cstring>
#include "esphome/core/helpers.h"