We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc5472a commit 919fea3Copy full SHA for 919fea3
src/json_export.cpp
@@ -49,6 +49,8 @@ bool JsonExporter::toJson(const Any& any, nlohmann::json& dst) const
49
}
50
else
51
{
52
+ dst[kTypeField] = demangle(type);
53
+ dst[kValueField] = any.empty() ? "no value set" : "no JSON converter registered";
54
return false;
55
56
0 commit comments