summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobVerificationManager.h
Commit message (Collapse)AuthorAgeFilesLines
* Revise include order using clang-format-6.0Kitware Robot2019-10-011-2/+2
| | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
* clang-tidy: Replace typedef with usingRegina Pfeifer2019-09-041-1/+1
| | | | | | | | Automate the conversion with perl -i -0pe 's/typedef ([^;]*) ([^ ]+);/using $2 = $1;/g' then manually fix a few places.
* Fix invalid ///! doxygen comment line startsSebastian Holtermann2019-03-311-6/+6
| | | | | In various places `///!` was used to start a comment line. This is not valid Doygen syntax. This patch replaces `///!` comment starts with `//!`.
* cleanup: Prefer compiler provided special member functionsRegina Pfeifer2019-01-251-4/+0
|
* clang-tidy: Use `= default`Regina Pfeifer2019-01-251-2/+2
| | | | | | Suppress some cases in `Source/cmGeneratorExpressionNode.cxx` and `Source/cmUVHandlePtr.h` where a few older compilers require a user-defined default constructor (with `{}`).
* clang-tidy: Pass by valueRegina Pfeifer2019-01-221-4/+4
|
* clang-tidy: Use default member initializationRegina Pfeifer2018-12-151-5/+2
|
* cmState: Clear GlobVerificationManager state on ResetShane Parris2018-08-091-0/+3
| | | | | | It should not persist across multiple configure rounds. Fixes: #18208
* Add cmGlobVerificationManager class, integrate with cmake and cmStateShane Parris2018-03-291-0/+89