[PATCH] D66017: [compiler-rt] FuzzedDataProvider: use C++ headers only instead of a C/C++ mix.

Max Moroz via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 9 09:01:10 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL368448: [compiler-rt] FuzzedDataProvider: use C++ headers only instead of a C/C++ mix. (authored by Dor1s, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D66017/new/

https://reviews.llvm.org/D66017

Files:
  compiler-rt/trunk/include/fuzzer/FuzzedDataProvider.h


Index: compiler-rt/trunk/include/fuzzer/FuzzedDataProvider.h
===================================================================
--- compiler-rt/trunk/include/fuzzer/FuzzedDataProvider.h
+++ compiler-rt/trunk/include/fuzzer/FuzzedDataProvider.h
@@ -13,11 +13,10 @@
 #ifndef LLVM_FUZZER_FUZZED_DATA_PROVIDER_H_
 #define LLVM_FUZZER_FUZZED_DATA_PROVIDER_H_
 
-#include <limits.h>
-#include <stddef.h>
-#include <stdint.h>
-
 #include <algorithm>
+#include <climits>
+#include <cstddef>
+#include <cstdint>
 #include <cstring>
 #include <initializer_list>
 #include <string>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66017.214386.patch
Type: text/x-patch
Size: 572 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190809/9faa0f34/attachment.bin>


More information about the llvm-commits mailing list