summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-11-25 15:28:57 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-11-25 15:28:57 (GMT)
commitc7b9fad117a8036bb1a1bece633bacff426d30fb (patch)
tree9a9df25a87a518e7c0d1381350a0fab2f9274ae9 /Help
parenta11dda1c4883eddf763ba1eb2979b45220886b01 (diff)
parent12cb0b868c462ec64f1578f5450e64246986c58d (diff)
downloadCMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.zip
CMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.tar.gz
CMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.tar.bz2
Merge topic 'remove-ancient-msvc-workarounds'
12cb0b86 Help: Update developer manual with some C++ features now permitted. ba74465f cmGeneratorTarget: Remove MSVC7 workaround 41363c0c VisualStudio: Remove MSVC6 compatibility macro. 4efcfe52 cmSystemTools: Remove MSVC6 compatibility define. 5f4695cd cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro. 7a064337 cmFindCommon: Remove MSVC6 workaround for nested struct private access. fdb73547 cmTarget: Remove std::min and std::max MSVC6 compatibility code.
Diffstat (limited to 'Help')
-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
------