From 4a0ebbfe975ce6914b6d1bdedcf2681a9c590521 Mon Sep 17 00:00:00 2001 From: Kostya Kortchinsky Date: Fri, 3 Nov 2017 23:48:25 +0000 Subject: [PATCH] [scudo] Rearrange #include order Summary: To be compliant with https://llvm.org/docs/CodingStandards.html#include-style, system headers have to come after local headers. Reviewers: alekseyshl Reviewed By: alekseyshl Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D39623 llvm-svn: 317390 --- compiler-rt/lib/scudo/scudo_utils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler-rt/lib/scudo/scudo_utils.h b/compiler-rt/lib/scudo/scudo_utils.h index 1326919..cb7300d 100644 --- a/compiler-rt/lib/scudo/scudo_utils.h +++ b/compiler-rt/lib/scudo/scudo_utils.h @@ -14,10 +14,10 @@ #ifndef SCUDO_UTILS_H_ #define SCUDO_UTILS_H_ -#include - #include "sanitizer_common/sanitizer_common.h" +#include + namespace __scudo { template @@ -34,7 +34,7 @@ enum CPUFeature { CRC32CPUFeature = 0, MaxCPUFeature, }; -bool testCPUFeature(CPUFeature feature); +bool testCPUFeature(CPUFeature Feature); INLINE u64 rotl(const u64 X, int K) { return (X << K) | (X >> (64 - K)); -- 2.7.4