This commit is contained in:
J. Nick Koston 2025-07-08 09:34:56 -06:00
parent 0097a55eaa
commit be84f12100
No known key found for this signature in database
2 changed files with 1 additions and 5 deletions

View File

@ -9,9 +9,6 @@ namespace esphome {
namespace runtime_stats {
// Forward declaration to help compiler
class RuntimeStatsCollector;
RuntimeStatsCollector::RuntimeStatsCollector() : log_interval_(60000), next_log_time_(0) {
global_runtime_stats = this;
}

View File

@ -11,11 +11,10 @@
#include <algorithm>
#include "esphome/core/helpers.h"
#include "esphome/core/log.h"
#include "esphome/core/component.h"
namespace esphome {
class Component; // Forward declaration
namespace runtime_stats {
static const char *const TAG = "runtime_stats";