summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 22:12:50 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 22:48:18 (GMT)
commitd921e8eb6c0ae7e8ad2db1f599de1d5c08dd92ea (patch)
tree0c09d626a741eddf6e5ed795c3bc02777f7914ab /Source/cmMakefile.h
parent41a97653861596b2ead1a078eccee876abec735d (diff)
downloadCMake-d921e8eb6c0ae7e8ad2db1f599de1d5c08dd92ea.zip
CMake-d921e8eb6c0ae7e8ad2db1f599de1d5c08dd92ea.tar.gz
CMake-d921e8eb6c0ae7e8ad2db1f599de1d5c08dd92ea.tar.bz2
cmMakefile::ScopePushPop: make noncopyable
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 7543a89..2f4cea6 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -717,6 +717,8 @@ public:
}
~ScopePushPop() { this->Makefile->PopScope(); }
private:
+ ScopePushPop(ScopePushPop const&);
+ ScopePushPop& operator=(ScopePushPop const&);
cmMakefile* Makefile;
};