|
@@ -348,6 +348,9 @@ public:
|
|
this->Makefile->Backtrace = this->Makefile->Backtrace.Pop();
|
|
this->Makefile->Backtrace = this->Makefile->Backtrace.Pop();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ cmMakefileCall(const cmMakefileCall&) = delete;
|
|
|
|
+ cmMakefileCall& operator=(const cmMakefileCall&) = delete;
|
|
|
|
+
|
|
private:
|
|
private:
|
|
cmMakefile* Makefile;
|
|
cmMakefile* Makefile;
|
|
};
|
|
};
|
|
@@ -439,6 +442,9 @@ public:
|
|
~IncludeScope();
|
|
~IncludeScope();
|
|
void Quiet() { this->ReportError = false; }
|
|
void Quiet() { this->ReportError = false; }
|
|
|
|
|
|
|
|
+ IncludeScope(const IncludeScope&) = delete;
|
|
|
|
+ IncludeScope& operator=(const IncludeScope&) = delete;
|
|
|
|
+
|
|
private:
|
|
private:
|
|
cmMakefile* Makefile;
|
|
cmMakefile* Makefile;
|
|
bool NoPolicyScope;
|
|
bool NoPolicyScope;
|
|
@@ -606,6 +612,9 @@ public:
|
|
|
|
|
|
void Quiet() { this->ReportError = false; }
|
|
void Quiet() { this->ReportError = false; }
|
|
|
|
|
|
|
|
+ ListFileScope(const ListFileScope&) = delete;
|
|
|
|
+ ListFileScope& operator=(const ListFileScope&) = delete;
|
|
|
|
+
|
|
private:
|
|
private:
|
|
cmMakefile* Makefile;
|
|
cmMakefile* Makefile;
|
|
bool ReportError;
|
|
bool ReportError;
|
|
@@ -1497,6 +1506,9 @@ public:
|
|
|
|
|
|
void Quiet() { this->ReportError = false; }
|
|
void Quiet() { this->ReportError = false; }
|
|
|
|
|
|
|
|
+ BuildsystemFileScope(const BuildsystemFileScope&) = delete;
|
|
|
|
+ BuildsystemFileScope& operator=(const BuildsystemFileScope&) = delete;
|
|
|
|
+
|
|
private:
|
|
private:
|
|
cmMakefile* Makefile;
|
|
cmMakefile* Makefile;
|
|
cmGlobalGenerator* GG;
|
|
cmGlobalGenerator* GG;
|