mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
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:
@@ -3,10 +3,10 @@
|
||||
#ifndef cmGeneratedFileStream_h
|
||||
#define cmGeneratedFileStream_h
|
||||
|
||||
#include <cmConfigure.h>
|
||||
#include "cmConfigure.h"
|
||||
|
||||
#include <cm_codecvt.hxx>
|
||||
#include <cmsys/FStream.hxx>
|
||||
#include "cm_codecvt.hxx"
|
||||
#include "cmsys/FStream.hxx"
|
||||
#include <string>
|
||||
|
||||
// This is the first base class of cmGeneratedFileStream. It will be
|
||||
|
||||
Reference in New Issue
Block a user