Skip to content

Commit

Permalink
style: pre-commit.ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and phlptp committed Oct 14, 2024
1 parent 2735191 commit 6078dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzz/cli11_app_fuzz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
auto app2 = fuzzdata2.generateApp();
std::size_t pstring_start{0};
try {
pstring_start=fuzzdata.add_custom_options(app.get(),parseString);
pstring_start = fuzzdata.add_custom_options(app.get(), parseString);
} catch(const CLI::ConstructionError &e) {
return 0; // Non-zero return values are reserved for future use.
}

try {
app->parse(parseString.substr(pstring_start,std::string::npos);
app->parse(parseString.substr(pstring_start,std::string::npos));

} catch(const CLI::ParseError &e) {
//(app)->exit(e);
Expand Down

0 comments on commit 6078dd4

Please sign in to comment.