Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Delete some default constructors and assignment operators | Albert Astals Cid | 2019-02-15 | 1 | -0/+3 |
| | | | | | | They are unused, but if someone used them they would lead to problems since they would copy the internal raw pointers and the destructor would cause double delete | ||||
* | cmWorkingDirectory: Check success of current dir changes | Craig Scott | 2018-03-08 | 1 | -0/+17 |
| | |||||
* | Use quotes for non-system includes | Daniel Pfeifer | 2017-04-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | 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' | ||||
* | cmWorkingDirectory: add class for changing the workdir | Ben Boeckel | 2017-03-06 | 1 | -0/+25 |