Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
df815469
Commit
df815469
authored
Nov 20, 2016
by
Wenzel Jakob
Browse files
added forgotten initialization
parent
d079f41c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/pybind11/attr.h
include/pybind11/attr.h
+1
-1
No files found.
include/pybind11/attr.h
View file @
df815469
...
@@ -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.. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment