diff options
author | Brad King <brad.king@kitware.com> | 2014-06-16 13:49:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 12:50:08 (GMT) |
commit | 7b85938973782ec6d09b1debe6ad48d3ba887683 (patch) | |
tree | 27be36a8644409a2d8bbc7d5a30f5a4652d264a8 /Source/cmComputeTargetDepends.h | |
parent | 8d15a1bbfbefff919d8a7aa0d04f54d08d1f1a11 (diff) | |
download | CMake-7b85938973782ec6d09b1debe6ad48d3ba887683.zip CMake-7b85938973782ec6d09b1debe6ad48d3ba887683.tar.gz CMake-7b85938973782ec6d09b1debe6ad48d3ba887683.tar.bz2 |
cmComputeTargetDepends: Remove unused 'linking' argument
The AddInterfaceDepends method is never called with a non-true value for
its 'linking' argument. Drop it.
Diffstat (limited to 'Source/cmComputeTargetDepends.h')
-rw-r--r-- | Source/cmComputeTargetDepends.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeTargetDepends.h b/Source/cmComputeTargetDepends.h index 7553816..b99199f 100644 --- a/Source/cmComputeTargetDepends.h +++ b/Source/cmComputeTargetDepends.h @@ -53,7 +53,7 @@ private: bool ComputeFinalDepends(cmComputeComponentGraph const& ccg); void AddInterfaceDepends(int depender_index, const std::string& dependee_name, - bool linking, std::set<std::string> &emitted); + std::set<std::string> &emitted); void AddInterfaceDepends(int depender_index, cmTarget const* dependee, const std::string& config, std::set<std::string> &emitted); |