From d921e8eb6c0ae7e8ad2db1f599de1d5c08dd92ea Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Sat, 22 Apr 2017 00:12:50 +0200 Subject: cmMakefile::ScopePushPop: make noncopyable --- Source/cmMakefile.h | 2 ++ 1 file changed, 2 insertions(+) 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; }; -- cgit v0.12