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
864ed112
Unverified
Commit
864ed112
authored
Oct 06, 2022
by
Aaron Gokaslan
Committed by
GitHub
Oct 06, 2022
Browse files
chore: steal arg_v.value from copied arg in unpacking_collector (#4219)
parent
8275b769
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/pybind11/cast.h
include/pybind11/cast.h
+1
-1
No files found.
include/pybind11/cast.h
View file @
864ed112
...
@@ -1545,7 +1545,7 @@ private:
...
@@ -1545,7 +1545,7 @@ private:
throw
cast_error_unable_to_convert_call_arg
(
a
.
name
,
a
.
type
);
throw
cast_error_unable_to_convert_call_arg
(
a
.
name
,
a
.
type
);
#endif
#endif
}
}
m_kwargs
[
a
.
name
]
=
a
.
value
;
m_kwargs
[
a
.
name
]
=
std
::
move
(
a
.
value
)
;
}
}
void
process
(
list
&
/*args_list*/
,
detail
::
kwargs_proxy
kp
)
{
void
process
(
list
&
/*args_list*/
,
detail
::
kwargs_proxy
kp
)
{
...
...
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