Skip to content

Commit bf5462a

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#3678 from MicrosoftDocs/main637794236805102903
Repo sync for protected CLA branch
2 parents 03ee75e + 166a4c5 commit bf5462a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/c-runtime-library/link-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CLR pure mode versions of these objects are deprecated in Visual Studio 2015 and
1616
|binmode.obj|pbinmode.obj|Sets the default file-translation mode to binary. See [_fmode](../c-runtime-library/fmode.md).|
1717
|chkstk.obj|n/a|Provides stack-checking and alloca support when not using the CRT.|
1818
|commode.obj|pcommode.obj|Sets the global commit flag to "commit". See [fopen, _wfopen](../c-runtime-library/reference/fopen-wfopen.md) and [fopen_s, _wfopen_s](../c-runtime-library/reference/fopen-s-wfopen-s.md).|
19-
|exe_initialize_mta.lib|n/a|Initializes the MTA apartment during EXE startup, which allows the use of COM objects in global smart pointers. Because this option leaks an MTA apartment reference during shutdown, do not use it for DLLs. Linking to this is equivalent to including combase.h and defining _EXE_INITIALIZE_MTA. |
19+
|exe_initialize_mta.lib|n/a|Initializes the MTA apartment during EXE startup, which allows the use of COM objects in global smart pointers. Because this option leaks an MTA apartment reference during shutdown, do not use it for DLLs. Linking to this is equivalent to including combase.h and defining _EXE_INITIALIZE_MTA. Using this link option adds [onecore.lib](/windows/win32/apiindex/windows-umbrella-libraries) to the default library list. If this is undesirable (such as using onecore_apiset.lib or other umbrella library), use [/NODEFAULTLIB](../build/reference/nodefaultlib-ignore-libraries.md) to override this and provide an alternative. |
2020
|fp10.obj|n/a|Changes the default precision control to 64 bits. See [Floating-Point Support](../c-runtime-library/floating-point-support.md).|
2121
|invalidcontinue.obj|pinvalidcontinue.obj|Sets a default invalid parameter handler that does nothing, meaning that invalid parameters passed to CRT functions will just set errno and return an error result.|
2222
|legacy_stdio_float_rounding.obj|n/a|Printing floating-point values (for example, when using [printf](../c-runtime-library/reference/printf-printf-l-wprintf-wprintf-l.md)) with the Windows 10 19041 Universal C Runtime has been fixed. It now properly rounds exactly representable floating-point numbers, and respects the floating-point rounding requested by [fesetround](../c-runtime-library/reference/fegetround-fesetround2.md). This behavior update is available in Visual Studio 2019 version 16.2 and later. Legacy behavior is used in earlier versions of Visual Studio, or by providing this link option.|

docs/get-started/index.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ landingContent:
7070
- linkListType: tutorial
7171
links:
7272
- text: Open code from a repo
73-
url: /visualstudio/get-started/tutorial-open-project-from-repo.md
73+
url: /visualstudio/get-started/tutorial-open-project-from-repo
7474
- text: Write and edit code
75-
url: /visualstudio/get-started/tutorial-editor.md
75+
url: /visualstudio/get-started/tutorial-editor
7676
- text: Compile and build
77-
url: /visualstudio/ide/compiling-and-building-in-visual-studio.md
77+
url: /visualstudio/ide/compiling-and-building-in-visual-studio
7878
- text: Debug your C++ code
7979
url: /visualstudio/debugger/quickstart-debug-with-cplusplus
8080
- text: Test your C++ code

docs/overview/overview-of-cpp-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Source control enables you to coordinate work among multiple developers, isolate
5454

5555
::: moniker-end
5656

57-
For more information about Git integration with repos in Azure, see [Share your code with Visual Studio 2017 and Azure Repos Git](/azure/devops/repos/git/share-your-code-in-git-vs-2017). For information about Git integration with GitHub, see [GitHub Extension for Visual Studio](https://visualstudio.github.com/).
57+
For more information about Git integration with repos in Azure, see [Share your code with Azure Repos and Visual Studio](/azure/devops/repos/git/share-your-code-in-git-vs). For information about Git integration with GitHub, see [Visual Studio and GitHub: Better together](https://visualstudio.github.com/).
5858

5959
## Obtain libraries
6060

0 commit comments

Comments
 (0)