summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Hilaiel <lloyd@hilaiel.com>2011-04-24 12:48:34 -0600
committerLloyd Hilaiel <lloyd@hilaiel.com>2011-04-24 12:48:34 -0600
commit0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a (patch)
treeaf70481aad00b4ce9e2f23cdd23e58d735c50072
parent1b9995a0a341096afdf3e13a70f2185e438c4452 (diff)
downloadyajl-0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a.tar.gz
update docs for perf gains with yajl_dont_validate_strings
-rw-r--r--src/api/yajl_parse.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/yajl_parse.h b/src/api/yajl_parse.h
index 0a241d3..23be584 100644
--- a/src/api/yajl_parse.h
+++ b/src/api/yajl_parse.h
@@ -120,7 +120,8 @@ extern "C" {
/**
* When set the parser will verify that all strings in JSON input are
* valid UTF8 and will emit a parse error if this is not so. When set,
- * this option makes parsing slightly more expensive (~10%) (XXX: get real numbers)
+ * this option makes parsing slightly more expensive (~7% depending
+ * on processor and compiler in use)
*
* example:
* yajl_config(h, yajl_dont_validate_strings, 1); // disable utf8 checking