Skip to content

Commit ef59726

Browse files
committed
fix another graph issue
1 parent 407efeb commit ef59726

File tree

1 file changed

+1
-1
lines changed
  • barretenberg/cpp/src/barretenberg/boomerang_value_detection

1 file changed

+1
-1
lines changed

barretenberg/cpp/src/barretenberg/boomerang_value_detection/graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ template <typename FF, typename CircuitBuilder> void StaticAnalyzer_<FF, Circuit
682682
};
683683
auto non_empty_count =
684684
std::count_if(all_cc.begin(), all_cc.end(), [](const auto& vec) { return !vec.empty(); });
685-
BB_ASSERT(non_empty_count < 2U);
685+
BB_ASSERT(non_empty_count < 2);
686686
auto not_empty_cc_it =
687687
std::find_if(all_cc.begin(), all_cc.end(), [](const auto& vec) { return !vec.empty(); });
688688
if (not_empty_cc_it != all_cc.end() && connect_variables) {

0 commit comments

Comments
 (0)