0

I am using JsonCpp v1.6.5 to parse a JSON file that contains the following:

{ "some-property" : 32 }

After parsing the type of the value is intValue rather than uintValue.

How does the parser interpret an integer as unsigned?

ksl
  • 4,519
  • 11
  • 65
  • 106

1 Answers1

0

Everything below 2**31 is considered int, rather than unsigned int.

user31264
  • 6,557
  • 3
  • 26
  • 40