summaryrefslogtreecommitdiff
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-11 22:00:21 +0200
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-11 22:35:21 +0200
commit1d829c862cf9d7f813f8e7e1a43f0125a4de7220 (patch)
treef467a66bb477a0467c3466096d4684dedde0c13a /Source/cmCacheManager.cxx
parent26ee9e42916b15150cbd02ec9eec81825b0e4611 (diff)
downloadcmake-1d829c862cf9d7f813f8e7e1a43f0125a4de7220.tar.gz
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'
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index cb0ba63a6d..f7fefca6b6 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -2,9 +2,9 @@
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCacheManager.h"
+#include "cmsys/FStream.hxx"
+#include "cmsys/Glob.hxx"
#include <algorithm>
-#include <cmsys/FStream.hxx>
-#include <cmsys/Glob.hxx>
#include <sstream>
#include <stdio.h>
#include <string.h>