summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2013-02-20 18:48:39 (GMT)
committerAlex Neundorf <neundorf@kde.org>2013-02-20 18:48:39 (GMT)
commitf497dbce93096eb6f0edec982e5f16f9c56520b7 (patch)
treefcc2009e56151e61338e8bc02f5966d5b036c618 /Source/cmLocalGenerator.h
parentf7029572ca5948ff87ba0c6e8aaff35f6fdab4f1 (diff)
downloadCMake-f497dbce93096eb6f0edec982e5f16f9c56520b7.zip
CMake-f497dbce93096eb6f0edec982e5f16f9c56520b7.tar.gz
CMake-f497dbce93096eb6f0edec982e5f16f9c56520b7.tar.bz2
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
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index 84cf6ca..a1c34f0 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -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() {