[PATCH] D39623: [scudo] Rearrange #include order

Kostya Kortchinsky via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 3 16:18:04 PDT 2017


cryptoad created this revision.

To be compliant with https://llvm.org/docs/CodingStandards.html#include-style,
system headers have to come after local headers.


https://reviews.llvm.org/D39623

Files:
  lib/scudo/scudo_utils.h


Index: lib/scudo/scudo_utils.h
===================================================================
--- lib/scudo/scudo_utils.h
+++ lib/scudo/scudo_utils.h
@@ -14,10 +14,10 @@
 #ifndef SCUDO_UTILS_H_
 #define SCUDO_UTILS_H_
 
-#include <string.h>
-
 #include "sanitizer_common/sanitizer_common.h"
 
+#include <string.h>
+
 namespace __scudo {
 
 template <class Dest, class Source>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39623.121562.patch
Type: text/x-patch
Size: 381 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171103/189bb6af/attachment.bin>


More information about the llvm-commits mailing list