From 5afac50f6852332698fbc9be4209f1c90a011d66 Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Tue, 11 Apr 2017 21:42:35 +0200 Subject: cmConfigure: Ensure separate include block in headers Make sure that `#include ` is followed by an empty line in header files. This is necessary to make sure that changing <> to "" does not affect the include ordering of clang-format. Automate with: git grep -l '#include ' | grep -v '.cxx$' \ | xargs sed -i '/#include / { N; N; s/\n\{1,2\}/\n\n/ }' --- Source/cmGetPropertyCommand.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Source/cmGetPropertyCommand.h') diff --git a/Source/cmGetPropertyCommand.h b/Source/cmGetPropertyCommand.h index f9a33acd8c..555e49b4d5 100644 --- a/Source/cmGetPropertyCommand.h +++ b/Source/cmGetPropertyCommand.h @@ -4,6 +4,7 @@ #define cmGetPropertyCommand_h #include + #include #include -- cgit v1.2.1