This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  f6180d8aee61e7f170caadcce23eda6623665eba (commit)
       via  f497dbce93096eb6f0edec982e5f16f9c56520b7 (commit)
      from  26d2380d3a1090170b4607217db7558576983e5d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f6180d8aee61e7f170caadcce23eda6623665eba
commit f6180d8aee61e7f170caadcce23eda6623665eba
Merge: 26d2380 f497dbc
Author:     Alexander Neundorf <neund...@kde.org>
AuthorDate: Wed Feb 20 14:12:13 2013 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Wed Feb 20 14:12:13 2013 -0500

    Merge topic 'cmLocalGenerator_RemoveVirtuals' into next
    
    f497dbc cmLocalGenerator: remove "virtual" where not used


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f497dbce93096eb6f0edec982e5f16f9c56520b7
commit f497dbce93096eb6f0edec982e5f16f9c56520b7
Author:     Alex Neundorf <neund...@kde.org>
AuthorDate: Wed Feb 20 19:48:39 2013 +0100
Commit:     Alex Neundorf <neund...@kde.org>
CommitDate: Wed Feb 20 19:48:39 2013 +0100

    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

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() {

-----------------------------------------------------------------------

Summary of changes:
 Source/cmLocalGenerator.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to