mirror of
https://github.com/pybind/pybind11.git
synced 2025-01-19 17:32:37 +00:00
added forgotten initialization
This commit is contained in:
parent
d079f41c26
commit
df81546965
@ -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.. */
|
||||||
|
Loading…
Reference in New Issue
Block a user