summaryrefslogtreecommitdiffstats
path: root/Help/manual/cmake-developer.7.rst
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-11-20 22:11:38 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-11-20 22:11:38 (GMT)
commit12cb0b868c462ec64f1578f5450e64246986c58d (patch)
treef32018e80657df1b18aa7d93efefddc82765f7f7 /Help/manual/cmake-developer.7.rst
parentba74465fbcd2509415397c1df93b1c86e70a45ab (diff)
downloadCMake-12cb0b868c462ec64f1578f5450e64246986c58d.zip
CMake-12cb0b868c462ec64f1578f5450e64246986c58d.tar.gz
CMake-12cb0b868c462ec64f1578f5450e64246986c58d.tar.bz2
Help: Update developer manual with some C++ features now permitted.
Diffstat (limited to 'Help/manual/cmake-developer.7.rst')
-rw-r--r--Help/manual/cmake-developer.7.rst8
1 files changed, 1 insertions, 7 deletions
diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst
index 0884a59..34e3225 100644
--- a/Help/manual/cmake-developer.7.rst
+++ b/Help/manual/cmake-developer.7.rst
@@ -147,7 +147,7 @@ A loop must be used instead:
theSet.insert(*it);
}
-.. MSVC6, SunCC 5.9
+.. SunCC 5.9
Template Parameter Defaults
---------------------------
@@ -177,12 +177,6 @@ this does not work with other ancient compilers:
and invoke it with the value ``0`` explicitly in all cases.
-std::min and std::max
----------------------
-
-``min`` and ``max`` are defined as macros on some systems. ``std::min`` and
-``std::max`` may not be used. Use ``cmMinimum`` and ``cmMaximum`` instead.
-
size_t
------