Added basic variadic template class support

This commit is contained in:
Bartek Kryza
2021-03-13 18:22:14 +01:00
parent 86945b11d4
commit ca9927ecc9
7 changed files with 109 additions and 3 deletions

View File

@@ -110,6 +110,7 @@ struct class_template {
std::string name;
std::string type;
std::string default_value;
bool is_variadic{false};
};
class class_ : public element {