Skip to content

Commit d3f6410

Browse files
AztecBotMirandaWood
authored andcommitted
style: clang-format MSM test fix
1 parent b820b86 commit d3f6410

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

barretenberg/cpp/src/barretenberg/dsl/acir_format/multi_scalar_mul.test.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ template <typename Builder_, InputConstancy Constancy> class MultiScalarMulTesti
6868
// Helper to add points: either as witnesses or constants based on Constancy
6969
auto construct_points = [&]() -> std::vector<WitnessOrConstant<FF>> {
7070
if constexpr (points_are_constant) {
71-
// Points are constants
72-
return { WitnessOrConstant<FF>::from_constant(point.x),
73-
WitnessOrConstant<FF>::from_constant(point.y),
74-
WitnessOrConstant<FF>::from_constant(point.is_point_at_infinity() ? FF(1) : FF(0)) };
71+
return { WitnessOrConstant<FF>::from_constant(point.x), WitnessOrConstant<FF>::from_constant(point.y) };
7572
}
7673
// Points are witnesses
7774
std::vector<uint32_t> point_indices = add_to_witness_and_track_indices(witness_values, point);

0 commit comments

Comments
 (0)