mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[libFuzzer] replace 'auto' with 'auto *' to better follow the LLVM style
llvm-svn: 286870
This commit is contained in:
parent
57d4c72104
commit
eedb0e571b
@ -446,9 +446,9 @@ int FuzzerDriver(int *argc, char ***argv, UserCallback Callback) {
|
||||
Printf("INFO: Seed: %u\n", Seed);
|
||||
|
||||
Random Rand(Seed);
|
||||
auto MD = new MutationDispatcher(Rand, Options);
|
||||
auto Corpus = new InputCorpus(Options.OutputCorpus);
|
||||
auto F = new Fuzzer(Callback, *Corpus, *MD, Options);
|
||||
auto *MD = new MutationDispatcher(Rand, Options);
|
||||
auto *Corpus = new InputCorpus(Options.OutputCorpus);
|
||||
auto *F = new Fuzzer(Callback, *Corpus, *MD, Options);
|
||||
|
||||
for (auto &U: Dictionary)
|
||||
if (U.size() <= Word::GetMaxSize())
|
||||
|
Loading…
x
Reference in New Issue
Block a user