jsoncpp: Fix (U)Int64 to long int on 64bit linux
Passing a 64bit integer to Json::Value fails to find matching. Even tough long long int is also 64bits gcc considres long long int different to long int. But fix can't be as simple as removing an long from type because that would reduce 32bit builds to have only 32bit maximum int size. But standard offers fixed width integer types that can be used to get correct underlying type depending on platform.develop
parent
ee3a726c29
commit
424028a0ae
Loading…
Reference in New Issue