Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit f394b57

Browse files
martunnkaskov
authored andcommitted
Adding a scope to fix mac build, even though I believe it's not needed.
1 parent e8658fa commit f394b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/nil/blueprint/components/algebra/fields/plonk/non_native/detail/bit_builder_component.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ namespace nil {
266266

267267
for (std::size_t i = 0; i < input_bits.size(); i++) {
268268
auto bit_pos = component.bit_position(start_row_index, padding + i);
269-
assignment.witness(component.W(bit_pos.second), bit_pos.first) = input_bits[i];
269+
assignment.witness(component.W(bit_pos.second), bit_pos.first) = (input_bits[i]);
270270
}
271271

272272
field_value_type sum = 0;
@@ -395,4 +395,4 @@ namespace nil {
395395
} // namespace blueprint
396396
} // namespace nil
397397

398-
#endif // CRYPTO3_BLUEPRINT_COMPONENTS_BIT_BUILDER_COMPONENT_HPP
398+
#endif // CRYPTO3_BLUEPRINT_COMPONENTS_BIT_BUILDER_COMPONENT_HPP

0 commit comments

Comments
 (0)