🚨 suppress cppcoreguidelines-avoid-do-while

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

View File

@ -2760,7 +2760,7 @@ class binary_reader
*/
char_int_type get_ignore_noop()
{
do
do // NOLINT(cppcoreguidelines-avoid-do-while)
{
get();
}

View File

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