Regina Pfeifer
|
62e5f72289
|
clang-tidy: Replace typedef with using
|
2019-09-03 13:21:26 -04:00 |
|
Gregor Jasny
|
cf320f7cd7
|
Replace boolean implib parameters with enum
Named enumeration values are much clearer at call sites and add more
type safety.
|
2017-04-20 10:22:33 -04:00 |
|
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 |
|
Ben Boeckel
|
322425faca
|
cmStateTypes: document that the ordering of targets is important
The ordering is assumed in many places throughout the code and
modification of the enumeration should be done carefully.
|
2017-03-07 09:30:07 -05:00 |
|
Daniel Pfeifer
|
2e620f0b38
|
Fix several include-what-you-use findings
|
2016-11-08 09:42:04 -05:00 |
|
Stephen Kelly
|
27be1d8152
|
cmState: Move extracted declarations to a separate file
|
2016-10-19 15:40:59 +02:00 |
|