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

Fix clang

This commit is contained in:
Daniel Vikström
2025-05-06 03:20:22 +02:00
parent 79bbc475f4
commit 8fb8e79730

View File

@@ -48,7 +48,7 @@ class EntityBase {
void set_icon(const char *icon);
// Get/set this entity's device id
const uint32_t get_device_uid() const { return this->device_uid_; }
uint32_t get_device_uid() const { return this->device_uid_; }
void set_device_uid(const uint32_t device_uid) { this->device_uid_ = device_uid; }
protected: