ignore unused variable (#1714)

This commit is contained in:
Paul Dreik 2021-09-12 23:37:58 +02:00 committed by GitHub
parent 3bd8b0b575
commit d28e5534d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return 0;
}
size_t bool_count=0;
[[maybe_unused]] size_t bool_count=0;
for (auto doc : docs) {
bool_count+=doc.is_bool();
}