//===- FuzzerMutate.h - Internal header for the Fuzzer ----------*- C++ -* ===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // fuzzer::MutationDispatcher //===----------------------------------------------------------------------===// #ifndef LLVM_FUZZER_MUTATE_H #define LLVM_FUZZER_MUTATE_H #include "FuzzerDefs.h" #include "FuzzerDictionary.h" #include "FuzzerOptions.h" #include "FuzzerRandom.h" namespace fuzzer { class MutationDispatcher { … }; } // namespace fuzzer #endif // LLVM_FUZZER_MUTATE_H