Skip to content

Commit 5cebd45

Browse files
authored
Merge branch 'live' into master
2 parents b523c7c + 86db281 commit 5cebd45

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/build/register-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ The [!INCLUDE[vcprx64](../assembler/inline/includes/vcprx64_md.md)] architecture
5656
|XMM3, YMM3|Volatile|Fourth FP argument; fourth vector-type argument when `__vectorcall` is used|
5757
|XMM4, YMM4|Volatile|Must be preserved as needed by caller; fifth vector-type argument when `__vectorcall` is used|
5858
|XMM5, YMM5|Volatile|Must be preserved as needed by caller; sixth vector-type argument when `__vectorcall` is used|
59-
|XMM6:XMM15, YMM6:YMM15|Nonvolatile (XMM), Volatile (upper half of YMM)|Must be preserved as needed by callee. YMM registers must be preserved as needed by caller.|
59+
|XMM6:XMM15, YMM6:YMM15|Nonvolatile (XMM), Volatile (upper half of YMM)|Must be preserved by callee. YMM registers must be preserved as needed by caller.|
6060

6161
## See Also
6262
[x64 Software Conventions](../build/x64-software-conventions.md)
63-
[__vectorcall](../cpp/vectorcall.md)
63+
[__vectorcall](../cpp/vectorcall.md)

docs/standard-library/list-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ The number '30' is in c1 collection 3 times.
636636
Inserts an element constructed in place into a list at a specified position.
637637

638638
```
639-
void emplace_back(iterator Where, Type&& val);
639+
void emplace(iterator Where, Type&& val);
640640
```
641641

642642
### Parameters
@@ -675,7 +675,7 @@ Moved first element: a
675675
```
676676

677677
## <a name="emplace_back"></a> list::emplace_back
678-
Adds an element constructed in place to the beginning of a list.
678+
Adds an element constructed in place to the end of a list.
679679

680680
```
681681
void emplace_back(Type&& val);

0 commit comments

Comments
 (0)