AztecProtocol / barretenberg

Apache License 2.0
129 stars 78 forks source link

resolve size_t issues #972

Open lucasxia01 opened 2 months ago

lucasxia01 commented 2 months ago

We use size_t in way too many places. We should probably just use uint32_t or uint64_t by default and cast to size_t when needed. This leads to Mac build serialization issues as Charlie brought up in Slack, but it also led to issues in using msgpack for wasm as it didn't match size_t with any serializable type.