We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20df9d5 commit 99c377dCopy full SHA for 99c377d
libraries/BLE/src/BLERemoteService.cpp
@@ -79,7 +79,7 @@ void BLERemoteService::gattClientEventHandler(esp_gattc_cb_event_t event, esp_ga
79
80
// This is an indication that we now have the characteristic details for a characteristic owned
81
// by this service so remember it.
82
- m_characteristicMap.insert(std::pair<std::String, BLERemoteCharacteristic*>(
+ m_characteristicMap.insert(std::pair<std::string, BLERemoteCharacteristic*>(
83
BLEUUID(evtParam->get_char.char_id.uuid).toString().c_str(),
84
new BLERemoteCharacteristic(evtParam->get_char.char_id, evtParam->get_char.char_prop, this) ));
85
0 commit comments