diff options
author | Brad King <brad.king@kitware.com> | 2013-02-25 18:11:34 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-02-25 18:11:34 (GMT) |
commit | 05529c7109de9b0849a5304e63586bf9989e5fcc (patch) | |
tree | 459cf27bd3fb644357b17ae9c09940f206d0b8ef | |
parent | 20d0b37f4a0d8c08c4bf31440d8e1bc14cdd86b2 (diff) | |
parent | f497dbce93096eb6f0edec982e5f16f9c56520b7 (diff) | |
download | CMake-05529c7109de9b0849a5304e63586bf9989e5fcc.zip CMake-05529c7109de9b0849a5304e63586bf9989e5fcc.tar.gz CMake-05529c7109de9b0849a5304e63586bf9989e5fcc.tar.bz2 |
Merge topic 'cmLocalGenerator_RemoveVirtuals'
f497dbc cmLocalGenerator: remove "virtual" where not used
-rw-r--r-- | Source/cmLocalGenerator.h | 10 |
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() { |