Commit df815469 by Wenzel Jakob

added forgotten initialization

parent d079f41c
...@@ -74,7 +74,7 @@ struct argument_record { ...@@ -74,7 +74,7 @@ struct argument_record {
struct function_record { struct function_record {
function_record() function_record()
: is_constructor(false), is_stateless(false), is_operator(false), : is_constructor(false), is_stateless(false), is_operator(false),
has_args(false), has_kwargs(false) { } has_args(false), has_kwargs(false), is_method(false) { }
/// Function name /// Function name
char *name = nullptr; /* why no C++ strings? They generate heavier code.. */ char *name = nullptr; /* why no C++ strings? They generate heavier code.. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment