1
0
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:
Kostya Serebryany 2016-11-14 19:21:38 +00:00
parent 57d4c72104
commit eedb0e571b

View File

@ -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())