Merge topic 'cmLocalGenerator_RemoveVirtuals'

f497dbc cmLocalGenerator: remove "virtual" where not used
This commit is contained in:
Brad King 2013-02-25 13:11:34 -05:00 committed by CMake Topic Stage
commit 05529c7109
1 changed files with 5 additions and 5 deletions

View File

@ -49,29 +49,29 @@ public:
/**
* Calls TraceVSDependencies() on all targets of this generator.
*/
virtual void TraceDependencies();
void TraceDependencies();
virtual void AddHelperCommands() {}
/**
* Perform any final calculations prior to generation
*/
virtual void ConfigureFinalPass();
void ConfigureFinalPass();
/**
* Generate the install rules files in this directory.
*/
virtual void GenerateInstallRules();
void GenerateInstallRules();
/**
* Generate the test files for tests.
*/
virtual void GenerateTestFiles();
void GenerateTestFiles();
/**
* Generate a manifest of target files that will be built.
*/
virtual void GenerateTargetManifest();
void GenerateTargetManifest();
///! Get the makefile for this generator
cmMakefile *GetMakefile() {