Merge branch 'insp3' into master.

This commit is contained in:
Sadie Powell 2023-07-13 07:33:58 +01:00
commit cd1c202165
2 changed files with 9 additions and 3 deletions

View File

@ -109,9 +109,15 @@ struct Parser final
{
while (true)
{
int ch = next();
int ch = next(true);
if (ch == '\n')
return;
if (ch == EOF)
{
unget(ch);
return;
}
}
}

View File

@ -1,4 +1,4 @@
# Last updated: 2022-07-01
# Last updated: 2022-07-13
#
# Modules we can't legally ship: geo_maxmind, ssl_mbedtls, ssl_openssl
# Modules which don't apply to Windows: sslrehashsignal
@ -11,7 +11,7 @@ libmysqlclient/8.0.31
libpq/14.7
libpsl/0.21.1
## mbedtls/3.2.1
## openssl/1.1.1u # unable to upgrade to v3 yet because of dependency issues
## openssl/3.1.1
pcre2/10.42
rapidjson/cci.20220822
re2/20230602