[Cmake-commits] CMake branch, next, updated. v2.8.9-542-ga9a5432

Stephen Kelly steveire at gmail.com
Sun Sep 16 04:42:23 EDT 2012


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  a9a543273fb2cfd32543f7406a6dea7a5e68a57e (commit)
       via  122695ea63ec12f92c64d0d95cd1dd8572bed18e (commit)
      from  cf71691e35937162d92a089277800bdbf18fd70b (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=a9a543273fb2cfd32543f7406a6dea7a5e68a57e
commit a9a543273fb2cfd32543f7406a6dea7a5e68a57e
Merge: cf71691 122695e
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Sep 16 04:42:21 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Sep 16 04:42:21 2012 -0400

    Merge topic 'generator-expression-refactor' into next
    
    122695e Remove const which a few compilers claim is meaningless.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=122695ea63ec12f92c64d0d95cd1dd8572bed18e
commit 122695ea63ec12f92c64d0d95cd1dd8572bed18e
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Sep 16 10:39:24 2012 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Sep 16 10:40:14 2012 +0200

    Remove const which a few compilers claim is meaningless.
    
    I don't necessarily agree :).

diff --git a/Source/cmGeneratorExpressionEvaluator.cxx b/Source/cmGeneratorExpressionEvaluator.cxx
index b7c428c..1cee239 100644
--- a/Source/cmGeneratorExpressionEvaluator.cxx
+++ b/Source/cmGeneratorExpressionEvaluator.cxx
@@ -302,7 +302,7 @@ TargetFilesystemArtifact<false, true, true, false> targetSoNameFileDirNode;
 
 //----------------------------------------------------------------------------
 static const
-cmGeneratorExpressionNode* const GetNode(const std::string &identifier)
+cmGeneratorExpressionNode* GetNode(const std::string &identifier)
 {
   if (identifier == "0")
     return &zeroNode;

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

Summary of changes:
 Source/cmGeneratorExpressionEvaluator.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list