1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

Fuzzers: Cast unused smart-pointer return values to void

This commit is contained in:
Sam Atkins 2021-12-02 12:49:32 +00:00 committed by Andreas Kling
parent f3d8f80e9c
commit 16e5f24e64
3 changed files with 3 additions and 3 deletions

View file

@ -13,6 +13,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
auto source = StringView(static_cast<const unsigned char*>(data), size);
Shell::Parser parser(source);
parser.parse();
(void)parser.parse();
return 0;
}