https://github.com/Kitware/CMake
Revision 3039fd7a2934f726b37ba4ef8379364441241e7d authored by Sebastian Holtermann on 12 March 2019, 11:44:30 UTC, committed by Sebastian Holtermann on 13 March 2019, 17:01:03 UTC
The file stat caching feature of the local cmFileTimeComparison instance is
unused in the addressed context.  To avoid the allocation and initialization
overhead of cmFileTimeComparison use cmSystemTools::FileTimeCompare instead.
1 parent b96c3c7
Raw File
Tip revision: 3039fd7a2934f726b37ba4ef8379364441241e7d authored by Sebastian Holtermann on 12 March 2019, 11:44:30 UTC
cmDependsC: Use faster cmSystemTools::FileTimeCompare
Tip revision: 3039fd7
.clang-format
---
# This configuration requires clang-format version 6.0 exactly.
BasedOnStyle: Mozilla
AlignOperands: false
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
  AfterClass:      true
  AfterEnum:       true
  AfterFunction:   true
  AfterStruct:     true
  AfterUnion:      true
BreakBeforeBraces: Custom
ColumnLimit: 79
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
...
back to top