@@ -210,7 +210,7 @@ class parse_error : public exception
...
@@ -210,7 +210,7 @@ class parse_error : public exception
/*!
/*!
@brief create a parse error exception
@brief create a parse error exception
@param[in] id the id of the exception
@param[in] id the id of the exception
@param[in] byte_ the byte index where the error occured (or 0 if
@param[in] byte_ the byte index where the error occurred (or 0 if
the position cannot be determined)
the position cannot be determined)
@param[in] what_arg the explanatory string
@param[in] what_arg the explanatory string
@return parse_error object
@return parse_error object
...
@@ -260,7 +260,7 @@ json.exception.invalid_iterator.209 | cannot use offsets with object iterators |
...
@@ -260,7 +260,7 @@ json.exception.invalid_iterator.209 | cannot use offsets with object iterators |
json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid.
json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid.
json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to.
json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to.
json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container.
json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container.
json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compated, because JSON objects are unordered.
json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered.
json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin().
json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin().
@since version 3.0.0
@since version 3.0.0
...
@@ -2969,8 +2969,8 @@ class basic_json
...
@@ -2969,8 +2969,8 @@ class basic_json
members will be pretty-printed with that indent level. An indent level of
members will be pretty-printed with that indent level. An indent level of
`0` will only insert newlines. `-1` (the default) selects the most compact
`0` will only insert newlines. `-1` (the default) selects the most compact
representation.
representation.
@param[in] indent_char The character to use for indentation of @a indent is
@param[in] indent_char The character to use for indentation if @a indent is
greate than `0`. The default is ` ` (space).
greater than `0`. The default is ` ` (space).
@return string containing the serialization of the JSON value
@return string containing the serialization of the JSON value