summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-31 16:48:46 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-31 16:49:51 (GMT)
commit30983ebec1f242888560cff86e8789b3f02be056 (patch)
tree6d5bb33ef1199ed87e4ce58b08ee036ff2adfd89 /Source/cmMakefile.h
parentb48211d4261840136e750d3d82f195ad48b17a8f (diff)
downloadCMake-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.h')
-rw-r--r--Source/cmMakefile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 3a40c1c..d728a62 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -130,7 +130,7 @@ public:
const std::string& projectName, const std::string& targetName,
bool fast,
const std::vector<std::string> *cmakeArgs,
- std::string *output);
+ std::string& output);
bool GetIsSourceFileTryCompile() const;