-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Example code for reproduction:
JsonDocument jsonDoc;
JsonObject jsonAbc = jsonDoc["abc"].add<JsonObject>();
jsonAbc["a"] = "a";
jsonAbc["b"] = "b";
jsonAbc["c"] = "c";
{
JsonObjectConst value = jsonDoc["abc"];
JsonVariantConst jsonA = value["a"]; /* ArduinoJson/Object/JsonObjectConst.hpp:105:38: error: no matching function for call to 'ArduinoJson::V700HB4::detail::ObjectData::getMember(const ArduinoJson::V700HB4::detail::ObjectData* const&, ArduinoJson::V700HB4::detail::StringAdapter<const char*, void>::AdaptedString)' */
}