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 d5df535
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ template <typename RecursiveFlavor> class ProtoGalaxyRecursiveTests : public tes
*/
static void create_inner_circuit(InnerBuilder& builder, size_t log_num_gates = 10)
{
using fr_ct = InnerCurve::ScalarField;
using fq_ct = InnerCurve::BaseField;
using fr_ct = typename InnerCurve::ScalarField;
using fq_ct = typename InnerCurve::BaseField;
using public_witness_ct = InnerCurve::public_witness_ct;
using witness_ct = InnerCurve::witness_ct;
using byte_array_ct = InnerCurve::byte_array_ct;
Expand Down

0 comments on commit d5df535

Please sign in to comment.