[openthread] channel range, fix typo, use C++17 nested namespace syntax (#12422)

This commit is contained in:
Thomas Rupprecht
2025-12-17 01:43:18 +01:00
committed by GitHub
parent 93621d85b0
commit 9727c7135c
6 changed files with 12 additions and 23 deletions

View File

@@ -24,8 +24,7 @@
static const char *const TAG = "openthread";
namespace esphome {
namespace openthread {
namespace esphome::openthread {
void OpenThreadComponent::setup() {
// Used eventfds:
@@ -209,6 +208,5 @@ otInstance *InstanceLock::get_instance() { return esp_openthread_get_instance();
InstanceLock::~InstanceLock() { esp_openthread_lock_release(); }
} // namespace openthread
} // namespace esphome
} // namespace esphome::openthread
#endif