diff --git a/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp b/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp index 6a66dfaebcb..9c01dde26ba 100644 --- a/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp +++ b/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp @@ -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(&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 }