From 02605187158ebf49d296bf94f4ba2f7412419f13 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 21 Sep 2021 00:16:07 +0100 Subject: [PATCH] Document skipBom in CharReaderBuilder --- include/json/reader.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/json/reader.h b/include/json/reader.h index 9175466..2a532b6 100644 --- a/include/json/reader.h +++ b/include/json/reader.h @@ -324,6 +324,8 @@ public: * - `"allowSpecialFloats": false or true` * - If true, special float values (NaNs and infinities) are allowed and * their values are lossfree restorable. + * - `"skipBom": false or true` + * - If true, if the input starts with the Unicode byte order mark (BOM), it is skipped. * * You can examine 'settings_` yourself to see the defaults. You can also * write and read them just like any JSON Value.