C++, small cleanup after PR #4189

This commit is contained in:
Jakob Lykke Andersen 2017-11-25 14:37:27 +01:00
parent 697248aec7
commit 466241d43a
2 changed files with 7 additions and 4 deletions

View File

@ -75,7 +75,8 @@ Features removed
* ``sphinx.util.nodes.process_only_nodes()`` * ``sphinx.util.nodes.process_only_nodes()``
* LaTeX environment ``notice``, use ``sphinxadmonition`` instead * LaTeX environment ``notice``, use ``sphinxadmonition`` instead
* LaTeX ``\sphinxstylethead``, use ``\sphinxstyletheadfamily`` * LaTeX ``\sphinxstylethead``, use ``\sphinxstyletheadfamily``
* C++, support of function concepts * C++, support of function concepts. Thanks to mickk-on-cpp.
Bugs fixed Bugs fixed
---------- ----------

View File

@ -722,7 +722,8 @@ a visibility statement (``public``, ``private`` or ``protected``).
.. rst:directive:: .. cpp:concept:: template-parameter-list name .. rst:directive:: .. cpp:concept:: template-parameter-list name
.. warning:: The support for concepts is experimental. It is based on the .. warning:: The support for concepts is experimental. It is based on the
Concepts Technical Specification, and the features may change as the TS evolves. current draft standard and the Concepts Technical Specification.
The features may change as they evolve.
Describe a concept. It must have exactly 1 template parameter list. The name may be a Describe a concept. It must have exactly 1 template parameter list. The name may be a
nested name. Example:: nested name. Example::
@ -774,8 +775,9 @@ Some directives support options:
Constrained Templates Constrained Templates
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
.. warning:: The support for constrained templates is experimental. It is based on the .. warning:: The support for concepts is experimental. It is based on the
Concepts Technical Specification, and the features may change as the TS evolves. current draft standard and the Concepts Technical Specification.
The features may change as they evolve.
.. note:: Sphinx does not currently support ``requires`` clauses. .. note:: Sphinx does not currently support ``requires`` clauses.