1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-29 22:24:26 +00:00

[udp, syslog] fix clang tidy (#8755)

This commit is contained in:
tomaszduda23
2025-05-12 23:17:28 +02:00
committed by GitHub
parent 58104229e2
commit facf94699e
3 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
#include "esphome/components/udp/udp_component.h"
#include "esphome/components/time/real_time_clock.h"
#ifdef USE_NETWORK
namespace esphome {
namespace syslog {
class Syslog : public Component, public Parented<udp::UDPComponent> {
@@ -23,3 +24,4 @@ class Syslog : public Component, public Parented<udp::UDPComponent> {
};
} // namespace syslog
} // namespace esphome
#endif