Skip to content

Commit f3d207e

Browse files
author
Kevin Welton
authored
Update Migrating C++ CX source code to C++ WinRT.md
1 parent 3ead1e6 commit f3d207e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Docs/Migrating C++ CX source code to C++ WinRT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ Mapping C++/CX Platform types to C++/WinRT types
445445

446446
The C++ Windows Runtime language extensions provide several C++/CX specific data types. These reside in the Platform namespace. When you disable Windows Runtime language extensions, you can't use the Platform types (as they aren't standard C++). Therefore, for each, we provide an equivalent type defined using standard C++.
447447

448-
| C++/CX | CX++/WinRT |
448+
| C++/CX | C++/WinRT |
449449
| ---- | ---- |
450450
| `Platform::String^` | `winrt::hstring` |
451451
| `Platform::InvalidArgumentException^` | `winrt::hresult_invalid_argument` |
@@ -595,7 +595,7 @@ Most of the changes you've already seen. We change arrows (->) to dots (.). W
595595
The only remaining change is the change of:
596596
597597
```C++
598-
task<XboxSocialRelationshipResult^> esultTask
598+
task<XboxSocialRelationshipResult^> resultTask
599599
```
600600
to
601601

0 commit comments

Comments
 (0)