Fix unused variable issue with fuzzing methods

This commit is contained in:
Gabriel Rasskin 2020-06-19 10:16:47 -07:00 committed by GitHub
parent 71bbebbf4d
commit 390b259dfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -54,9 +54,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
}
}
sg.as_summary_status();
sg.as_concatenated_status();
sg.AttachLogMessages();
// Ignore warnings that these values are unused
sg.as_summary_status().IgnoreError();;
sg.as_concatenated_status().IgnoreError();;
sg.AttachLogMessages().IgnoreError();;
return 0;
}