From 191e9dedc553271739e97e016117d32188e4663f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 3 Sep 2025 16:30:37 -0500 Subject: [PATCH] Update esphome/core/scheduler.h --- esphome/core/scheduler.h | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/core/scheduler.h b/esphome/core/scheduler.h index 4a35dd88b0..c4bbbf1035 100644 --- a/esphome/core/scheduler.h +++ b/esphome/core/scheduler.h @@ -185,7 +185,6 @@ class Scheduler { static bool cmp(const std::unique_ptr &a, const std::unique_ptr &b); - // Helper methods to work with split execution time (constexpr for optimization) constexpr uint64_t get_next_execution() const { return (static_cast(next_execution_high_) << 32) | next_execution_low_; }