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/ }'
This commit is contained in:
Daniel Pfeifer
2017-04-11 21:42:35 +02:00
parent ff4fa70c20
commit 5afac50f68
111 changed files with 111 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
#define cmExecutablesCommand_h
#include <cmConfigure.h>
#include <string>
#include <vector>