reference: make 'Move and copied types' section more simple

This commit is contained in:
Tshepang Lekhonkhobe 2015-07-06 22:10:21 +02:00
parent 912ab64a0d
commit dd78ffe828

View File

@ -2509,9 +2509,8 @@ Here are some examples:
#### Moved and copied types #### Moved and copied types
When a [local variable](#variables) is used as an When a [local variable](#variables) is used as an
[rvalue](#lvalues,-rvalues-and-temporaries) the variable will either be moved [rvalue](#lvalues,-rvalues-and-temporaries), the variable will be copied
or copied, depending on its type. All values whose type implements `Copy` are if its type implements `Copy`. All others are moved.
copied, all others are moved.
### Literal expressions ### Literal expressions