Added test cases for JSON class generators

This commit is contained in:
Bartek Kryza
2023-03-22 01:00:04 +01:00
parent c59fbfa565
commit 491fb2b443
51 changed files with 377 additions and 29 deletions

View File

@@ -61,6 +61,7 @@ void to_json(nlohmann::json &j, const template_parameter &c)
if (c.default_value())
j["default"] = c.default_value().value();
j["is_variadic"] = c.is_variadic();
j["template_parameters"] = c.template_params();
}
void to_json(nlohmann::json &j, const relationship &c)