From 43aeb78cb8068723e61f6cb832cd008d3efe8401 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Mon, 14 Nov 2016 19:21:38 +0000 Subject: [PATCH] [libFuzzer] replace 'auto' with 'auto *' to better follow the LLVM style git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286870 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Fuzzer/FuzzerDriver.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Fuzzer/FuzzerDriver.cpp b/lib/Fuzzer/FuzzerDriver.cpp index 1fa8c3cf46d..abf0597e0d3 100644 --- a/lib/Fuzzer/FuzzerDriver.cpp +++ b/lib/Fuzzer/FuzzerDriver.cpp @@ -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()) -- 2.11.0