[Cmake-commits] CMake branch, next, updated. v2.8.12.1-7281-g97a5467

Stephen Kelly steveire at gmail.com
Sun Jan 26 05:33:57 EST 2014


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  97a54672922ee9f81171fda8b769036e640c1d12 (commit)
       via  d1a3e809a93cc00d4e4690dab219faefe6b33b1e (commit)
      from  34ccdfe7c30f0cff490c2eb9258a9ce95e1f40f2 (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=97a54672922ee9f81171fda8b769036e640c1d12
commit 97a54672922ee9f81171fda8b769036e640c1d12
Merge: 34ccdfe d1a3e80
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Jan 26 05:33:56 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Jan 26 05:33:56 2014 -0500

    Merge topic 'disallowed-cxx-subset' into next
    
    d1a3e809 Extend set insert non-use doc.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d1a3e809a93cc00d4e4690dab219faefe6b33b1e
commit d1a3e809a93cc00d4e4690dab219faefe6b33b1e
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Jan 26 11:33:06 2014 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Jan 26 11:33:06 2014 +0100

    Extend set insert non-use doc.

diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst
index dc76411..d169e1a 100644
--- a/Help/manual/cmake-developer.7.rst
+++ b/Help/manual/cmake-developer.7.rst
@@ -129,7 +129,7 @@ A loop must be used instead:
 std::set::insert
 ----------------
 
-Use of ``std::set::insert`` is not allowed with a source set:
+Use of ``std::set::insert`` is not allowed with any source container:
 
 .. code-block:: c++
 
@@ -140,13 +140,15 @@ A loop must be used instead:
 
 .. code-block:: c++
 
-  std::set<cmTarget*>::const_iterator it = targets.begin();
-  const std::set<cmTarget*>::const_iterator end = targets.end();
+  ConstIterator it = targets.begin();
+  const ConstIterator end = targets.end();
   for ( ; it != end; ++it)
     {
     theSet.insert(*it);
     }
 
+.. MSVC6, SunCC 5.9
+
 Template Parameter Defaults
 ---------------------------
 

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

Summary of changes:
 Help/manual/cmake-developer.7.rst |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list