Skip to content

Commit

Permalink
Formatting again with older clang version
Browse files Browse the repository at this point in the history
  • Loading branch information
JBenda committed Dec 21, 2023
1 parent 337344a commit bb0a1f3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions inkcpp/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,8 @@ class value : public snapshot_interface
} else if (ty != type()) {
return redefine<ty + 1>(oth, env);
} else {
return internal::redefine<ty, typename ret<ty>::type, tuple<T*...>>(env)(
get<ty>(), oth.get<ty>()
);
return internal::redefine<ty, typename ret<ty>::type, tuple<T*...>>(env
)(get<ty>(), oth.get<ty>());
}
}

Expand Down

0 comments on commit bb0a1f3

Please sign in to comment.