We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01cc9e7 commit 9a0b69eCopy full SHA for 9a0b69e
barretenberg/cpp/src/barretenberg/client_ivc/client_ivc.hpp
@@ -175,11 +175,8 @@ class ClientIVC {
175
*/
176
static size_t calc_num_data_types()
177
{
178
- size_t total = 0;
179
- total += MegaVerificationKey::calc_num_data_types();
180
- total += ECCVMVerificationKey::calc_num_data_types();
181
- total += TranslatorVerificationKey::calc_num_data_types();
182
- return total;
+ return MegaVerificationKey::calc_num_data_types() + ECCVMVerificationKey::calc_num_data_types() +
+ TranslatorVerificationKey::calc_num_data_types();
183
}
184
185
/**
0 commit comments