summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkLineComputer.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 22:45:45 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 22:48:20 (GMT)
commit99d50d2b25d20ffe34bb081fb386b39612d938d7 (patch)
treea343db4e23b169a4f0924cb5bc7d15642f02c20d /Source/cmLinkLineComputer.h
parent44b8debff4fb2fff6f784c0e5dd4fcb78f113d21 (diff)
downloadCMake-99d50d2b25d20ffe34bb081fb386b39612d938d7.zip
CMake-99d50d2b25d20ffe34bb081fb386b39612d938d7.tar.gz
CMake-99d50d2b25d20ffe34bb081fb386b39612d938d7.tar.bz2
cmLinkLineComputer: make noncopyable
Diffstat (limited to 'Source/cmLinkLineComputer.h')
-rw-r--r--Source/cmLinkLineComputer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h
index bf65347..d8dacf3 100644
--- a/Source/cmLinkLineComputer.h
+++ b/Source/cmLinkLineComputer.h
@@ -41,6 +41,9 @@ public:
std::string const& config);
protected:
+ cmLinkLineComputer(cmLinkLineComputer const&);
+ cmLinkLineComputer& operator=(cmLinkLineComputer const&);
+
std::string ComputeLinkLibs(cmComputeLinkInformation& cli);
std::string ComputeRPath(cmComputeLinkInformation& cli);