Add missing arity checks to compiler series
This commit is contained in:
@@ -53,8 +53,8 @@ struct type_data : public type_base {
|
||||
|
||||
std::map<std::string, constructor> constructors;
|
||||
|
||||
type_data(std::string n)
|
||||
: type_base(std::move(n)) {}
|
||||
type_data(std::string n, int32_t a = 0)
|
||||
: type_base(std::move(n), a) {}
|
||||
};
|
||||
|
||||
struct type_arr : public type {
|
||||
|
||||
Reference in New Issue
Block a user