[json] Update the internal copy of JSON-GLib

JSON-GLib switch to 64 bit integers upstream, to avoid the undefined
integer size of the JSON RFC. All integers are automatically promoted
to gint64.
This commit is contained in:
Emmanuele Bassi
2009-08-12 16:00:13 +01:00
parent 2b70b0d4ed
commit 4d52245637
5 changed files with 78 additions and 57 deletions

View File

@ -241,7 +241,7 @@ json_array_get_element (JsonArray *array,
*
* Since: 0.8
*/
gint
gint64
json_array_get_int_element (JsonArray *array,
guint index_)
{
@ -483,7 +483,7 @@ json_array_add_element (JsonArray *array,
*/
void
json_array_add_int_element (JsonArray *array,
gint value)
gint64 value)
{
JsonNode *node;