cartesi / machine-emulator

The off-chain implementation of the Cartesi Machine
GNU Lesser General Public License v3.0
64 stars 33 forks source link

fix: missing climits include in json-util.cpp #158

Closed diegonehab closed 11 months ago

diegonehab commented 11 months ago

Some recent commit has indirectly caused INT_MAX not to be defined in json-util.cpp and it fails to compile under g++ (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0. This PR includes <climits> to fix the problem.