summaryrefslogtreecommitdiffstats
path: root/Help/dev/source.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Help/dev/source.rst')
-rw-r--r--Help/dev/source.rst10
1 files changed, 2 insertions, 8 deletions
diff --git a/Help/dev/source.rst b/Help/dev/source.rst
index 57de818..6697d38 100644
--- a/Help/dev/source.rst
+++ b/Help/dev/source.rst
@@ -40,13 +40,6 @@ building on older toolchains some constructs need to be handled with care:
derived from non-copyable classes must also be made non-copyable explicitly
with ``CM_DISABLE_COPY``.
-* Use ``size_t`` instead of ``std::size_t``.
-
- Various implementations have differing implementation of ``size_t``.
- When assigning the result of ``.size()`` on a container for example,
- the result should be assigned to ``size_t`` not to ``std::size_t``,
- ``unsigned int`` or similar types.
-
Source Tree Layout
==================
@@ -56,7 +49,7 @@ The CMake source tree is organized as follows.
Shell and editor integration files.
* ``Help/``:
- Documentation.
+ Documentation. See the `CMake Documentation Guide`_.
* ``Help/dev/``:
Developer documentation.
@@ -92,4 +85,5 @@ The CMake source tree is organized as follows.
* ``Utilities/Release/``:
Scripts used to package CMake itself for distribution on ``cmake.org``.
+.. _`CMake Documentation Guide`: documentation.rst
.. _`Tests/README.rst`: ../../Tests/README.rst