From 8fb8e7973009a5e284a5900438b8efb06b0fd997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vikstr=C3=B6m?= Date: Tue, 6 May 2025 03:20:22 +0200 Subject: [PATCH] Fix clang --- esphome/core/entity_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/entity_base.h b/esphome/core/entity_base.h index 86d695add8..60db74e616 100644 --- a/esphome/core/entity_base.h +++ b/esphome/core/entity_base.h @@ -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: