1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

Update esphome/core/scheduler.h

This commit is contained in:
J. Nick Koston
2025-09-03 16:30:37 -05:00
committed by GitHub
parent d505f5ecaa
commit 191e9dedc5

View File

@@ -185,7 +185,6 @@ class Scheduler {
static bool cmp(const std::unique_ptr<SchedulerItem> &a, const std::unique_ptr<SchedulerItem> &b);
// Helper methods to work with split execution time (constexpr for optimization)
constexpr uint64_t get_next_execution() const {
return (static_cast<uint64_t>(next_execution_high_) << 32) | next_execution_low_;
}