Skip to content

Commit c97bd9b

Browse files
committed
indentation
1 parent 2e4be0c commit c97bd9b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

include/nanobind/stl/tuple.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ template <typename... Ts> struct type_caster<std::tuple<Ts...>> {
3838
}
3939

4040
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 {
4443
(void) src; (void) flags; (void) cleanup;
4544

4645
PyObject *temp; // always initialized by the following line
@@ -70,8 +69,8 @@ template <typename... Ts> struct type_caster<std::tuple<Ts...>> {
7069

7170
template <typename T, size_t... Is>
7271
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 {
7574
(void) value; (void) policy; (void) cleanup;
7675
object o[N1];
7776

0 commit comments

Comments
 (0)