Skip to content

Commit

Permalink
fix(bb): mac release (#8450)
Browse files Browse the repository at this point in the history
We should be careful with c++20 features
  • Loading branch information
ludamad authored Sep 9, 2024
1 parent b747ac1 commit 1b3f914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void AztecIVC::instantiate_stdlib_verification_queue(ClientCircuit& circuit)
auto stdlib_proof = bb::convert_proof_to_witness(&circuit, proof);
auto stdlib_vkey = std::make_shared<RecursiveVerificationKey>(&circuit, vkey);

stdlib_verification_queue.emplace_back(stdlib_proof, stdlib_vkey, type);
stdlib_verification_queue.push_back({ stdlib_proof, stdlib_vkey, type });
}
verification_queue.clear(); // the native data is not needed beyond this point
}
Expand Down

0 comments on commit 1b3f914

Please sign in to comment.