diff options
| author | Kostya Serebryany <kcc@google.com> | 2016-11-14 19:21:38 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2016-11-14 19:21:38 +0000 |
| commit | 6c77811a291055b27679df87756752ea3d654b55 (patch) | |
| tree | a9b90250335bd6e7c41b1514b6423b63a96f6f40 /llvm/lib | |
| parent | 08714cdee457b4d5fc20a37538925dbba3eada75 (diff) | |
| download | bcm5719-llvm-6c77811a291055b27679df87756752ea3d654b55.tar.gz bcm5719-llvm-6c77811a291055b27679df87756752ea3d654b55.zip | |
[libFuzzer] replace 'auto' with 'auto *' to better follow the LLVM style
llvm-svn: 286870
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Fuzzer/FuzzerDriver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerDriver.cpp b/llvm/lib/Fuzzer/FuzzerDriver.cpp index 1fa8c3cf46d..abf0597e0d3 100644 --- a/llvm/lib/Fuzzer/FuzzerDriver.cpp +++ b/llvm/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()) |

