diff options
author | Marcos Pividori <mpividori@google.com> | 2016-12-13 17:46:11 +0000 |
---|---|---|
committer | Marcos Pividori <mpividori@google.com> | 2016-12-13 17:46:11 +0000 |
commit | 178fe587454a4decec0b2c9c05f71fcb44cd9311 (patch) | |
tree | 68149874add8d67b8ce7be08a47bee7bb1a6d8d4 /llvm/lib/Fuzzer/FuzzerTracePC.h | |
parent | 6e3d885c791b5d6f2120c0ec345b5604851709d2 (diff) | |
download | bcm5719-llvm-178fe587454a4decec0b2c9c05f71fcb44cd9311.tar.gz bcm5719-llvm-178fe587454a4decec0b2c9c05f71fcb44cd9311.zip |
[libFuzzer] Clean up headers and file formatting of LibFuzzer files.
Reorganize #includes to follow LLVM Coding Standards.
Include some missing headers. Required to use `Printf()`.
Aside from that, this patch contains no functional change.
It is purely a re-organization.
Differential Revision: https://reviews.llvm.org/D27363
llvm-svn: 289560
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerTracePC.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerTracePC.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerTracePC.h b/llvm/lib/Fuzzer/FuzzerTracePC.h index acff27fd9db..df037390c2a 100644 --- a/llvm/lib/Fuzzer/FuzzerTracePC.h +++ b/llvm/lib/Fuzzer/FuzzerTracePC.h @@ -12,10 +12,9 @@ #ifndef LLVM_FUZZER_TRACE_PC #define LLVM_FUZZER_TRACE_PC -#include <set> - #include "FuzzerDefs.h" #include "FuzzerValueBitMap.h" +#include <set> namespace fuzzer { |