dropbox / json11

A tiny JSON library for C++11.
MIT License
2.55k stars 613 forks source link

Cannot parse Null or boolean value written in upper-case letter #51

Closed ttti07 closed 8 years ago

ttti07 commented 8 years ago

json11 cannot parse expressions like True, NULL, etc.

ttti07 commented 8 years ago

Oh.. the spec I suggested was not the standard... https://tools.ietf.org/html/rfc7159#section-3

3.  Values

   A JSON value MUST be an object, array, number, or string, or one of
   the following three literal names:

      false null true

   The literal names MUST be lowercase.  No other literal names are
   allowed.