diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-18 14:38:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:26:37 (GMT) |
commit | 8090904198238bce7108d7734099f35c9d1bfab2 (patch) | |
tree | 3c4579e7d87695828ed7c55eeb6da18b9101c2cd /Source/cmMakefile.h | |
parent | f3af9517ff6152a9e1548d73404ce64991855482 (diff) | |
download | CMake-8090904198238bce7108d7734099f35c9d1bfab2.zip CMake-8090904198238bce7108d7734099f35c9d1bfab2.tar.gz CMake-8090904198238bce7108d7734099f35c9d1bfab2.tar.bz2 |
cmMakefile: Disable copy constructor.
It is no longer necessary to be able to copy it. Additionally, this
gives us one less reason to copy cmTarget.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 73d6910..e3566c5 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -75,7 +75,6 @@ public: * Construct an empty makefile. */ cmMakefile(); - cmMakefile(const cmMakefile& mf); /** * Destructor. @@ -988,6 +987,8 @@ protected: cmExecutionStatus &status); private: + cmMakefile(const cmMakefile& mf); + cmMakefile& operator=(const cmMakefile& mf); void Initialize(); |