[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 08714cdee4
commit 6c77811a29
1 changed files with 3 additions and 3 deletions

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