[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1568-g28838aa

Stephen Kelly steveire at gmail.com
Fri Jan 11 18:33:06 EST 2013


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  28838aa8afc49a17ccfecd6d6c9ba1704ce47ac4 (commit)
       via  b8a756ed5a7c2eeabf7cea6f83033f31750b0598 (commit)
      from  1f19abff7e917005926a78984e778436a5ccb190 (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=28838aa8afc49a17ccfecd6d6c9ba1704ce47ac4
commit 28838aa8afc49a17ccfecd6d6c9ba1704ce47ac4
Merge: 1f19abf b8a756e
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Jan 11 18:33:04 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jan 11 18:33:04 2013 -0500

    Merge topic 'compatible-INTERFACE-user-properties' into next
    
    b8a756e Add missing return to method.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b8a756ed5a7c2eeabf7cea6f83033f31750b0598
commit b8a756ed5a7c2eeabf7cea6f83033f31750b0598
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat Jan 12 00:31:38 2013 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sat Jan 12 00:31:38 2013 +0100

    Add missing return to method.

diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index c33d781..bbc7f1f 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3555,7 +3555,7 @@ void cmake::DefineProperty(const char *name, cmProperty::ScopeType scope,
 bool cmake::GetIsPropertyDefined(const char *name,
                                  cmProperty::ScopeType scope)
 {
-  this->PropertyDefinitions[scope].find(name) !=
+  return this->PropertyDefinitions[scope].find(name) !=
                                       this->PropertyDefinitions[scope].end();
 }
 

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list