]> granicus.if.org Git - llvm/commitdiff
[libFuzzer] Reorder includes in test
authorVitaly Buka <vitalybuka@google.com>
Mon, 13 Mar 2017 23:49:00 +0000 (23:49 +0000)
committerVitaly Buka <vitalybuka@google.com>
Mon, 13 Mar 2017 23:49:00 +0000 (23:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297692 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Fuzzer/test/CustomCrossOverAndMutateTest.cpp

index 756ff3b5ae6f66e7f5811706583a56444354e3a7..74fc939534ca4ce2f1c405b3434ede01b875be45 100644 (file)
@@ -3,13 +3,13 @@
 
 // Test that libFuzzer does not crash when LLVMFuzzerMutate called from
 // LLVMFuzzerCustomCrossOver.
+#include <algorithm>
 #include <cstddef>
 #include <cstdint>
 #include <cstdlib>
-#include <string>
 #include <string.h>
+#include <string>
 #include <vector>
-#include <algorithm>
 
 #include "FuzzerInterface.h"