From 190571e05dde20e57f19acedb4988c00e6ad0b1b Mon Sep 17 00:00:00 2001 From: Kostya Kortchinsky Date: Fri, 3 Nov 2017 23:48:25 +0000 Subject: [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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@317390 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/scudo/scudo_utils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/scudo/scudo_utils.h b/lib/scudo/scudo_utils.h index 13269195b..cb7300db9 100644 --- a/lib/scudo/scudo_utils.h +++ b/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)); -- cgit v1.2.3