summaryrefslogtreecommitdiff
path: root/json-glib/json-scanner.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2009-08-12 15:56:00 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2009-08-12 15:56:00 +0100
commit9a647104ca77d4c4272845fed4bfae028098afd3 (patch)
tree747ce092e9562ac55ac4dce8ee67926395399380 /json-glib/json-scanner.c
parentf3e0618ee1d8aa90d0ba22e9abe5c7d6b849e0ea (diff)
downloadjson-glib-9a647104ca77d4c4272845fed4bfae028098afd3.tar.gz
Actually use the int64 support in the Scanner
We switched everything to 64 bit integers but then I forgot to enable the support for actually making the tokenizer store the parsed integers into a 64 bit value. Bad Emmanuele, no cookie for you.
Diffstat (limited to 'json-glib/json-scanner.c')
-rw-r--r--json-glib/json-scanner.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/json-glib/json-scanner.c b/json-glib/json-scanner.c
index 19e4b30..9cd0938 100644
--- a/json-glib/json-scanner.c
+++ b/json-glib/json-scanner.c
@@ -119,6 +119,7 @@ static JsonScannerConfig json_scanner_config_template =
TRUE /* char_2_token */,
TRUE /* symbol_2_token */,
FALSE /* scope_0_fallback */,
+ TRUE /* store_int64 */
};
/* --- defines --- */