🚨 suppress cppcoreguidelines-avoid-do-while

This commit is contained in:
Niels Lohmann 2022-12-03 14:51:46 +01:00
parent 2b586ad555
commit 6c711ff476
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 2 deletions

View File

@ -1499,7 +1499,7 @@ scan_number_done:
void skip_whitespace()
{
do
do // NOLINT(cppcoreguidelines-avoid-do-while)
{
get();
}

View File

@ -8804,7 +8804,7 @@ scan_number_done:
void skip_whitespace()
{
do
do // NOLINT(cppcoreguidelines-avoid-do-while)
{
get();
}