Fix some compilation issues

This commit is contained in:
momo5502
2025-01-05 13:11:32 +01:00
parent c07fb2ca86
commit 05e75a20ba
5 changed files with 18 additions and 9 deletions

View File

@@ -23,9 +23,9 @@ namespace fuzzer
const std::function<coverage_functor>& coverage_handler) = 0;
};
struct handler
struct fuzzing_handler
{
virtual ~handler() = default;
virtual ~fuzzing_handler() = default;
virtual std::unique_ptr<executer> make_executer() = 0;
@@ -35,5 +35,5 @@ namespace fuzzer
}
};
void run(handler& handler, size_t concurrency = std::thread::hardware_concurrency());
void run(fuzzing_handler& handler, size_t concurrency = std::thread::hardware_concurrency());
}