Skip to content

Commit a0d5eed

Browse files
TylerMSFTTylerMSFT
authored andcommitted
taxonomy
1 parent f2716ba commit a0d5eed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/docfx.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@
126126
"build-insights/**.md": "tools",
127127
"c-language/**.md": "c-language",
128128
"c-runtime-library/**.md": "ucrt",
129-
"cloud/**.md": "cpp-azure",
129+
"cloud/**.md": "azure-development",
130130
"code-quality/**.md": "tools",
131131
"cpp/**.md": "cpp-lang",
132-
"cppcx/**.md": "cpp-cx",
132+
"cppcx/**.md": "cpp-cx-lang",
133133
"cross-platform/**.md": "tools",
134134
"data/**.md": "data-access",
135135
"dotnet/**.md": "cli-lang",
@@ -139,7 +139,7 @@
139139
"ide/**.md": "ide",
140140
"intrinsics/**.md": "tools",
141141
"linux/**.md": "linux-development",
142-
"mfc/**.md": "mfc",
142+
"mfc/**.md": "mfc-library",
143143
"overview/**.md": "tools",
144144
"parallel/amp/**.md": "parallel-programming",
145145
"parallel/concrt/**.md": "parallel-programming",

docs/overview/cpp-conformance-improvements-2019.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ We fixed a minor type traits bug, where `add_const_t` and related functions are
465465
466466
### char8_t
467467
468-
[P0482r6](https://wg21.link/p0482r6). C++20 adds a new character type that is used to represent UTF-8 code units. `u8` string literals in C++20 have type `const char8_t[N]` instead of `const char[N]`, which was the case previously. Similar changes have been proposed for the C standard in [N2231](https://wg14.link/n2231). Suggestions for **`char8_t`** backward compatibility remediation are given in [P1423r3](https://wg21.link/p1423r3). The Microsoft C++ compiler adds support for **`char8_t`** in Visual Studio 2019 version 16.1 when you specify the [`/Zc:char8_t`](../build/reference/zc-char8-t.md) compiler option. It can be reverted to C++17 behavior via **`/Zc:char8_t-`**. The EDG compiler that powers IntelliSense doesn't yet support it in Visual Studio 2019 version 16.1. You may see spurious IntelliSense-only errors that don't affect the actual compilation.
468+
[P0482r6](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0482r6.html). C++20 adds a new character type that is used to represent UTF-8 code units. `u8` string literals in C++20 have type `const char8_t[N]` instead of `const char[N]`, which was the case previously. Similar changes have been proposed for the C standard in [N2231](https://wg14.link/n2231). Suggestions for **`char8_t`** backward compatibility remediation are given in [P1423r3](https://wg21.link/p1423r3). The Microsoft C++ compiler adds support for **`char8_t`** in Visual Studio 2019 version 16.1 when you specify the [`/Zc:char8_t`](../build/reference/zc-char8-t.md) compiler option. It can be reverted to C++17 behavior via **`/Zc:char8_t-`**. The EDG compiler that powers IntelliSense doesn't yet support it in Visual Studio 2019 version 16.1. You may see spurious IntelliSense-only errors that don't affect the actual compilation.
469469
470470
#### Example
471471

0 commit comments

Comments
 (0)