Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed Feb 2, 2024
1 parent f37f1bf commit 67274c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion barretenberg/cpp/src/barretenberg/relations/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ template <typename Flavor> class RelationUtils {
template <typename... T>
static constexpr void add_tuples(std::tuple<T...>& tuple_1, const std::tuple<T...>& tuple_2)
{
auto add_tuples_helper = [&]<std::size_t... I>(std::index_sequence<I...>) {
auto add_tuples_helper = [&]<std::size_t... I>(std::index_sequence<I...>)
{
((std::get<I>(tuple_1) += std::get<I>(tuple_2)), ...);
};

Expand Down

0 comments on commit 67274c1

Please sign in to comment.