diff options
Diffstat (limited to 'lib/Fuzzer/test/StrncmpOOBTest.cpp')
-rw-r--r-- | lib/Fuzzer/test/StrncmpOOBTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Fuzzer/test/StrncmpOOBTest.cpp b/lib/Fuzzer/test/StrncmpOOBTest.cpp index f70b003afad6..4ed71d9d021d 100644 --- a/lib/Fuzzer/test/StrncmpOOBTest.cpp +++ b/lib/Fuzzer/test/StrncmpOOBTest.cpp @@ -3,10 +3,10 @@ // Test that libFuzzer itself does not read out of bounds. #include <assert.h> +#include <cstddef> #include <cstdint> -#include <cstring> #include <cstdlib> -#include <cstddef> +#include <cstring> #include <iostream> static volatile int Sink; |