Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Feb 2, 2024
1 parent 2e4be0c commit c97bd9b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions include/nanobind/stl/tuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ template <typename... Ts> struct type_caster<std::tuple<Ts...>> {
}

template <size_t... Is>
bool from_python_impl(handle src, uint8_t flags,
cleanup_list *cleanup,
std::index_sequence<Is...>) noexcept {
bool from_python_impl(handle src, uint8_t flags, cleanup_list *cleanup,
std::index_sequence<Is...>) noexcept {
(void) src; (void) flags; (void) cleanup;

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

template <typename T, size_t... Is>
static handle from_cpp_impl(T &&value, rv_policy policy,
cleanup_list *cleanup,
std::index_sequence<Is...>) noexcept {
cleanup_list *cleanup,
std::index_sequence<Is...>) noexcept {
(void) value; (void) policy; (void) cleanup;
object o[N1];

Expand Down

0 comments on commit c97bd9b

Please sign in to comment.