summaryrefslogtreecommitdiffstats
path: root/Source/cmFileTime.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmFileTime: Fix overflow on time computationMarc Chevrier2020-11-231-7/+8
| | | | | | On Windows, time starting point is Januray, 1st of 1601. So computing number of nanoseconds from this date exceeds 64bit capabilities.
* Revise include order using clang-format-6.0Kitware Robot2019-10-011-1/+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: modernize-deprecated-headersRegina Pfeifer2019-09-161-1/+1
|
* New cmFileTime classSebastian Holtermann2019-03-181-0/+49
The new cmFileTime class stores the file modification time as an OS independent nanosecond count. Its main use is to load and compare file modification times in nanosecond and second resolution.