diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-11 19:42:35 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-11 20:35:20 (GMT) |
commit | 5afac50f6852332698fbc9be4209f1c90a011d66 (patch) | |
tree | 3c8419b04eb2114818a57128216560815b36dfe3 /Source/cmExportCommand.h | |
parent | ff4fa70c201236d5355d55c386cc04cb143bde10 (diff) | |
download | CMake-5afac50f6852332698fbc9be4209f1c90a011d66.zip CMake-5afac50f6852332698fbc9be4209f1c90a011d66.tar.gz CMake-5afac50f6852332698fbc9be4209f1c90a011d66.tar.bz2 |
cmConfigure: Ensure separate include block in headers
Make sure that `#include <cmConfigure.h>` 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 <cmConfigure.h>' | grep -v '.cxx$' \
| xargs sed -i '/#include <cmConfigure.h>/ { N; N; s/\n\{1,2\}/\n\n/ }'
Diffstat (limited to 'Source/cmExportCommand.h')
-rw-r--r-- | Source/cmExportCommand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmExportCommand.h b/Source/cmExportCommand.h index a0224d0..80839bc 100644 --- a/Source/cmExportCommand.h +++ b/Source/cmExportCommand.h @@ -4,6 +4,7 @@ #define cmExportCommand_h #include <cmConfigure.h> + #include <string> #include <vector> |