JsonVariant jv(jobj) not allowed
Created by: firepick1
Assume we have: JsonObject jobj = ...; We can always type: JsonVariant jv; jv = jobj; But we cannot type: JsonVariant jv=jobj; This is peculiar to me since the two seem semantically identical. The compiler does not allow the second form and warns about: ReferenceType::ReferenceType(const ArduinoJson::Internals::ReferenceType&) is private.