cmMakefile::ScopePushPop: make noncopyable

This commit is contained in:
Daniel Pfeifer
2017-04-22 00:12:50 +02:00
parent 41a9765386
commit d921e8eb6c

View File

@@ -717,6 +717,8 @@ public:
}
~ScopePushPop() { this->Makefile->PopScope(); }
private:
ScopePushPop(ScopePushPop const&);
ScopePushPop& operator=(ScopePushPop const&);
cmMakefile* Makefile;
};