Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Code style: add missed explicit 'this->' | Oleksandr Koval | 2021-01-05 | 1 | -1/+1 |
| | | | | | CMake uses explicit 'this->' style. Using custom clang-tidy check we can detect and fix places where 'this->' was missed. | ||||
* | Modernize: Use #pragma once in all header files | Kitware Robot | 2020-09-03 | 1 | -4/+1 |
| | | | | | | | | | | | | | | | | #pragma once is a widely supported compiler pragma, even though it is not part of the C++ standard. Many of the issues keeping #pragma once from being standardized (distributed filesystems, build farms, hard links, etc.) do not apply to CMake - it is easy to build CMake on a single machine. CMake also does not install any header files which can be consumed by other projects (though cmCPluginAPI.h has been deliberately omitted from this conversion in case anyone is still using it.) Finally, #pragma once has been required to build CMake since at least August 2017 (7f29bbe6 enabled server mode unconditionally, which had been using #pragma once since September 2016 (b13d3e0d)). The fact that we now require C++11 filters out old compilers, and it is unlikely that there is a compiler which supports C++11 but does not support #pragma once. | ||||
* | IWYU: Fix handling of <memory> standard header | Brad King | 2019-07-10 | 1 | -1/+1 |
| | | | | | | | | An old workaround for `std::allocator_traits<>::value_type` lints from IWYU on `std::vector<>` usage breaks IWYU's handling of `<memory>`. Convert the workaround to use the same approach we already use for a workaround of `std::__decay_and_strip<>::::__type` lints. Then update the `<memory>` inclusions to follow the now-correct IWYU lints. | ||||
* | cmFileTimes: New RAII based cmFileTimes class | Sebastian Holtermann | 2019-05-22 | 1 | -0/+40 |
This adds a new RAII based cmFileTimes class. It is supposed to replace the C style cmSystemToolsFileTime interface. |