From 11ecc22ceeaff0839c0b046a6afdb0bb55c1684f Mon Sep 17 00:00:00 2001 From: ludamad Date: Mon, 9 Sep 2024 10:13:50 -0400 Subject: [PATCH] fix: compile on mac --- barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp b/barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp index 6a66dfaebcb5..9c01dde26ba2 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 }