cmLocalGenerator: remove "virtual" where not used
This patch makes several functions of cmLocalGenerator which are marked as virtual non-virtual, since they are not reimplemented anywhere. Alex
This commit is contained in:
parent
f7029572ca
commit
f497dbce93
|
@ -49,29 +49,29 @@ public:
|
||||||
/**
|
/**
|
||||||
* Calls TraceVSDependencies() on all targets of this generator.
|
* Calls TraceVSDependencies() on all targets of this generator.
|
||||||
*/
|
*/
|
||||||
virtual void TraceDependencies();
|
void TraceDependencies();
|
||||||
|
|
||||||
virtual void AddHelperCommands() {}
|
virtual void AddHelperCommands() {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform any final calculations prior to generation
|
* Perform any final calculations prior to generation
|
||||||
*/
|
*/
|
||||||
virtual void ConfigureFinalPass();
|
void ConfigureFinalPass();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate the install rules files in this directory.
|
* Generate the install rules files in this directory.
|
||||||
*/
|
*/
|
||||||
virtual void GenerateInstallRules();
|
void GenerateInstallRules();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate the test files for tests.
|
* Generate the test files for tests.
|
||||||
*/
|
*/
|
||||||
virtual void GenerateTestFiles();
|
void GenerateTestFiles();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate a manifest of target files that will be built.
|
* Generate a manifest of target files that will be built.
|
||||||
*/
|
*/
|
||||||
virtual void GenerateTargetManifest();
|
void GenerateTargetManifest();
|
||||||
|
|
||||||
///! Get the makefile for this generator
|
///! Get the makefile for this generator
|
||||||
cmMakefile *GetMakefile() {
|
cmMakefile *GetMakefile() {
|
||||||
|
|
Loading…
Reference in New Issue