Daniel Pfeifer
|
1d829c862c
|
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'
|
2017-04-11 22:35:21 +02:00 |
|
Daniel Pfeifer
|
7c9db8f813
|
clang-tidy: apply performance-unnecessary-value-param fixes
|
2016-12-12 14:04:12 -05:00 |
|
Dāvis Mosāns
|
2ed473b3b8
|
execute_process: Add ENCODING option for Windows child process output
Different applications can use different output encodings.
|
2016-11-30 09:06:51 -05:00 |
|
Daniel Pfeifer
|
7b4244aceb
|
iwyu: Fix more findings
|
2016-11-28 14:06:40 -05:00 |
|
Dāvis Mosāns
|
96103972ea
|
Add cmProcessOutput class to be used for decoding text data
This allows to decode text data we receive from external process which
uses external encoding to our internal encoding.
|
2016-11-14 21:21:20 +02:00 |
|