File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,8 @@ template <typename... Ts> struct type_caster<std::tuple<Ts...>> {
38
38
}
39
39
40
40
template <size_t ... Is>
41
- bool from_python_impl (handle src, uint8_t flags,
42
- cleanup_list *cleanup,
43
- std::index_sequence<Is...>) noexcept {
41
+ bool from_python_impl (handle src, uint8_t flags, cleanup_list *cleanup,
42
+ std::index_sequence<Is...>) noexcept {
44
43
(void ) src; (void ) flags; (void ) cleanup;
45
44
46
45
PyObject *temp; // always initialized by the following line
@@ -70,8 +69,8 @@ template <typename... Ts> struct type_caster<std::tuple<Ts...>> {
70
69
71
70
template <typename T, size_t ... Is>
72
71
static handle from_cpp_impl (T &&value, rv_policy policy,
73
- cleanup_list *cleanup,
74
- std::index_sequence<Is...>) noexcept {
72
+ cleanup_list *cleanup,
73
+ std::index_sequence<Is...>) noexcept {
75
74
(void ) value; (void ) policy; (void ) cleanup;
76
75
object o[N1];
77
76
You can’t perform that action at this time.
0 commit comments