🚨 fixed another linter warning

This commit is contained in:
Niels Lohmann 2018-10-26 11:10:49 +02:00
parent d97fa30795
commit 544150d5a5
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 4 additions and 4 deletions

View file

@ -460,10 +460,10 @@ class serializer
// continue processing the string
state = UTF8_ACCEPT;
continue;
break;
}
}
break; // LCOV_EXCL_LINE
break;
}
default: // decode found yet incomplete multi-byte code point

View file

@ -11158,10 +11158,10 @@ class serializer
// continue processing the string
state = UTF8_ACCEPT;
continue;
break;
}
}
break; // LCOV_EXCL_LINE
break;
}
default: // decode found yet incomplete multi-byte code point