Use quotes for non-system includes

Automate with:

git grep -l '#include <cm_' -- Source \
  | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g'

git grep -l '#include <cmsys/' -- Source \
  | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g'

git grep -l '#include <cm[A-Z]' -- Source \
  | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
This commit is contained in:
Daniel Pfeifer
2017-04-11 22:00:21 +02:00
parent 26ee9e4291
commit 1d829c862c
549 changed files with 726 additions and 726 deletions

View File

@@ -3,7 +3,7 @@
#ifndef cmComputeComponentGraph_h
#define cmComputeComponentGraph_h
#include <cmConfigure.h> // IWYU pragma: keep
#include "cmConfigure.h" // IWYU pragma: keep
#include "cmGraphAdjacencyList.h"