[esp32_ble_client] Convert to C++17 nested namespace syntax (#10111)

This commit is contained in:
J. Nick Koston
2025-08-06 14:18:03 -10:00
committed by GitHub
parent 6071f4b02c
commit 325ec0a0ae
7 changed files with 14 additions and 28 deletions

View File

@@ -8,8 +8,7 @@
#include <esp_gap_ble_api.h>
#include <esp_gatt_defs.h>
namespace esphome {
namespace esp32_ble_client {
namespace esphome::esp32_ble_client {
static const char *const TAG = "esp32_ble_client";
@@ -696,7 +695,6 @@ BLEDescriptor *BLEClientBase::get_descriptor(uint16_t handle) {
return nullptr;
}
} // namespace esp32_ble_client
} // namespace esphome
} // namespace esphome::esp32_ble_client
#endif // USE_ESP32