diff options
author | Brad King <brad.king@kitware.com> | 2014-07-31 16:48:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-31 16:49:51 (GMT) |
commit | 30983ebec1f242888560cff86e8789b3f02be056 (patch) | |
tree | 6d5bb33ef1199ed87e4ce58b08ee036ff2adfd89 /Source/cmCoreTryCompile.cxx | |
parent | b48211d4261840136e750d3d82f195ad48b17a8f (diff) | |
download | CMake-30983ebec1f242888560cff86e8789b3f02be056.zip CMake-30983ebec1f242888560cff86e8789b3f02be056.tar.gz CMake-30983ebec1f242888560cff86e8789b3f02be056.tar.bz2 |
cmGlobalGenerator: Take Build output argument by reference
No call sites pass NULL to the output argument, so take it by
reference to avoid the if(output) conditions. Propagate the
change through the TryCompile APIs that call it.
Diffstat (limited to 'Source/cmCoreTryCompile.cxx')
-rw-r--r-- | Source/cmCoreTryCompile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCoreTryCompile.cxx b/Source/cmCoreTryCompile.cxx index a3f3277..ed19851 100644 --- a/Source/cmCoreTryCompile.cxx +++ b/Source/cmCoreTryCompile.cxx @@ -489,7 +489,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv) targetName, this->SrcFileSignature, &cmakeFlags, - &output); + output); if ( erroroc ) { cmSystemTools::SetErrorOccured(); |