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/cmMakefile.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/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index d3ca34a..04b2d27 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3510,7 +3510,7 @@ int cmMakefile::TryCompile(const std::string& srcdir, const std::string& targetName, bool fast, const std::vector<std::string> *cmakeArgs, - std::string *output) + std::string& output) { this->Internal->IsSourceFileTryCompile = fast; // does the binary directory exist ? If not create it... |