Skip to content

Commit

Permalink
Fix ParsePrivateInput type to size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
dmirgaleev authored Sep 29, 2024
1 parent 13635f8 commit 84e1b02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace cpu {

template <typename FieldElementT, size_t NWords>
auto ModBuiltinProverContext<FieldElementT, NWords>::ParsePrivateInput(
const JsonValue& private_input, const uint64_t batch_size) -> std::map<uint64_t, Input> {
const JsonValue& private_input, const size_t batch_size) -> std::map<uint64_t, Input> {
std::map<uint64_t, Input> res;
auto instances = private_input["instances"];
auto private_input_len = instances.ArrayLength();
Expand Down

0 comments on commit 84e1b02

Please sign in to comment.