1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-11 15:52:20 +01:00

[various] clang-tidy fixes for #7822 (#7874)

This commit is contained in:
Keith Burzinski
2024-11-27 16:23:20 -06:00
committed by GitHub
parent a825ef59d4
commit 12cdeca48a
8 changed files with 48 additions and 26 deletions

View File

@@ -67,7 +67,7 @@ bool Component::cancel_retry(const std::string &name) { // NOLINT
}
void Component::set_timeout(const std::string &name, uint32_t timeout, std::function<void()> &&f) { // NOLINT
return App.scheduler.set_timeout(this, name, timeout, std::move(f));
App.scheduler.set_timeout(this, name, timeout, std::move(f));
}
bool Component::cancel_timeout(const std::string &name) { // NOLINT