🚨 suppress cppcoreguidelines-avoid-do-while

This commit is contained in:
Niels Lohmann 2022-12-03 15:21:11 +01:00
parent e3f73112f3
commit 59d5cd38e4
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -8804,7 +8804,7 @@ scan_number_done:
void skip_whitespace() void skip_whitespace()
{ {
do // NOLINT(cppcoreguidelines-avoid-do-while) do
{ {
get(); get();
} }
@ -11838,7 +11838,7 @@ class binary_reader
*/ */
char_int_type get_ignore_noop() char_int_type get_ignore_noop()
{ {
do // NOLINT(cppcoreguidelines-avoid-do-while) do
{ {
get(); get();
} }