diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-25 10:21:07 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-25 12:51:22 (GMT) |
commit | b289243d993b697594a5593033b9178b0511a177 (patch) | |
tree | bb329ff47d033e9dce705780702ca9eb4d9fb279 /Modules/CMakeCXXCompiler.cmake.in | |
parent | bf9afa1e15f9d61850143ad279d1fc1d515c84d1 (diff) | |
download | CMake-b289243d993b697594a5593033b9178b0511a177.zip CMake-b289243d993b697594a5593033b9178b0511a177.tar.gz CMake-b289243d993b697594a5593033b9178b0511a177.tar.bz2 |
cmGlobalGenerator: Inline `aRange` acquisition in `for(x:aRange)` invocations
Changes the following code snippets in `cmGlobalGenerator`
```
AType aRange = object.getRange();
for ( auto & item: aRange) {
```
to
```
for ( auto & item: object.getRange()) {
```
Diffstat (limited to 'Modules/CMakeCXXCompiler.cmake.in')
0 files changed, 0 insertions, 0 deletions