mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-09 14:21:03 +03:00
Improvements to comments. No changes to code.
FossilOrigin-Name: ac74d7877685006e43684edd6a2d22be8c9857f9f9eb52fc5b3c182d5e2fdb8d
This commit is contained in:
16
src/json.c
16
src/json.c
@@ -1515,10 +1515,10 @@ static const struct NanInfName {
|
||||
**
|
||||
** 0 End of input
|
||||
** -1 Syntax error
|
||||
** -2 '}' seen
|
||||
** -3 ']' seen
|
||||
** -4 ',' seen
|
||||
** -5 ':' seen
|
||||
** -2 '}' seen \
|
||||
** -3 ']' seen \___ For these returns, pParse->iErr is set to
|
||||
** -4 ',' seen / the index in zJson[] of the seen character
|
||||
** -5 ':' seen /
|
||||
*/
|
||||
static int jsonParseValueFromText(JsonParse *pParse, u32 i){
|
||||
char c;
|
||||
@@ -2656,10 +2656,10 @@ static int jsonIs4HexB(const char *z, int *pOp){
|
||||
**
|
||||
** 0 End of input
|
||||
** -1 Syntax error
|
||||
** -2 '}' seen
|
||||
** -3 ']' seen
|
||||
** -4 ',' seen
|
||||
** -5 ':' seen
|
||||
** -2 '}' seen \
|
||||
** -3 ']' seen \___ For these returns, pParse->iErr is set to
|
||||
** -4 ',' seen / the index in zJson[] of the seen character
|
||||
** -5 ':' seen /
|
||||
*/
|
||||
static int jsonTranslateTextValueToBlob(JsonParse *pParse, u32 i){
|
||||
char c;
|
||||
|
||||
Reference in New Issue
Block a user