Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed Dec 4, 2023
1 parent 649fdeb commit 1d24643
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 @@ -86,7 +86,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 1d24643

Please sign in to comment.