changed return_value:: to return_value_policy:: (#672)

* changed return_value:: to return_value_policy::

* Update functions.rst
This commit is contained in:
thorink 2017-02-17 12:57:39 +01:00 committed by Wenzel Jakob
parent 1d7998e333
commit e72eaa47d2

View File

@ -90,9 +90,10 @@ The following table provides an overview of available policies:
+--------------------------------------------------+----------------------------------------------------------------------------+ +--------------------------------------------------+----------------------------------------------------------------------------+
| :enum:`return_value_policy::automatic` | **Default policy.** This policy falls back to the policy | | :enum:`return_value_policy::automatic` | **Default policy.** This policy falls back to the policy |
| | :enum:`return_value_policy::take_ownership` when the return value is a | | | :enum:`return_value_policy::take_ownership` when the return value is a |
| | pointer. Otherwise, it uses :enum:`return_value::move` or | | | pointer. Otherwise, it uses :enum:`return_value_policy::move` or |
| | :enum:`return_value::copy` for rvalue and lvalue references, respectively. | | | :enum:`return_value_policy::copy` for rvalue and lvalue references, |
| | See above for a description of what all of these different policies do. | | | respectively. See above for a description of what all of these different |
| | policies do. |
+--------------------------------------------------+----------------------------------------------------------------------------+ +--------------------------------------------------+----------------------------------------------------------------------------+
| :enum:`return_value_policy::automatic_reference` | As above, but use policy :enum:`return_value_policy::reference` when the | | :enum:`return_value_policy::automatic_reference` | As above, but use policy :enum:`return_value_policy::reference` when the |
| | return value is a pointer. This is the default conversion policy for | | | return value is a pointer. This is the default conversion policy for |