diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-11 19:29:03 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-12 10:02:09 (GMT) |
commit | 60a407b01c40921bed2fd30336fc09b9ad48e154 (patch) | |
tree | b133a6b234fa27ada9f3d6c4de607ae3796c93b8 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | addd1ce4024498b00499f971ef065537209b51a6 (diff) | |
download | CMake-60a407b01c40921bed2fd30336fc09b9ad48e154.zip CMake-60a407b01c40921bed2fd30336fc09b9ad48e154.tar.gz CMake-60a407b01c40921bed2fd30336fc09b9ad48e154.tar.bz2 |
cmLocalUnixMakefileGenerator3: Pass strings instead of recomputing them
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index ced2dbd..ba882da 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -231,7 +231,8 @@ protected: // Helper methods for dependency updates. bool ScanDependencies( - const std::string& targetDir, + std::string const& targetDir, std::string const& dependFile, + std::string const& internalDependFile, std::map<std::string, cmDepends::DependencyVector>& validDeps); void CheckMultipleOutputs(bool verbose); |