Skip to content

Commit 78310ab

Browse files
TylerMSFTTylerMSFT
authored andcommitted
fix links
1 parent 6840a86 commit 78310ab

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/overview/whats-new-cpp-docs.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,17 @@ This article lists major changes to the Microsoft C++ docs May 2023 through Augu
7474
- [Build and run a C++ console app project](../build/vscpp-step-2-build.md) - Updated steps to accommodate Visual Studio version differences regarding the location of the debug folder.
7575
- [`/ZW` (Windows Runtime Compilation)](../build/reference/zw-windows-runtime-compilation.md) - Added a note about an incompatibility
7676
- [Configure and build with CMake Presets in Visual Studio](../build/cmake-presets-vs.md) - Updated supported CMake and *`CMakePresets.json`* versions
77-
- [`/Zc:lambda` (Enable updated lambda processor)](../build/reference/zc-lambda.md) - Added note that it is implied by `/permissive-`
77+
- [`/Zc:lambda` (Enable updated lambda processor)](../build/reference/zc-lambda.md) - Added note that `/permissive-` implies `/Zc:lambda`.
7878
- [C/C++ Property Pages](../build/reference/c-cpp-prop-page.md) - Added description for C language and building ISO standard library modules properties.
7979
- [Overview of ARM64 ABI conventions](../build/arm64-windows-abi-conventions.md) - Clarified terminology regarding register volatility.
8080

8181
### C++ in Visual Studio
8282

8383
**New articles**
8484

85-
- [Visual Studio Tools for Unreal Engine overview](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-overview.md)
86-
- [Install Visual Studio Tools for Unreal Engine](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-install.md)
87-
- [Quickstart: Visual Studio Tools for Unreal Engine](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-quickstart.md)
85+
- [Visual Studio Tools for Unreal Engine overview](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-overview)
86+
- [Install Visual Studio Tools for Unreal Engine](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-install)
87+
- [Quickstart: Visual Studio Tools for Unreal Engine](/visualstudio/gamedev/unreal/get-started/vs-tools-unreal-quickstart)
8888

8989
**Updated articles**
9090

@@ -163,11 +163,11 @@ This article lists major changes to the Microsoft C++ docs May 2023 through Augu
163163

164164
**Updated articles**
165165

166-
- [Microsoft Visual C++ Redistributable latest supported downloads](../windows/latest-supported-vc-redist.md) - Noted that VS 2012 reached end of extended support and clarified that the Visual C++ Redistributable for Visual Studio 2015-2022 does not have separate packages for different languages.
166+
- [Microsoft Visual C++ Redistributable latest supported downloads](../windows/latest-supported-vc-redist.md) - Noted that VS 2012 reached end of extended support and clarified that the Visual C++ Redistributable for Visual Studio 2015-2022 doesn't have separate packages for different languages.
167167

168168
### Community contributors
169169

170-
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! Learn how to contribute by following the links under "Get involved" in the [what's new landing page](index.yml).
170+
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See our [contributor guide](https://learn.microsoft.com/contribute) if you'd like to learn how to contribute.
171171

172172
- [moonlit-melody](https://github.com/moonlit-melody) - melody ![4 pull requests.](https://img.shields.io/badge/Merged%20Pull%20Requests-4-green)
173173
- [AlexGuteniev](https://github.com/AlexGuteniev) - Alex Guteniev ![2 pull requests.](https://img.shields.io/badge/Merged%20Pull%20Requests-2-green)
@@ -196,7 +196,7 @@ For what's new related to C++ in Visual Studio, see [What's new for C++ in Visua
196196
- [`setlocale`, `_wsetlocale`](../c-runtime-library/reference/setlocale-wsetlocale.md) - Clarified behavior for invalid arguments.
197197
- [`_getch`, `_getwch`](../c-runtime-library/reference/getch-getwch.md) - Removed statement that the function can't read Ctrl+C.
198198
- [`sprintf`, `_sprintf_l`, `swprintf`, `_swprintf`, `_swprintf_l`, `__swprintf_l`](../c-runtime-library/reference/sprintf-sprintf-l-swprintf-swprintf-l-swprintf-l.md) - Documented `_swprintf` and how `_CRT_NON_CONFORMING_SWPRINTFS` maps calls to `swprintf` to `_swprintf`.
199-
- [`strtok`, `_strtok_l`, `wcstok`, `_wcstok_l`, `_mbstok`, `_mbstok_l`](../c-runtime-library/reference/strtok-strtok-l-wcstok-wcstok-l-mbstok-mbstok-l.md) - Noted the non-standard `wcstok()` and how to call it.
199+
- [`strtok`, `_strtok_l`, `wcstok`, `_wcstok_l`, `_mbstok`, `_mbstok_l`](../c-runtime-library/reference/strtok-strtok-l-wcstok-wcstok-l-mbstok-mbstok-l.md) - Noted the nonstandard `wcstok()` and how to call it.
200200
- [`wcstombs`, `_wcstombs_l`](../c-runtime-library/reference/wcstombs-wcstombs-l.md) - Added note about UTF-8 support.
201201
- [`fma`, `fmaf`, `fmal`](../c-runtime-library/reference/fma-fmaf-fmal.md) - Corrected the documentation for `fmaf`
202202

@@ -265,6 +265,7 @@ For what's new related to C++ in Visual Studio, see [What's new for C++ in Visua
265265

266266
**New articles**
267267

268+
- [Walkthrough: Use Address Sanitizer Continue On Error to find memory safety issues](../cpp/sanitizers/asan-continue-on-error.md)
268269
- [Warning C6030](../code-quality/c6030.md)
269270
- [Warning C6065](../code-quality/c6065.md)
270271

@@ -306,7 +307,7 @@ For what's new related to C++ in Visual Studio, see [What's new for C++ in Visua
306307

307308
## Community contributors
308309

309-
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! Learn how to contribute by following the links under "Get involved" in the [what's new landing page](index.yml).
310+
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See our [contributor guide](https://learn.microsoft.com/contribute) if you'd like to learn how to contribute.
310311

311312
- [fsb4000](https://github.com/fsb4000) - Igor Zhukov ![3 pull requests.](https://img.shields.io/badge/Merged%20Pull%20Requests-3-green)
312313
- [fjh1997](https://github.com/fjh1997) - FunnyBiu ![2 pull requests.](https://img.shields.io/badge/Merged%20Pull%20Requests-2-green)

0 commit comments

Comments
 (0)