Fix clang format error

This commit is contained in:
Онофрей Борис 2021-06-29 10:32:36 +03:00
parent b4d84db3f2
commit a351c107c8
1 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,8 @@ static inline int od_parser_next(od_parser_t *parser, od_token_t *token)
token->type = OD_PARSER_ERROR;
return token->type;
}
if ((*parser->pos == '\\') && (parser->pos + 1 != parser->end))
if ((*parser->pos == '\\') &&
(parser->pos + 1 != parser->end))
parser->pos += 2;
else
parser->pos++;