diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-21 22:33:34 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-21 22:48:19 (GMT) |
commit | bf955e58f7b44d0371ff224738cff25274202ba4 (patch) | |
tree | a5739d5c094d0de568408ceb0fae3eb05752fde9 /Source/cmComputeLinkInformation.h | |
parent | b44659f5e8c66d9a4fc8345f083530442ea240c1 (diff) | |
download | CMake-bf955e58f7b44d0371ff224738cff25274202ba4.zip CMake-bf955e58f7b44d0371ff224738cff25274202ba4.tar.gz CMake-bf955e58f7b44d0371ff224738cff25274202ba4.tar.bz2 |
cmComputeLinkInformation::Item: remove custom copy ctor
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 60878e4..00e3ad2 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -36,12 +36,6 @@ public: , Target(CM_NULLPTR) { } - Item(Item const& item) - : Value(item.Value) - , IsPath(item.IsPath) - , Target(item.Target) - { - } Item(std::string const& v, bool p, cmGeneratorTarget const* target = CM_NULLPTR) : Value(v) |