From f3375cd25858bda0c6c8db28e56cacdb474eec4e Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 7 Feb 2025 10:39:47 -0800 Subject: [PATCH 001/981] draft --- .../compiler-options-listed-alphabetically.md | 3 +- .../compiler-options-listed-by-category.md | 3 +- docs/build/reference/dynamic-deopt.md | 42 +++++++++++++++++++ 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 docs/build/reference/dynamic-deopt.md diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index 82a2bf89c2..927f74a595 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -1,7 +1,7 @@ --- title: "Compiler options listed alphabetically" description: "Reference listing in alphabetical order of the Microsoft C/C++ compiler command-line options." -ms.date: 11/13/2023 +ms.date: 2/5/2025 helpviewer_keywords: ["compiler options, C++"] --- # Compiler options listed alphabetically @@ -37,6 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging. Debug optimized code using dynamic deoptimization. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index 7153251edf..98078392a4 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -1,7 +1,7 @@ --- title: "Compiler Options Listed by Category" description: "Reference listing by category of the Microsoft C/C++ compiler command-line options." -ms.date: 11/13/2023 +ms.date: 2/5/2025 helpviewer_keywords: ["compiler options, C++"] --- # Compiler options listed by category @@ -12,6 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging. Debug optimized code using dynamic deoptimization. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md new file mode 100644 index 0000000000..c07e34258a --- /dev/null +++ b/docs/build/reference/dynamic-deopt.md @@ -0,0 +1,42 @@ +--- +title: "/clr (Common Language Runtime compilation)" +description: "Use the Microsoft C++ compiler option /clr to compile C++/CLI and C++ code as managed code." +ms.date: 10/27/2020 +f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] +helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] +--- +# `/dynamicdeopt` (Enable dynamic debugging) + +Place breakpoints in optimized code and step in with on-demand function deoptimization. + +## Syntax + +> **`/dynamicdeopt`** +> **`/dynamicdeopt:suffix `** +> **`/dynamicdeopt:sync`** + +## Arguments + +*suffix*\ +Specify the file extension for the deoptimized output. One or more of the following comma-separated arguments. + + +• /dynamicdeopt:suffix lets you change that new suffix from .alt to something else. We don't expect folks to use this. The gotcha here is that it needs to get set for EVERY file, and it also needs to match the same thing you pass to the linker. If you get it wrong in just a single place the feature can get really weird. But, if folks happen to already have files named blah.alt.cpp and they would prefer a different suffix, we allow that. + +- **`pure`** + + **`/clr:pure` is deprecated**. The option is removed in Visual Studio 2017 and later. We recommend that you port code that must be pure MSIL to C#. + + +## Remarks + +With no options, given `test.cpp` as input your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. + +### To set this compiler option programmatically + +- See . + +## See also + +[MSVC Compiler Options](compiler-options.md)\ +[MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md) From 0fbf2e49e45e358ed9f866dfc1060ad0c486fd7d Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 21 Feb 2025 10:33:15 -0800 Subject: [PATCH 002/981] draft --- docs/build/how-to-debug-a-release-build.md | 20 ++++---- .../compiler-options-listed-alphabetically.md | 2 +- .../compiler-options-listed-by-category.md | 4 +- .../reference/debugdeopt-dynamic-debugging.md | 36 ++++++++++++++ docs/build/reference/dynamic-deopt.md | 48 ++++++++++++++++--- docs/build/reference/linker-options.md | 7 +-- 6 files changed, 92 insertions(+), 25 deletions(-) create mode 100644 docs/build/reference/debugdeopt-dynamic-debugging.md diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index bb260ccf93..211080ac04 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -1,31 +1,27 @@ --- description: "Learn more about: How to: Debug a Release Build" title: "How to: Debug a Release Build" -ms.date: "11/04/2016" +ms.date: 2/19/2025 helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugging"] -ms.assetid: d333e4d1-4e6c-4384-84a9-cb549702da25 --- # How to: Debug a Release Build -You can debug a release build of an application. +This article explains which compiler and linker switches to set to enable you to debug a release build of an application. -### To debug a release build +A much better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging](/visualstudio/debugger/dynamic-deopt.md). -1. Open the **Property Pages** dialog box for the project. For details, see [Set C++ compiler and build properties in Visual Studio](working-with-project-properties.md). +## To debug a release build +1. Open the **Property Pages** dialog box for the project. For details, see [Set C++ compiler and build properties in Visual Studio](working-with-project-properties.md). 1. Click the **C/C++** node. Set **Debug Information Format** to [C7 compatible (/Z7)](reference/z7-zi-zi-debug-information-format.md) or **Program Database (/Zi)**. - 1. Expand **Linker** and click the **General** node. Set **Enable Incremental Linking** to [No (/INCREMENTAL:NO)](reference/incremental-link-incrementally.md). - -1. Select the **Debugging** node. Set **Generate Debug Info** to [Yes (/DEBUG)](reference/debug-generate-debug-info.md). - -1. Select the **Optimization** node. Set **References** to [/OPT:REF](reference/opt-optimizations.md) and **Enable COMDAT Folding** to [/OPT:ICF](reference/opt-optimizations.md). - +1. Under **Linker**, select the **Debugging** node. Set **Generate Debug Info** to [Yes (/DEBUG)](reference/debug-generate-debug-info.md). +1. Under **Linker**, select the **Optimization** node. Set **References** to [Yes (/OPT:REF)](reference/opt-optimizations.md) and **Enable COMDAT Folding** to [Yes (/OPT:ICF)](reference/opt-optimizations.md). 1. You can now debug your release build application. To find a problem, step through the code (or use Just-In-Time debugging) until you find where the failure occurs, and then determine the incorrect parameters or code. If an application works in a debug build, but fails in a release build, one of the compiler optimizations may be exposing a defect in the source code. To isolate the problem, disable selected optimizations for each source code file until you locate the file and the optimization that is causing the problem. (To expedite the process, you can divide the files into two groups, disable optimization on one group, and when you find a problem in a group, continue dividing until you isolate the problem file.) - You can use [/RTC](reference/rtc-run-time-error-checks.md) to try to expose such bugs in your debug builds. + Use [/RTC](reference/rtc-run-time-error-checks.md) to try to expose such bugs in your debug builds. For more information, see [Optimizing Your Code](optimizing-your-code.md). diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index 927f74a595..01159f65cb 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -37,7 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging. Debug optimized code using dynamic deoptimization. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index 98078392a4..a3b0c97ad5 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -12,7 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging. Debug optimized code using dynamic deoptimization. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | @@ -209,7 +209,7 @@ This article contains a categorical list of compiler options. For an alphabetica | [`/Zc:zeroSizeArrayNew[-]`](zc-zerosizearraynew.md) | Call member `new`/`delete` for 0-size arrays of objects (on by default). | | [`/Ze`](za-ze-disable-language-extensions.md) | Deprecated. Enables C89 language extensions. | | [`/Zf`](zf.md) | Improves PDB generation time in parallel builds. | -| [`/ZH:[MD5|SHA1|SHA_256]`](zh.md) | Specifies MD5, SHA-1, or SHA-256 for checksums in debug info. | +| [`/ZH`:[MD5|SHA1|SHA_256]](zh.md) | Specifies MD5, SHA-1, or SHA-256 for checksums in debug info. | | [`/ZI`](z7-zi-zi-debug-information-format.md) | Includes debug information in a program database compatible with Edit and Continue. (x86 only) | | [`/Zi`](z7-zi-zi-debug-information-format.md) | Generates complete debugging information. | | [`/Zl`](zl-omit-default-library-name.md) | Removes the default library name from the *`.obj`* file. | diff --git a/docs/build/reference/debugdeopt-dynamic-debugging.md b/docs/build/reference/debugdeopt-dynamic-debugging.md new file mode 100644 index 0000000000..6b25838461 --- /dev/null +++ b/docs/build/reference/debugdeopt-dynamic-debugging.md @@ -0,0 +1,36 @@ +--- +description: "Learn more about: /DEBUGDEOPT (Support C++ Dynamic Debugging)" +title: "| [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) | Creates debugging information for retail builds to support C++ Dynamic Debugging. |" +ms.date: 2/20/2025 +f1_keywords: ["VC.Project.VCLinkerTool.GenerateDebugDeoptInformation", "/debugdeopt"] +helpviewer_keywords: ["DEBUGDEOPT linker option", "/DEBUGDEOPT linker option", "-DEBUGDEOPT linker option", "c++ dynanmic debugging", "generate dynamic debug info linker option"] +--- +# | `/DEBUGDEOPT` (Support C++ Dynamic Debugging) + +The **`/DEBUGDEOPT`** linker options enables C++ Dynamic Debugging which allows you to debug optimized code as if it were deoptimized. This option is only available in Visual Studio 2022 Version 17.14 Preview 2 and later. + +## Syntax + +> **`/DEBUGDEOPT`** + +## Remarks + +This flag is only available for x64 builds. + +The **`/DEBUGDEOPT`** option creates puts the debugging information from linked object and library files into a program database (PDB) file. It updates the PDB during subsequent builds of the program. + +### To set this linker option in the Visual Studio development environment + +1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md). +1. Select the **Linker** > **Debugging** property page. +1. Modify the **Generate Debug Info** property to enable or disable PDB generation. This property enables **`/DEBUG:FASTLINK`** by default in Visual Studio 2017 and later. +1. Modify the **Generate Full Program Database File** property to enable **`/DEBUG:FULL`** for full PDB generation for every incremental build. + +### To set this linker option programmatically + +1. See . + +## See also + +[MSVC linker reference](linking.md)\ +[MSVC linker options](linker-options.md) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index c07e34258a..a3a0dbe535 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,13 +1,13 @@ --- -title: "/clr (Common Language Runtime compilation)" +title: "/dynamicdeopt (Enable C++ Dynamic Debugging)" description: "Use the Microsoft C++ compiler option /clr to compile C++/CLI and C++ code as managed code." ms.date: 10/27/2020 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- -# `/dynamicdeopt` (Enable dynamic debugging) +# `/dynamicdeopt` (Enable C++ Dynamic Debugging) -Place breakpoints in optimized code and step in with on-demand function deoptimization. +Debug optimized code as if it were compiled unoptimized. ## Syntax @@ -17,21 +17,55 @@ Place breakpoints in optimized code and step in with on-demand function deoptimi ## Arguments -*suffix*\ +*`suffix`*\ Specify the file extension for the deoptimized output. One or more of the following comma-separated arguments. - -• /dynamicdeopt:suffix lets you change that new suffix from .alt to something else. We don't expect folks to use this. The gotcha here is that it needs to get set for EVERY file, and it also needs to match the same thing you pass to the linker. If you get it wrong in just a single place the feature can get really weird. But, if folks happen to already have files named blah.alt.cpp and they would prefer a different suffix, we allow that. +• `/dynamicdeopt:suffix` lets you change that new suffix from .alt to something else. We don't expect folks to use this. The gotcha here is that it needs to get set for EVERY file, and it also needs to match the same thing you pass to the linker. If you get it wrong in just a single place the feature can get really weird. But, if folks happen to already have files named blah.alt.cpp and they would prefer a different suffix, we allow that. - **`pure`** **`/clr:pure` is deprecated**. The option is removed in Visual Studio 2017 and later. We recommend that you port code that must be pure MSIL to C#. - ## Remarks +This flag is only available for x64 builds. The linker must also be passed [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) to enable C++ Dynamic Debugging. + +Compiling with `/dynamicdeopt` generates additional binaries that are used for debugging. When you debug an optimized file and step into an optimized function, the debugger steps into the alternate binary. This allows you to debug as if you are building unoptimized code while still getting the performance advantages of building optimized code. + +Place breakpoints in optimized code and step in anywhere with on-demand function deoptimization + + +You must also add `/dynamicdeopt` to the linker command line. + With no options, given `test.cpp` as input your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. +`/dynamicdeopt` requires: + +`/DEBUG` or `/DEBUG:FULL`. If you don't specify `/DEBUG`, or `/DEBUG:FASTLINK` the linker will give a fatal error. +If you specify `/INCREMENTAL`, the compiler generates a warning and automatically turns off `/INCREMENTAL`. +If you specify `/OPT:ICF`, the compiler generates a warning that the debug experience isn't as good. This is because ICF can cause functions to be removed from the alt file, which means you can't step into them. + +`/dynamicdeopt1` is incompatible with the following compiler switches, which also means that edit-and-continue is incompatible with C++ Dynamic Debugging: + + `/GL` + `/ZI` + `/RTC1` + `/RTCs` + `/RTCc` + `/RTCu` + `/GH` + `/Gh` + `/fastcap` + `/callcap` + ALL_CLR_FLAGS AND_ALSO + `/ZW` + `fsanitize=address` + `fsanitize=kernel-address` + + +Turn /GL off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. +TUrn /OPT:ICF off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. + ### To set this compiler option programmatically - See . diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 968094a0b5..17ef77e520 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -1,7 +1,7 @@ --- title: "MSVC Linker options" description: "A list of the options supported by the Microsoft LINK linker." -ms.date: 06/10/2024 +ms.date: 02/18/2025 f1_keywords: ["link"] helpviewer_keywords: ["linker [C++]", "linker [C++], options listed", "libraries [C++], linking to COFF", "LINK tool [C++], linker options"] --- @@ -9,14 +9,14 @@ helpviewer_keywords: ["linker [C++]", "linker [C++], options listed", "libraries LINK.exe links Common Object File Format (COFF) object files and libraries to create an executable (EXE) file or a dynamic-link library (DLL). -The following table lists options for LINK.exe. For more information about LINK, see: +The following table lists options for `LINK.exe`. For more information about LINK, see: - [Compiler-controlled LINK options](compiler-controlled-link-options.md) - [LINK input files](link-input-files.md) - [LINK output](link-output.md) - [Reserved words](reserved-words.md) -On the command line, linker options aren't case-sensitive; for example, `/base` and `/BASE` mean the same thing. For details on how to specify each option on the command line or in Visual Studio, see the documentation for that option. +Linker options aren't case-sensitive; for example, `/base` and `/BASE` mean the same thing. For details on how to specify each option on the command line or in Visual Studio, see the documentation for that option. You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to specify some linker options. @@ -42,6 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | +| [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From 85a3c63e5b83303146be6543e131fe13b3e5d21d Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 21 Feb 2025 16:47:02 -0800 Subject: [PATCH 003/981] draft --- docs/build/how-to-debug-a-release-build.md | 2 +- ...ic-debugging.md => dynamic-deopt-linker.md} | 10 +++++----- docs/build/reference/dynamic-deopt.md | 18 +++++------------- docs/build/reference/linker-options.md | 4 ++-- 4 files changed, 13 insertions(+), 21 deletions(-) rename docs/build/reference/{debugdeopt-dynamic-debugging.md => dynamic-deopt-linker.md} (66%) diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index 211080ac04..4d27f9e885 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -1,7 +1,7 @@ --- description: "Learn more about: How to: Debug a Release Build" title: "How to: Debug a Release Build" -ms.date: 2/19/2025 +ms.date: 3/11/2025 helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugging"] --- # How to: Debug a Release Build diff --git a/docs/build/reference/debugdeopt-dynamic-debugging.md b/docs/build/reference/dynamic-deopt-linker.md similarity index 66% rename from docs/build/reference/debugdeopt-dynamic-debugging.md rename to docs/build/reference/dynamic-deopt-linker.md index 6b25838461..763d9ab715 100644 --- a/docs/build/reference/debugdeopt-dynamic-debugging.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,13 +1,13 @@ --- description: "Learn more about: /DEBUGDEOPT (Support C++ Dynamic Debugging)" -title: "| [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) | Creates debugging information for retail builds to support C++ Dynamic Debugging. |" -ms.date: 2/20/2025 -f1_keywords: ["VC.Project.VCLinkerTool.GenerateDebugDeoptInformation", "/debugdeopt"] -helpviewer_keywords: ["DEBUGDEOPT linker option", "/DEBUGDEOPT linker option", "-DEBUGDEOPT linker option", "c++ dynanmic debugging", "generate dynamic debug info linker option"] +title: "/DEBUGDEOPT (Support C++ Dynamic Debugging)" +ms.date: 3/11/2025 +f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] +helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynanmic debugging"] --- # | `/DEBUGDEOPT` (Support C++ Dynamic Debugging) -The **`/DEBUGDEOPT`** linker options enables C++ Dynamic Debugging which allows you to debug optimized code as if it were deoptimized. This option is only available in Visual Studio 2022 Version 17.14 Preview 2 and later. +The **`/DEBUGDEOPT`** linker option enables C++ Dynamic Debugging which allows you to debug optimized code as if it were deoptimized. This option is only available in Visual Studio 2022 Version 17.14 Preview 2 and later, and only for x64 code. ## Syntax diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index a3a0dbe535..c0d4b05b52 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,7 +1,7 @@ --- title: "/dynamicdeopt (Enable C++ Dynamic Debugging)" description: "Use the Microsoft C++ compiler option /clr to compile C++/CLI and C++ code as managed code." -ms.date: 10/27/2020 +ms.date: 3/11/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- @@ -20,23 +20,16 @@ Debug optimized code as if it were compiled unoptimized. *`suffix`*\ Specify the file extension for the deoptimized output. One or more of the following comma-separated arguments. -• `/dynamicdeopt:suffix` lets you change that new suffix from .alt to something else. We don't expect folks to use this. The gotcha here is that it needs to get set for EVERY file, and it also needs to match the same thing you pass to the linker. If you get it wrong in just a single place the feature can get really weird. But, if folks happen to already have files named blah.alt.cpp and they would prefer a different suffix, we allow that. - -- **`pure`** - - **`/clr:pure` is deprecated**. The option is removed in Visual Studio 2017 and later. We recommend that you port code that must be pure MSIL to C#. +• `/dynamicdeopt:suffix` lets you change that new suffix from `.alt` to something else. Be aware that if you change the suffix, that the suffix must be changed for every file, and it also needs to match the same name passed to the linker. You typically won't use this switch unless you already have files named filename.alt.cpp and you would prefer a different suffix. ## Remarks -This flag is only available for x64 builds. The linker must also be passed [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) to enable C++ Dynamic Debugging. +This flag is only available for x64 builds. The linker must also be passed [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) to enable C++ Dynamic Debugging. Compiling with `/dynamicdeopt` generates additional binaries that are used for debugging. When you debug an optimized file and step into an optimized function, the debugger steps into the alternate binary. This allows you to debug as if you are building unoptimized code while still getting the performance advantages of building optimized code. Place breakpoints in optimized code and step in anywhere with on-demand function deoptimization - -You must also add `/dynamicdeopt` to the linker command line. - With no options, given `test.cpp` as input your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. `/dynamicdeopt` requires: @@ -62,9 +55,8 @@ If you specify `/OPT:ICF`, the compiler generates a warning that the debug exper `fsanitize=address` `fsanitize=kernel-address` - -Turn /GL off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. -TUrn /OPT:ICF off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. +Turn `/GL `off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. +TUrn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. ### To set this compiler option programmatically diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 17ef77e520..a126111e98 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -1,7 +1,7 @@ --- title: "MSVC Linker options" description: "A list of the options supported by the Microsoft LINK linker." -ms.date: 02/18/2025 +ms.date: 3/11/2025 f1_keywords: ["link"] helpviewer_keywords: ["linker [C++]", "linker [C++], options listed", "libraries [C++], linking to COFF", "LINK tool [C++], linker options"] --- @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DEBUGDEOPT`](debugdeopt-dynamic-debugging.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | +| [`/DYNAMICDEOPT`](dyanmic-deopt-linkder.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From caac8fd2f073cc7e9fe9f6d9210eb296053465b1 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 25 Feb 2025 16:37:18 -0800 Subject: [PATCH 004/981] fix UUF issue --- docs/code-quality/c6993.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/code-quality/c6993.md b/docs/code-quality/c6993.md index e4df96bfab..7e2adb2d78 100644 --- a/docs/code-quality/c6993.md +++ b/docs/code-quality/c6993.md @@ -1,12 +1,13 @@ --- description: "Learn more about: Warning C6993" title: Warning C6993 -ms.date: 11/04/2016 +ms.date: 2/25/2025 f1_keywords: ["C6993"] -ms.assetid: 7ea93bc6-b934-4b6b-b71a-a56e765fb4cd --- # Warning C6993 > Code analysis ignores OpenMP constructs; analyzing single-threaded code -This warning indicates that the Code Analyzer has encountered Open MP pragmas that it can't analyze. +This warning indicates that the static analysis tools don't support Open MP pragmas. The static analysis tools could generate incorrect results because they assume the code is single-threaded, not multi-threaded. + +Your code doesn't necessarily need to be 'fixed' to resolve this diagnostic because this warning indicates what our toolset supports and not an issue with your code. \ No newline at end of file From 2e933b5f967259fb54b35e27394350efb6d6c8f2 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 26 Feb 2025 15:39:08 -0800 Subject: [PATCH 005/981] draft --- docs/build/how-to-debug-a-release-build.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 17 +++---- docs/build/reference/dynamic-deopt.md | 52 ++++++++++---------- docs/build/reference/linker-options.md | 2 +- 4 files changed, 35 insertions(+), 38 deletions(-) diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index 4d27f9e885..d35055e4b0 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -8,7 +8,7 @@ helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugg This article explains which compiler and linker switches to set to enable you to debug a release build of an application. -A much better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging](/visualstudio/debugger/dynamic-deopt.md). +A better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging](/visualstudio/debugger/dynamic-deopt.md). ## To debug a release build diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 763d9ab715..6006ea5589 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,23 +1,21 @@ --- -description: "Learn more about: /DEBUGDEOPT (Support C++ Dynamic Debugging)" -title: "/DEBUGDEOPT (Support C++ Dynamic Debugging)" +description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)" +title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging)" ms.date: 3/11/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] -helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynanmic debugging"] +helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] --- -# | `/DEBUGDEOPT` (Support C++ Dynamic Debugging) +# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) -The **`/DEBUGDEOPT`** linker option enables C++ Dynamic Debugging which allows you to debug optimized code as if it were deoptimized. This option is only available in Visual Studio 2022 Version 17.14 Preview 2 and later, and only for x64 code. +The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it were compiled deoptimized. ## Syntax -> **`/DEBUGDEOPT`** +> **`/DYNAMICDEOPT`** ## Remarks -This flag is only available for x64 builds. - -The **`/DEBUGDEOPT`** option creates puts the debugging information from linked object and library files into a program database (PDB) file. It updates the PDB during subsequent builds of the program. +This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. ### To set this linker option in the Visual Studio development environment @@ -32,5 +30,6 @@ The **`/DEBUGDEOPT`** option creates puts the debugging information from linked ## See also +[C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md)\ [MSVC linker reference](linking.md)\ [MSVC linker options](linker-options.md) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index c0d4b05b52..6ea96da00c 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,36 +1,31 @@ --- title: "/dynamicdeopt (Enable C++ Dynamic Debugging)" -description: "Use the Microsoft C++ compiler option /clr to compile C++/CLI and C++ code as managed code." +description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." ms.date: 3/11/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging) -Debug optimized code as if it were compiled unoptimized. +Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it were compiled deoptimized. ## Syntax > **`/dynamicdeopt`** > **`/dynamicdeopt:suffix `** -> **`/dynamicdeopt:sync`** ## Arguments *`suffix`*\ -Specify the file extension for the deoptimized output. One or more of the following comma-separated arguments. +Specify the file extension for the deoptimized output. -• `/dynamicdeopt:suffix` lets you change that new suffix from `.alt` to something else. Be aware that if you change the suffix, that the suffix must be changed for every file, and it also needs to match the same name passed to the linker. You typically won't use this switch unless you already have files named filename.alt.cpp and you would prefer a different suffix. +With no options and given `test.cpp` as input, your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically won't use this switch unless you need to avoid filename collisions with other files that you have. ## Remarks -This flag is only available for x64 builds. The linker must also be passed [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) to enable C++ Dynamic Debugging. +This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. -Compiling with `/dynamicdeopt` generates additional binaries that are used for debugging. When you debug an optimized file and step into an optimized function, the debugger steps into the alternate binary. This allows you to debug as if you are building unoptimized code while still getting the performance advantages of building optimized code. - -Place breakpoints in optimized code and step in anywhere with on-demand function deoptimization - -With no options, given `test.cpp` as input your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. +Compiling with `/dynamicdeopt` generates additional binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you are debugging unoptimized code while still getting the performance advantages of optimized code. `/dynamicdeopt` requires: @@ -38,22 +33,24 @@ With no options, given `test.cpp` as input your output will include `test.obj`, If you specify `/INCREMENTAL`, the compiler generates a warning and automatically turns off `/INCREMENTAL`. If you specify `/OPT:ICF`, the compiler generates a warning that the debug experience isn't as good. This is because ICF can cause functions to be removed from the alt file, which means you can't step into them. -`/dynamicdeopt1` is incompatible with the following compiler switches, which also means that edit-and-continue is incompatible with C++ Dynamic Debugging: - - `/GL` - `/ZI` - `/RTC1` - `/RTCs` - `/RTCc` - `/RTCu` - `/GH` - `/Gh` - `/fastcap` - `/callcap` - ALL_CLR_FLAGS AND_ALSO - `/ZW` - `fsanitize=address` - `fsanitize=kernel-address` +`/dynamicdeopt1` is incompatible with edit-and-continue and the following compiler switches: + +```cpp +/GL +/ZI +/RTC1 +/RTCs +/RTCc +/RTCu +/GH +/Gh +/fastcap +/callcap +/ZW +fsanitize=address +fsanitize=kernel-address +All of the CLR flags +``` Turn `/GL `off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. TUrn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. @@ -64,5 +61,6 @@ TUrn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT ## See also +[C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md)\ [MSVC Compiler Options](compiler-options.md)\ [MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md) diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index a126111e98..44a4e4020a 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`](dyanmic-deopt-linkder.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | +| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it were copmiled deoptimized. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From 2e241c6e89bd102ee3bd0c42bbeda5e030625c9f Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 26 Feb 2025 16:25:20 -0800 Subject: [PATCH 006/981] draft --- docs/build/reference/compiler-options-listed-alphabetically.md | 2 +- docs/build/reference/compiler-options-listed-by-category.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 2 +- docs/build/reference/dynamic-deopt.md | 2 +- docs/build/reference/linker-options.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index 01159f65cb..82b9c94c7e 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -37,7 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index a3b0c97ad5..359c9f178b 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -12,7 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable C++ Dynamic Debugging to debug optimized code as if it were deoptimized. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 6006ea5589..f5c387bff8 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option --- # | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) -The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it were compiled deoptimized. +The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized. ## Syntax diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 6ea96da00c..283dc2e3d4 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynam --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging) -Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it were compiled deoptimized. +Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it had been compiled deoptimized. ## Syntax diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 44a4e4020a..9a86902b30 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it were copmiled deoptimized. | +| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From ec16428a654e2550af662dcd81b8d2184f522c5e Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 26 Feb 2025 16:38:39 -0800 Subject: [PATCH 007/981] acrolinx --- .../reference/compiler-options-listed-alphabetically.md | 2 +- docs/build/reference/dynamic-deopt.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index 82b9c94c7e..a684465018 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -84,7 +84,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/fsanitize`](fsanitize.md) | Enables compilation of sanitizer instrumentation such as AddressSanitizer. | | [`/fsanitize-coverage`](fsanitize-coverage.md) | Enables compilation of code coverage instrumentation for libraries such as LibFuzzer. | | `/Ft` | Location of the header files generated for `#import`. | -| [`/FU`](fu-name-forced-hash-using-file.md) | Forces the use of a file name, as if it had been passed to the [`#using`](../../preprocessor/hash-using-directive-cpp.md) directive. | +| [`/FU`](fu-name-forced-hash-using-file.md) | Forces the use of a file name, as if it were passed to the [`#using`](../../preprocessor/hash-using-directive-cpp.md) directive. | | [`/Fx`](fx-merge-injected-code.md) | Merges injected code with the source file. | | [`/GA`](ga-optimize-for-windows-application.md) | Optimizes for Windows applications. | | [`/Gd`](gd-gr-gv-gz-calling-convention.md) | Uses the **`__cdecl`** calling convention. (x86 only) | diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 283dc2e3d4..5776c65393 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -19,13 +19,13 @@ Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, your output will include `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically won't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically won't use this switch unless you need to avoid filename collisions with other files that you have. ## Remarks This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. -Compiling with `/dynamicdeopt` generates additional binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you are debugging unoptimized code while still getting the performance advantages of optimized code. +Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. `/dynamicdeopt` requires: @@ -53,7 +53,7 @@ All of the CLR flags ``` Turn `/GL `off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. -TUrn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. +Turn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. ### To set this compiler option programmatically From 4f491340378d72dac3c7f280093ced1c0e6d0225 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 26 Feb 2025 16:55:03 -0800 Subject: [PATCH 008/981] acrolinx --- docs/build/reference/dynamic-deopt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 5776c65393..7b08a72926 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -19,7 +19,7 @@ Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically won't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically don't use this switch unless you need to avoid filename collisions with other files that you have. ## Remarks @@ -29,7 +29,7 @@ Compiling with `/dynamicdeopt` generates other binaries that are used for debugg `/dynamicdeopt` requires: -`/DEBUG` or `/DEBUG:FULL`. If you don't specify `/DEBUG`, or `/DEBUG:FASTLINK` the linker will give a fatal error. +`/DEBUG` or `/DEBUG:FULL`. If you don't specify `/DEBUG`, or `/DEBUG:FASTLINK` the linker gives a fatal error. If you specify `/INCREMENTAL`, the compiler generates a warning and automatically turns off `/INCREMENTAL`. If you specify `/OPT:ICF`, the compiler generates a warning that the debug experience isn't as good. This is because ICF can cause functions to be removed from the alt file, which means you can't step into them. From 0a3e533208388a6daa71084c62b73db064a983f4 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Thu, 27 Feb 2025 16:51:39 -0800 Subject: [PATCH 009/981] incorp feedback --- docs/build/how-to-debug-a-release-build.md | 6 ++--- .../compiler-options-listed-alphabetically.md | 2 +- .../compiler-options-listed-by-category.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 25 +++++++++++++------ docs/build/reference/dynamic-deopt.md | 22 +++++++++------- docs/build/reference/linker-options.md | 2 +- 6 files changed, 37 insertions(+), 22 deletions(-) diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index d35055e4b0..b35dbba5d3 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -1,14 +1,14 @@ --- description: "Learn more about: How to: Debug a Release Build" title: "How to: Debug a Release Build" -ms.date: 3/11/2025 +ms.date: 2/27/2025 helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugging"] --- # How to: Debug a Release Build This article explains which compiler and linker switches to set to enable you to debug a release build of an application. -A better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging](/visualstudio/debugger/dynamic-deopt.md). +A better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/dynamic-deopt.md). ## To debug a release build @@ -16,7 +16,7 @@ A better experience is available starting in Visual Studio 2022 version 17.14 th 1. Click the **C/C++** node. Set **Debug Information Format** to [C7 compatible (/Z7)](reference/z7-zi-zi-debug-information-format.md) or **Program Database (/Zi)**. 1. Expand **Linker** and click the **General** node. Set **Enable Incremental Linking** to [No (/INCREMENTAL:NO)](reference/incremental-link-incrementally.md). 1. Under **Linker**, select the **Debugging** node. Set **Generate Debug Info** to [Yes (/DEBUG)](reference/debug-generate-debug-info.md). -1. Under **Linker**, select the **Optimization** node. Set **References** to [Yes (/OPT:REF)](reference/opt-optimizations.md) and **Enable COMDAT Folding** to [Yes (/OPT:ICF)](reference/opt-optimizations.md). +1. Under **Linker**, select the **Optimization** node. Set **References** to [No (/OPT:NOREF)](reference/opt-optimizations.md) and **Enable COMDAT Folding** to [No (/OPT:NOICF)](reference/opt-optimizations.md). 1. You can now debug your release build application. To find a problem, step through the code (or use Just-In-Time debugging) until you find where the failure occurs, and then determine the incorrect parameters or code. If an application works in a debug build, but fails in a release build, one of the compiler optimizations may be exposing a defect in the source code. To isolate the problem, disable selected optimizations for each source code file until you locate the file and the optimization that is causing the problem. (To expedite the process, you can divide the files into two groups, disable optimization on one group, and when you find a problem in a group, continue dividing until you isolate the problem file.) diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index a684465018..ce4dfeea84 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -37,7 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | +| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) and step in anywhere with on-demand function deoptimization. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index 359c9f178b..cf3a024e2f 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -12,7 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| -| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | +| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index f5c387bff8..3ada7bb26a 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,28 +1,38 @@ --- description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)" -title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging)" +title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging (Preview))" ms.date: 3/11/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] --- -# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) +# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging (Preview)) -The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized. +The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax > **`/DYNAMICDEOPT`** +> **`/DYNAMICDEOPT:SUFFIX `** +> **`/DYNAMICDEOPT:SYNC`** + +## Arguments + +*`suffix`*\ +Specify the file extension for the deoptimized output. + +With no options and given `test.cpp` as input, the compiler output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to recognize a different suffix for the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the compiler using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. + +*`SYNC`*\ +Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel linker to link the unoptimized binary. This switch makes the second link run serially after the first one. This switch is provided in case this better suits your build environment. ## Remarks -This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. +This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. ### To set this linker option in the Visual Studio development environment 1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md). 1. Select the **Linker** > **Debugging** property page. -1. Modify the **Generate Debug Info** property to enable or disable PDB generation. This property enables **`/DEBUG:FASTLINK`** by default in Visual Studio 2017 and later. -1. Modify the **Generate Full Program Database File** property to enable **`/DEBUG:FULL`** for full PDB generation for every incremental build. ### To set this linker option programmatically @@ -30,6 +40,7 @@ This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, a ## See also -[C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md)\ +[`/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview))](dynamic-deopt.md)\ +[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md)\ [MSVC linker reference](linking.md)\ [MSVC linker options](linker-options.md) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 7b08a72926..ff54649d87 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,39 +1,43 @@ --- -title: "/dynamicdeopt (Enable C++ Dynamic Debugging)" +title: "/dynamicdeopt (Enable C++ Dynamic Debugging (Preview))" description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." ms.date: 3/11/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- -# `/dynamicdeopt` (Enable C++ Dynamic Debugging) +# `/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview)) -Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it had been compiled deoptimized. +Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax > **`/dynamicdeopt`** > **`/dynamicdeopt:suffix `** +> **`/dynamicdeopt:sync`** ## Arguments *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker. You typically don't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt-linker.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. + +*`sync`*\ +Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the linker to link the unoptimized binary. This switch makes the second link run serially after the first one. This switch is provided in case this better suits your build environment. ## Remarks -This flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. +This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. -Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. +Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. `/dynamicdeopt` requires: -`/DEBUG` or `/DEBUG:FULL`. If you don't specify `/DEBUG`, or `/DEBUG:FASTLINK` the linker gives a fatal error. +`/DEBUG` or `/DEBUG:FULL`. If you don't specify `/DEBUG`, or if you specify `/DEBUG:FASTLINK`, the linker gives a fatal error. If you specify `/INCREMENTAL`, the compiler generates a warning and automatically turns off `/INCREMENTAL`. If you specify `/OPT:ICF`, the compiler generates a warning that the debug experience isn't as good. This is because ICF can cause functions to be removed from the alt file, which means you can't step into them. -`/dynamicdeopt1` is incompatible with edit-and-continue and the following compiler switches: +`/dynamicdeopt` is incompatible with edit-and-continue and the following compiler switches: ```cpp /GL @@ -61,6 +65,6 @@ Turn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT ## See also -[C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md)\ +[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md)\ [MSVC Compiler Options](compiler-options.md)\ [MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md) diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 9a86902b30..f2a91fc158 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | +| [`/DYNAMICDEOPT`(Preview)](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) and step in anywhere with on-demand function deoptimization. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From d5476cac704bd07af8a376b6f918141a9f190d98 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 28 Feb 2025 11:41:43 -0800 Subject: [PATCH 010/981] incorp feedback --- docs/build/reference/dynamic-deopt-linker.md | 6 +++--- docs/build/reference/dynamic-deopt.md | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 3ada7bb26a..5baf62190f 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -7,12 +7,12 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option --- # | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging (Preview)) -The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax > **`/DYNAMICDEOPT`** -> **`/DYNAMICDEOPT:SUFFIX `** +> **`/DYNAMICDEOPT:SUFFIX=`** > **`/DYNAMICDEOPT:SYNC`** ## Arguments @@ -20,7 +20,7 @@ The **`/DYNAMICDEOPT`** linker option enables [C++ Dynamic Debugging (Preview)]( *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, the compiler output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to recognize a different suffix for the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the compiler using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, the compiler output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix for the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the compiler using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. *`SYNC`*\ Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel linker to link the unoptimized binary. This switch makes the second link run serially after the first one. This switch is provided in case this better suits your build environment. diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index ff54649d87..530735725e 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -23,11 +23,11 @@ Specify the file extension for the deoptimized output. With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt-linker.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. *`sync`*\ -Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the linker to link the unoptimized binary. This switch makes the second link run serially after the first one. This switch is provided in case this better suits your build environment. +Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the code generator. This switch makes the them run serially, instead. This switch is provided in case this better suits your build environment. ## Remarks -This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. +This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects and must be used with the corresponding linker flag, [`/DYNAMICDEOPT`](dynamic-deopt-linker.md). Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. @@ -56,6 +56,7 @@ fsanitize=kernel-address All of the CLR flags ``` +JTW - when I get a build with the property pages, push them to that section that sets the global property that does all of this for you and remove the next two lines. Possibly mention that it turns these things off for you. Turn `/GL `off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. Turn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. From becaef47561a9a9b15709abe679056b3ba2cf2be Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 28 Feb 2025 13:32:04 -0800 Subject: [PATCH 011/981] feedback / acrolinx --- docs/build/how-to-debug-a-release-build.md | 2 +- .../build/reference/compiler-options-listed-alphabetically.md | 2 +- docs/build/reference/compiler-options-listed-by-category.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 4 ++-- docs/build/reference/dynamic-deopt.md | 4 ++-- docs/build/reference/linker-options.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index b35dbba5d3..0dbd505fc5 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -8,7 +8,7 @@ helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugg This article explains which compiler and linker switches to set to enable you to debug a release build of an application. -A better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/dynamic-deopt.md). +A better experience is available starting in Visual Studio 2022 version 17.14 that allows you to debug optimized code as if it were compiled unoptimized, while retaining the speed of optimized code. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging). ## To debug a release build diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index ce4dfeea84..2b8ad1fc5e 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -37,7 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | -| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) and step in anywhere with on-demand function deoptimization. | +| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index cf3a024e2f..aa28112751 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -12,7 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| -| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) to debug optimized code as if it had been compiled deoptimized. | +| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) to debug optimized code as if it had been compiled deoptimized. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 5baf62190f..36b4401ac8 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option --- # | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging (Preview)) -The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax @@ -41,6 +41,6 @@ This preview flag, available starting with Visual Studio 2022 Version 17.14 Prev ## See also [`/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview))](dynamic-deopt.md)\ -[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md)\ +[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging)\ [MSVC linker reference](linking.md)\ [MSVC linker options](linker-options.md) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 530735725e..ced3dd6fac 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynam --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview)) -Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) so you can debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) so you can debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax @@ -66,6 +66,6 @@ Turn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT ## See also -[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md)\ +[C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging)\ [MSVC Compiler Options](compiler-options.md)\ [MSVC Compiler Command-Line Syntax](compiler-command-line-syntax.md) diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index f2a91fc158..2fb7455eba 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`(Preview)](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging.md) and step in anywhere with on-demand function deoptimization. | +| [`/DYNAMICDEOPT`(Preview)](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From d68e93fc089bc8795f220fc6b91c2c1302cc9a9b Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 28 Feb 2025 13:40:02 -0800 Subject: [PATCH 012/981] try prerelease tag --- docs/build/reference/dynamic-deopt-linker.md | 1 + docs/build/reference/dynamic-deopt.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 36b4401ac8..0565ba7f84 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -4,6 +4,7 @@ title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging (Preview))" ms.date: 3/11/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] +prerelease: true --- # | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging (Preview)) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index ced3dd6fac..49fe9346c5 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -4,6 +4,7 @@ description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dyn ms.date: 3/11/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] +prerelease: true --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview)) From 124f5adb614b48c5c08e54c58d93a7437ec634e1 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 28 Feb 2025 14:23:04 -0800 Subject: [PATCH 013/981] preview notice --- .../reference/compiler-options-listed-alphabetically.md | 2 +- .../reference/compiler-options-listed-by-category.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 8 +++++--- docs/build/reference/dynamic-deopt.md | 6 ++++-- docs/build/reference/linker-options.md | 2 +- 5 files changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/build/reference/compiler-options-listed-alphabetically.md b/docs/build/reference/compiler-options-listed-alphabetically.md index 2b8ad1fc5e..55fb9991c4 100644 --- a/docs/build/reference/compiler-options-listed-alphabetically.md +++ b/docs/build/reference/compiler-options-listed-alphabetically.md @@ -37,7 +37,7 @@ This table contains an alphabetical list of compiler options. For a list of comp | [`/constexpr:depth`](constexpr-control-constexpr-evaluation.md) | Recursion depth limit for `constexpr` evaluation (default: 512). | | [`/constexpr:steps`](constexpr-control-constexpr-evaluation.md) | Terminate `constexpr` evaluation after N steps (default: 100000) | | [`/D{=|#}`](d-preprocessor-definitions.md) | Defines constants and macros. | -| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/diagnostics`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column information. | | [`/diagnostics:caret[-]`](diagnostics-compiler-diagnostic-options.md) | Diagnostics format: prints column and the indicated line of source. | | [`/diagnostics:classic`](diagnostics-compiler-diagnostic-options.md) | Use legacy diagnostics format. | diff --git a/docs/build/reference/compiler-options-listed-by-category.md b/docs/build/reference/compiler-options-listed-by-category.md index aa28112751..000f54cc77 100644 --- a/docs/build/reference/compiler-options-listed-by-category.md +++ b/docs/build/reference/compiler-options-listed-by-category.md @@ -12,7 +12,7 @@ This article contains a categorical list of compiler options. For an alphabetica | Option | Purpose | |--|--| -| [`/dynamicdeopt` (Preview)](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) to debug optimized code as if it had been compiled deoptimized. | +| [`/dynamicdeopt`](dynamic-deopt.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) to debug optimized code as if it had been compiled deoptimized. | | [`/favor:`](favor-optimize-for-architecture-specifics.md) | Produces code that is optimized for a specified architecture, or for a range of architectures. | | [`/O1`](o1-o2-minimize-size-maximize-speed.md) | Creates small code. | | [`/O2`](o1-o2-minimize-size-maximize-speed.md) | Creates fast code. | diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 0565ba7f84..7efe49f2da 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,12 +1,14 @@ --- description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)" -title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging (Preview))" +title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging) (Preview)" ms.date: 3/11/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] -prerelease: true --- -# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging (Preview)) +# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) (Preview) +> [!IMPORTANT] +> The `/DYNAMICDEOPT` linker switch is currently in PREVIEW. +> This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 49fe9346c5..b094fe231c 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -4,9 +4,11 @@ description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dyn ms.date: 3/11/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] -prerelease: true --- -# `/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview)) +# `/dynamicdeopt` (Enable C++ Dynamic Debugging) (Preview) +> [!IMPORTANT] +> The `/dynamicdeopt` compiler switch is currently in PREVIEW. +> This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) so you can debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 2fb7455eba..34411fb166 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`(Preview)](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | +| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | From 21d51bcd96a41470e493ff7db8ffec113b27eb00 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 28 Feb 2025 14:59:49 -0800 Subject: [PATCH 014/981] fix alpha order --- docs/build/reference/linker-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index 34411fb166..b78c835fdf 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -42,7 +42,6 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md) | Specifies the threading attribute to apply to the entry point of your CLR program. | | [`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md) | Specifies whether the linker applies the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. | | [`/DEBUG`](debug-generate-debug-info.md) | Creates debugging information. | -| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/DEBUGTYPE`](debugtype-debug-info-options.md) | Specifies which data to include in debugging information. | | [`/DEF`](def-specify-module-definition-file.md) | Passes a module-definition (.def) file to the linker. | | [`/DEFAULTLIB`](defaultlib-specify-default-library.md) | Searches the specified library when external references are resolved. | @@ -53,6 +52,7 @@ You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to speci | [`/DLL`](dll-build-a-dll.md) | Builds a DLL. | | [`/DRIVER`](driver-windows-nt-kernel-mode-driver.md) | Creates a kernel mode driver. | | [`/DYNAMICBASE`](dynamicbase-use-address-space-layout-randomization.md) | Specifies whether to generate an executable image that's rebased at load time by using the address space layout randomization (ASLR) feature. | +| [`/DYNAMICDEOPT`](dynamic-deopt-linker.md) | Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) and step in anywhere with on-demand function deoptimization. | | [`/ENTRY`](entry-entry-point-symbol.md) | Sets the starting address. | | [`/ERRORREPORT`](errorreport-report-internal-linker-errors.md) | Deprecated. Error reporting is controlled by [Windows Error Reporting (WER)](/windows/win32/wer/windows-error-reporting) settings. | | [`/EXPORT`](export-exports-a-function.md) | Exports a function. | From 4a1769cb1371efc2084f4131099ede7382742cef Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 4 Mar 2025 14:05:14 -0800 Subject: [PATCH 015/981] edit --- docs/build/reference/dynamic-deopt-linker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 7efe49f2da..29ac42b404 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -43,7 +43,7 @@ This preview flag, available starting with Visual Studio 2022 Version 17.14 Prev ## See also -[`/dynamicdeopt` (Enable C++ Dynamic Debugging (Preview))](dynamic-deopt.md)\ +[`/dynamicdeopt` (Enable C++ Dynamic Debugging) (Preview)](dynamic-deopt.md)\ [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging)\ [MSVC linker reference](linking.md)\ [MSVC linker options](linker-options.md) From eb7e3ac49f4c8dd529d2478c40ee6d70f4fad8f9 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 5 Mar 2025 17:28:47 -0800 Subject: [PATCH 016/981] edit --- docs/build/reference/dynamic-deopt-linker.md | 2 +- docs/build/reference/dynamic-deopt.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 29ac42b404..20eff8492a 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -23,7 +23,7 @@ The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dyn *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, the compiler output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix for the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the compiler using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, the compiler output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and `test.alt.pdb`. This switch allows you to change the suffix for the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the compiler using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. *`SYNC`*\ Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel linker to link the unoptimized binary. This switch makes the second link run serially after the first one. This switch is provided in case this better suits your build environment. diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index b094fe231c..63539fb5ce 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -23,7 +23,7 @@ Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debu *`suffix`*\ Specify the file extension for the deoptimized output. -With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and ``test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt-linker.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. +With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and `test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt-linker.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. *`sync`*\ Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the code generator. This switch makes the them run serially, instead. This switch is provided in case this better suits your build environment. From cd68e327c5dfab0c824d0ff9122d60d8ed1b339a Mon Sep 17 00:00:00 2001 From: Nikita Leontiev Date: Sat, 8 Mar 2025 08:43:40 +0300 Subject: [PATCH 017/981] vswprintf/_vswprintf_l return value description update. --- .../vsprintf-vsprintf-l-vswprintf-vswprintf-l-vswprintf-l.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/c-runtime-library/reference/vsprintf-vsprintf-l-vswprintf-vswprintf-l-vswprintf-l.md b/docs/c-runtime-library/reference/vsprintf-vsprintf-l-vswprintf-vswprintf-l-vswprintf-l.md index 0d197f9619..dd59fa224c 100644 --- a/docs/c-runtime-library/reference/vsprintf-vsprintf-l-vswprintf-vswprintf-l-vswprintf-l.md +++ b/docs/c-runtime-library/reference/vsprintf-vsprintf-l-vswprintf-vswprintf-l-vswprintf-l.md @@ -95,6 +95,8 @@ The locale to use. **`vsprintf`** and **`vswprintf`** return the number of characters written, not including the terminating `NULL` character, or a negative value if an output error occurs. If *`buffer`* or *`format`* is a `NULL` pointer, these functions invoke the invalid parameter handler, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, these functions return -1 and set `errno` to `EINVAL`. +If *`buffer`* is a `NULL` pointer and *`count`* is zero, **`vswprintf`** and **`_vswprintf_l`** return the number of characters that would have been written not including the terminating NULL. If only *`count`* is zero, behavior is unpredictable. + For information on these and other error codes, see [`errno`, `_doserrno`, `_sys_errlist`, and `_sys_nerr`](../errno-doserrno-sys-errlist-and-sys-nerr.md). ## Remarks From 15f1aa368a3fc4b57e942264c4a601fc003dcdb8 Mon Sep 17 00:00:00 2001 From: Nikita Leontiev Date: Sat, 8 Mar 2025 08:54:55 +0300 Subject: [PATCH 018/981] Return value/Remarks sections update. --- .../vsprintf-p-vsprintf-p-l-vswprintf-p-vswprintf-p-l.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/c-runtime-library/reference/vsprintf-p-vsprintf-p-l-vswprintf-p-vswprintf-p-l.md b/docs/c-runtime-library/reference/vsprintf-p-vsprintf-p-l-vswprintf-p-vswprintf-p-l.md index a5ab73d417..542e7de92f 100644 --- a/docs/c-runtime-library/reference/vsprintf-p-vsprintf-p-l-vswprintf-p-vswprintf-p-l.md +++ b/docs/c-runtime-library/reference/vsprintf-p-vsprintf-p-l-vswprintf-p-vswprintf-p-l.md @@ -67,6 +67,7 @@ The locale to use. ## Return value **`_vsprintf_p`** and **`_vswprintf_p`** return the number of characters written, not including the terminating null character, or a negative value if an output error occurs. +If the *`buffer`* is a `NULL` pointer and *`sizeInBytes`* or *`count`* are zero, functions return the number of characters that would have been written not including the terminating NULL. ## Remarks @@ -76,7 +77,9 @@ These functions differ from the `vsprintf_s` and `vswprintf_s` only in that they The versions of these functions with the `_l` suffix are identical except that they use the locale parameter passed in instead of the current thread locale. -If the *`buffer`* or *`format`* parameters are `NULL` pointers, if count is zero, or if the format string contains invalid formatting characters, the invalid parameter handler is invoked, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, the functions return -1 and set `errno` to `EINVAL`. +If the *`buffer`* or *`format`* parameters are `NULL` pointers, or if the format string contains invalid formatting characters, the invalid parameter handler is invoked, as described in [Parameter validation](../parameter-validation.md). If execution is allowed to continue, the functions return -1 and set `errno` to `EINVAL`. + +If the *`buffer`* is valid and *`sizeInBytes`* or *`count`* parameters are zero, behavior is unpredictable. > [!IMPORTANT] > Starting in Windows 10 version 2004 (build 19041), the `printf` family of functions prints exactly representable floating point numbers according to the IEEE 754 rules for rounding. In previous versions of Windows, exactly representable floating point numbers ending in '5' would always round up. IEEE 754 states that they must round to the closest even digit (also known as "Banker's Rounding"). For example, both `printf("%1.0f", 1.5)` and `printf("%1.0f", 2.5)` should round to 2. Previously, 1.5 would round to 2 and 2.5 would round to 3. This change only affects exactly representable numbers. For example, 2.35 (which, when represented in memory, is closer to 2.35000000000000008) continues to round up to 2.4. Rounding done by these functions now also respects the floating point rounding mode set by [`fesetround`](fegetround-fesetround2.md). Previously, rounding always chose `FE_TONEAREST` behavior. This change only affects programs built using Visual Studio 2019 version 16.2 and later. To use the legacy floating point rounding behavior, link with ['legacy_stdio_float_rounding.obj`](../link-options.md). From 5fa9b33735c3dd6a316d01cf067908209a3d2121 Mon Sep 17 00:00:00 2001 From: Nikita Leontiev Date: Sat, 8 Mar 2025 09:05:08 +0300 Subject: [PATCH 019/981] Behavior summary update. --- .../vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/c-runtime-library/reference/vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l.md b/docs/c-runtime-library/reference/vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l.md index b4a5f31213..1f94c8f59a 100644 --- a/docs/c-runtime-library/reference/vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l.md +++ b/docs/c-runtime-library/reference/vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l.md @@ -155,7 +155,8 @@ For the following table: | Encoding error during formatting | If processing string specifier `s`, `S`, or `Z`, format specification processing stops. | -1 | `EILSEQ` (42) | No | | Encoding error during formatting | If processing character specifier `c` or `C`, the invalid character is skipped. The number of characters written isn't incremented for the skipped character, nor is any data written for it. Processing the format specification continues after skipping the specifier with the encoding error. | The number of characters written, not including the terminating `NULL`. | `EILSEQ` (42) | No | | `buffer == NULL` and `count != 0` | If execution continues after invalid parameter handler executes, sets `errno` and returns a negative value.| -1 | `EINVAL` (22) | Yes | -| `count == 0` | No data is written | The number of characters that would have been written, not including the terminating `NULL`. You can use this result to allocate sufficient buffer space for the string and a terminating `NULL`, and then call the function again to fill the buffer. | N/A | No | +| `buffer == NULL` and `count == 0` | No data is written | The number of characters that would have been written, not including the terminating `NULL`. You can use this result to allocate sufficient buffer space for the string and a terminating `NULL`, and then call the function again to fill the buffer. | N/A | No | +| `count == 0` | No data is written | -1 | `ERANGE` (34) | No | | `count < 0`| Unsafe: the value is treated as unsigned, likely creating a large value that results in overwriting the memory that follows the buffer. | The number of characters written. | N/A | No | | `count < sizeOfBuffer` and `len <= count` | All of the data is written and a terminating `NULL` is appended. | The number of characters written, not including the terminating `NULL`. | N/A | No | | `count < sizeOfBuffer` and `len > count` | The first *`count-1`* characters are written followed by a null-terminator. | The number of characters that would have been written had `count` matched the number of characters to output, not including the null-terminator. | N/A | No | From 38e139ce3431111fdbdba371f6307d2e2f4faa03 Mon Sep 17 00:00:00 2001 From: Nikita Leontiev Date: Sat, 8 Mar 2025 09:10:28 +0300 Subject: [PATCH 020/981] Behavior summary update. --- ...-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/c-runtime-library/reference/vsnprintf-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md b/docs/c-runtime-library/reference/vsnprintf-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md index 690566a0fc..b15c7b4a3b 100644 --- a/docs/c-runtime-library/reference/vsnprintf-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md +++ b/docs/c-runtime-library/reference/vsnprintf-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md @@ -127,6 +127,7 @@ For the following table: | `buffer == NULL` and `sizeOfBuffer == 0` and `count == 0` | No data is written. | 0 | N/A | No | | `buffer == NULL` and either `sizeOfBuffer != 0` or `count != 0` | If execution continues after invalid parameter handler executes, sets `errno` and returns a negative value.| -1 | `EINVAL` (22) | Yes | | `buffer != NULL` and `sizeOfBuffer == 0` | No data is written. If execution continues after invalid parameter handler executes, sets `errno` and returns a negative value. | -1 | `EINVAL` (22) | Yes | +| `buffer != NULL` and `sizeOfBuffer != 0` and `count == 0` | No data is written. | -1 | N/A | No | | `count == 0`| Doesn't write any data and returns the number of characters that would have been written, not including the terminating `NULL`. | The number of characters that would have been written not including the terminating `NULL`. | N/A | No | | `count < 0` | Unsafe: the value is treated as unsigned, likely creating a large value that results in overwriting the memory that follows the buffer. | The number of characters written, not including the terminating `NULL`. | N/A | No | | `count < sizeOfBuffer` and `len <= count` | All of the data is written and a terminating `NULL` is appended. | The number of characters written. | N/A | No | @@ -209,4 +210,4 @@ nSize: -1, buff: Hi there! [`fprintf`, `_fprintf_l`, `fwprintf`, `_fwprintf_l`](fprintf-fprintf-l-fwprintf-fwprintf-l.md)\ [`printf`, `_printf_l`, `wprintf`, `_wprintf_l`](printf-printf-l-wprintf-wprintf-l.md)\ [`sprintf`, `_sprintf_l`, `swprintf`, `_swprintf_l`, `__swprintf_l`](sprintf-sprintf-l-swprintf-swprintf-l-swprintf-l.md)\ -[`va_arg`, `va_copy`, `va_end`, `va_start`](va-arg-va-copy-va-end-va-start.md) \ No newline at end of file +[`va_arg`, `va_copy`, `va_end`, `va_start`](va-arg-va-copy-va-end-va-start.md) From 705c5431fac4af86c5861aeef1e6595dc844c218 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 9 Mar 2025 18:21:44 +0800 Subject: [PATCH 021/981] Update README file --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e2a4e7c444..816a2293bf 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# Visual Studio documentation for Microsoft C++ +# Microsoft C++, C, and Assembler documentation -Welcome! This repository contains source files for the work-in-progress Microsoft C++ (MSVC or Visual C++) technical documentation. The articles are published on the [C++ in Visual Studio documentation site](https://learn.microsoft.com/cpp). +Welcome! This repository contains source files for the technical documentation published on [https://learn.microsoft.com/cpp](https://learn.microsoft.com/cpp). -The documentation for Visual Basic and Visual C# are located in a separate repository at [https://github.com/dotnet/core-docs](https://github.com/dotnet/core-docs), and the Visual Studio documentation is located in the repository located at [https://github.com/Microsoft/visualstudio-docs](https://github.com/Microsoft/visualstudio-docs). +The documentation for [.NET](https://github.com/dotnet/docs) and [Visual Studio](https://github.com/MicrosoftDocs/visualstudio-docs) are located in separate repositories. ## Contributing to the documentation We welcome your contributions to help us improve the MSVC docs. For a comprehensive guide to contributing, see the [Microsoft Docs contributor guide](https://learn.microsoft.com/contribute). For details on how to make a contribution to the MSVC documentation, see our [Contributing guidance](CONTRIBUTING.md). -Several feature areas of MSVC have their own folders in this repository, such as `standard-library` for articles on the C++ Standard Library, `ide` for C++-specific articles on the Visual Studio interactive development environment (IDE), and so forth. The `/media` subfolder in each folder contains art files for the articles. The [Contributing guide](CONTRIBUTING.md) has more information. +Several feature areas of MSVC have their own folders in this repository, such as `standard-library` for articles on the C++ Standard Library, `ide` for C++-specific articles on the Visual Studio integrated development environment (IDE), and so forth. The `/media` subfolder in each folder contains art files for the articles. The [Contributing guide](CONTRIBUTING.md) has more information. ## Microsoft Open Source Code of Conduct From 569d55688225a37eadd1ebb49eea6c3c62b7762d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 9 Mar 2025 19:13:56 +0800 Subject: [PATCH 022/981] Fix missing comma in function prototypes --- .../reference/sdk/functions/stop-tracing-session.md | 2 +- docs/c-runtime-library/reference/cgets-s-cgetws-s.md | 2 +- docs/c-runtime-library/reference/cxxthrowexception.md | 2 +- docs/c-runtime-library/reference/recalloc.md | 2 +- docs/intrinsics/mm-insert-si64-mm-inserti-si64.md | 2 +- docs/mfc/reference/cwinapp-class.md | 2 +- .../reference/concurrency-direct3d-namespace-functions-amp.md | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/build-insights/reference/sdk/functions/stop-tracing-session.md b/docs/build-insights/reference/sdk/functions/stop-tracing-session.md index ca9bea6c23..e81b1b8ce4 100644 --- a/docs/build-insights/reference/sdk/functions/stop-tracing-session.md +++ b/docs/build-insights/reference/sdk/functions/stop-tracing-session.md @@ -28,7 +28,7 @@ inline RESULT_CODE StopTracingSession( TRACING_SESSION_STATISTICS* statistics); inline RESULT_CODE StopTracingSession( - const wchar_t* sessionName + const wchar_t* sessionName, const wchar_t* outputLogFile, TRACING_SESSION_STATISTICS* statistics); ``` diff --git a/docs/c-runtime-library/reference/cgets-s-cgetws-s.md b/docs/c-runtime-library/reference/cgets-s-cgetws-s.md index 8709404d4c..6b31479ab8 100644 --- a/docs/c-runtime-library/reference/cgets-s-cgetws-s.md +++ b/docs/c-runtime-library/reference/cgets-s-cgetws-s.md @@ -26,7 +26,7 @@ errno_t _cgets_s( size_t *pSizeRead ); errno_t _cgetws_s( - wchar_t *buffer + wchar_t *buffer, size_t numberOfElements, size_t *pSizeRead ); diff --git a/docs/c-runtime-library/reference/cxxthrowexception.md b/docs/c-runtime-library/reference/cxxthrowexception.md index 1bad3b4dd0..bb3e3e8b45 100644 --- a/docs/c-runtime-library/reference/cxxthrowexception.md +++ b/docs/c-runtime-library/reference/cxxthrowexception.md @@ -18,7 +18,7 @@ Builds the exception record and calls the runtime environment to start processin ```C extern "C" void __stdcall _CxxThrowException( - void* pExceptionObject + void* pExceptionObject, _ThrowInfo* pThrowInfo ); ``` diff --git a/docs/c-runtime-library/reference/recalloc.md b/docs/c-runtime-library/reference/recalloc.md index 2e10f1ee09..0e3837b912 100644 --- a/docs/c-runtime-library/reference/recalloc.md +++ b/docs/c-runtime-library/reference/recalloc.md @@ -18,7 +18,7 @@ A combination of `realloc` and `calloc`. Reallocates an array in memory and init ```C void *_recalloc( - void *memblock + void *memblock, size_t num, size_t size ); diff --git a/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md b/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md index 3c6f905373..76a5f50581 100644 --- a/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md +++ b/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md @@ -21,7 +21,7 @@ __m128i _mm_insert_si64( ); __m128i _mm_inserti_si64( __m128i Source1, - __m128i Source2 + __m128i Source2, int Length, int Index ); diff --git a/docs/mfc/reference/cwinapp-class.md b/docs/mfc/reference/cwinapp-class.md index db9e83c08f..b84c99b21f 100644 --- a/docs/mfc/reference/cwinapp-class.md +++ b/docs/mfc/reference/cwinapp-class.md @@ -1535,7 +1535,7 @@ The framework calls this method to open the named [CDocument](../../mfc/referenc ``` virtual CDocument* OpenDocumentFile( - LPCTSTR lpszFileName + LPCTSTR lpszFileName, BOOL bAddToMRU = TRUE); ``` diff --git a/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md b/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md index d928cc4c0d..9b2c9aa3e6 100644 --- a/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md +++ b/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md @@ -121,12 +121,12 @@ Creates an [accelerator_view](accelerator-view-class.md) object from a pointer t ```cpp accelerator_view create_accelerator_view( - IUnknown * _D3D_device + IUnknown * _D3D_device, queuing_mode _Qmode = queuing_mode_automatic); accelerator_view create_accelerator_view( accelerator& _Accelerator, - bool _Disable_timeout + bool _Disable_timeout, queuing_mode _Qmode = queuing_mode_automatic); ``` From 87d61ac4626a4d19a4b6276a919e603042bdf566 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 9 Mar 2025 19:17:59 +0800 Subject: [PATCH 023/981] Update metadata for a bunch of articles --- docs/c-runtime-library/reference/cgets-s-cgetws-s.md | 3 +-- docs/c-runtime-library/reference/cxxthrowexception.md | 3 +-- docs/c-runtime-library/reference/recalloc.md | 3 +-- docs/intrinsics/mm-insert-si64-mm-inserti-si64.md | 3 +-- docs/mfc/reference/cwinapp-class.md | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/docs/c-runtime-library/reference/cgets-s-cgetws-s.md b/docs/c-runtime-library/reference/cgets-s-cgetws-s.md index 6b31479ab8..82de69ea28 100644 --- a/docs/c-runtime-library/reference/cgets-s-cgetws-s.md +++ b/docs/c-runtime-library/reference/cgets-s-cgetws-s.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _cgets_s, _cgetws_s" title: "_cgets_s, _cgetws_s" +description: "Learn more about: _cgets_s, _cgetws_s" ms.date: "4/2/2020" api_name: ["_cgetws_s", "_cgets_s", "_o__cgets_s", "_o__cgetws_s"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] @@ -8,7 +8,6 @@ api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_cgets_s", "cgets_s", "cgetws_s", "_cgetws_s"] helpviewer_keywords: ["strings [C++], getting from console", "console, getting strings from", "_cgets_s function", "cget_s function", "_cgetws_s function", "cgetws_s function"] -ms.assetid: 38b74897-afe6-4dd9-a43f-36a3c0d72c5c --- # `_cgets_s`, `_cgetws_s` diff --git a/docs/c-runtime-library/reference/cxxthrowexception.md b/docs/c-runtime-library/reference/cxxthrowexception.md index bb3e3e8b45..2a2a3b87b6 100644 --- a/docs/c-runtime-library/reference/cxxthrowexception.md +++ b/docs/c-runtime-library/reference/cxxthrowexception.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _CxxThrowException" title: "_CxxThrowException" +description: "Learn more about: _CxxThrowException" ms.date: "11/04/2016" api_name: ["_CxxThrowException"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll"] @@ -8,7 +8,6 @@ api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["CxxThrowException", "_CxxThrowException"] helpviewer_keywords: ["_CxxThrowException function", "CxxThrowException function"] -ms.assetid: 0b90bef5-b7d2-46e0-88e2-59e531e01a4d --- # `_CxxThrowException` diff --git a/docs/c-runtime-library/reference/recalloc.md b/docs/c-runtime-library/reference/recalloc.md index 0e3837b912..09cd09dea3 100644 --- a/docs/c-runtime-library/reference/recalloc.md +++ b/docs/c-runtime-library/reference/recalloc.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _recalloc" title: "_recalloc" +description: "Learn more about: _recalloc" ms.date: "4/2/2020" api_name: ["_recalloc", "_o__recalloc"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-heap-l1-1-0.dll"] @@ -8,7 +8,6 @@ api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_recalloc", "recalloc"] helpviewer_keywords: ["_recalloc function", "recalloc function"] -ms.assetid: 1db8305a-3f03-418c-8844-bf9149f63046 --- # `_recalloc` diff --git a/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md b/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md index 76a5f50581..aad03f0a47 100644 --- a/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md +++ b/docs/intrinsics/mm-insert-si64-mm-inserti-si64.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: _mm_insert_si64, _mm_inserti_si64" title: "_mm_insert_si64, _mm_inserti_si64" +description: "Learn more about: _mm_insert_si64, _mm_inserti_si64" ms.date: "09/02/2019" f1_keywords: ["_mm_inserti_si64", "_mm_insert_si64"] helpviewer_keywords: ["insertq instruction", "_mm_insert_si64 intrinsic", "_mm_inserti_si64 intrinsic"] -ms.assetid: 897a4b36-8b08-4b00-a18f-7850f5732d7d --- # _mm_insert_si64, _mm_inserti_si64 diff --git a/docs/mfc/reference/cwinapp-class.md b/docs/mfc/reference/cwinapp-class.md index b84c99b21f..f50f041e64 100644 --- a/docs/mfc/reference/cwinapp-class.md +++ b/docs/mfc/reference/cwinapp-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CWinApp Class" title: "CWinApp Class" +description: "Learn more about: CWinApp Class" ms.date: "07/15/2019" f1_keywords: ["CWinApp", "AFXWIN/CWinApp", "AFXWIN/CWinApp::CWinApp", "AFXWIN/CWinApp::AddDocTemplate", "AFXWIN/CWinApp::AddToRecentFileList", "AFXWIN/CWinApp::ApplicationRecoveryCallback", "AFXWIN/CWinApp::CloseAllDocuments", "AFXWIN/CWinApp::CreatePrinterDC", "AFXWIN/CWinApp::DelRegTree", "AFXWIN/CWinApp::DoMessageBox", "AFXWIN/CWinApp::DoWaitCursor", "AFXWIN/CWinApp::EnableD2DSupport", "AFXWIN/CWinApp::EnableHtmlHelp", "AFXWIN/CWinApp::EnableTaskbarInteraction", "AFXWIN/CWinApp::ExitInstance", "AFXWIN/CWinApp::GetApplicationRecoveryParameter", "AFXWIN/CWinApp::GetApplicationRecoveryPingInterval", "AFXWIN/CWinApp::GetApplicationRestartFlags", "AFXWIN/CWinApp::GetAppRegistryKey", "AFXWIN/CWinApp::GetDataRecoveryHandler", "AFXWIN/CWinApp::GetFirstDocTemplatePosition", "AFXWIN/CWinApp::GetHelpMode", "AFXWIN/CWinApp::GetNextDocTemplate", "AFXWIN/CWinApp::GetPrinterDeviceDefaults", "AFXWIN/CWinApp::GetProfileBinary", "AFXWIN/CWinApp::GetProfileInt", "AFXWIN/CWinApp::GetProfileString", "AFXWIN/CWinApp::GetSectionKey", "AFXWIN/CWinApp::HideApplication", "AFXWIN/CWinApp::HtmlHelp", "AFXWIN/CWinApp::InitInstance", "AFXWIN/CWinApp::IsTaskbarInteractionEnabled", "AFXWIN/CWinApp::LoadCursor", "AFXWIN/CWinApp::LoadIcon", "AFXWIN/CWinApp::LoadOEMCursor", "AFXWIN/CWinApp::LoadOEMIcon", "AFXWIN/CWinApp::LoadStandardCursor", "AFXWIN/CWinApp::LoadStandardIcon", "AFXWIN/CWinApp::OnDDECommand", "AFXWIN/CWinApp::OnIdle", "AFXWIN/CWinApp::OpenDocumentFile", "AFXWIN/CWinApp::ParseCommandLine", "AFXWIN/CWinApp::PreTranslateMessage", "AFXWIN/CWinApp::ProcessMessageFilter", "AFXWIN/CWinApp::ProcessShellCommand", "AFXWIN/CWinApp::ProcessWndProcException", "AFXWIN/CWinApp::Register", "AFXWIN/CWinApp::RegisterWithRestartManager", "AFXWIN/CWinApp::ReopenPreviousFilesAtRestart", "AFXWIN/CWinApp::RestartInstance", "AFXWIN/CWinApp::RestoreAutosavedFilesAtRestart", "AFXWIN/CWinApp::Run", "AFXWIN/CWinApp::RunAutomated", "AFXWIN/CWinApp::RunEmbedded", "AFXWIN/CWinApp::SaveAllModified", "AFXWIN/CWinApp::SelectPrinter", "AFXWIN/CWinApp::SetHelpMode", "AFXWIN/CWinApp::SupportsApplicationRecovery", "AFXWIN/CWinApp::SupportsAutosaveAtInterval", "AFXWIN/CWinApp::SupportsAutosaveAtRestart", "AFXWIN/CWinApp::SupportsRestartManager", "AFXWIN/CWinApp::Unregister", "AFXWIN/CWinApp::WinHelp", "AFXWIN/CWinApp::WriteProfileBinary", "AFXWIN/CWinApp::WriteProfileInt", "AFXWIN/CWinApp::WriteProfileString", "AFXWIN/CWinApp::EnableShellOpen", "AFXWIN/CWinApp::LoadStdProfileSettings", "AFXWIN/CWinApp::OnContextHelp", "AFXWIN/CWinApp::OnFileNew", "AFXWIN/CWinApp::OnFileOpen", "AFXWIN/CWinApp::OnFilePrintSetup", "AFXWIN/CWinApp::OnHelp", "AFXWIN/CWinApp::OnHelpFinder", "AFXWIN/CWinApp::OnHelpIndex", "AFXWIN/CWinApp::OnHelpUsing", "AFXWIN/CWinApp::RegisterShellFileTypes", "AFXWIN/CWinApp::SetAppID", "AFXWIN/CWinApp::SetRegistryKey", "AFXWIN/CWinApp::UnregisterShellFileTypes", "AFXWIN/CWinApp::m_bHelpMode", "AFXWIN/CWinApp::m_eHelpType", "AFXWIN/CWinApp::m_hInstance", "AFXWIN/CWinApp::m_lpCmdLine", "AFXWIN/CWinApp::m_nCmdShow", "AFXWIN/CWinApp::m_pActiveWnd", "AFXWIN/CWinApp::m_pszAppID", "AFXWIN/CWinApp::m_pszAppName", "AFXWIN/CWinApp::m_pszExeName", "AFXWIN/CWinApp::m_pszHelpFilePath", "AFXWIN/CWinApp::m_pszProfileName", "AFXWIN/CWinApp::m_pszRegistryKey", "AFXWIN/CWinApp::m_dwRestartManagerSupportFlags", "AFXWIN/CWinApp::m_nAutosaveInterval", "AFXWIN/CWinApp::m_pDataRecoveryHandler"] helpviewer_keywords: ["CWinApp [MFC], CWinApp", "CWinApp [MFC], AddDocTemplate", "CWinApp [MFC], AddToRecentFileList", "CWinApp [MFC], ApplicationRecoveryCallback", "CWinApp [MFC], CloseAllDocuments", "CWinApp [MFC], CreatePrinterDC", "CWinApp [MFC], DelRegTree", "CWinApp [MFC], DoMessageBox", "CWinApp [MFC], DoWaitCursor", "CWinApp [MFC], EnableD2DSupport", "CWinApp [MFC], EnableHtmlHelp", "CWinApp [MFC], EnableTaskbarInteraction", "CWinApp [MFC], ExitInstance", "CWinApp [MFC], GetApplicationRecoveryParameter", "CWinApp [MFC], GetApplicationRecoveryPingInterval", "CWinApp [MFC], GetApplicationRestartFlags", "CWinApp [MFC], GetAppRegistryKey", "CWinApp [MFC], GetDataRecoveryHandler", "CWinApp [MFC], GetFirstDocTemplatePosition", "CWinApp [MFC], GetHelpMode", "CWinApp [MFC], GetNextDocTemplate", "CWinApp [MFC], GetPrinterDeviceDefaults", "CWinApp [MFC], GetProfileBinary", "CWinApp [MFC], GetProfileInt", "CWinApp [MFC], GetProfileString", "CWinApp [MFC], GetSectionKey", "CWinApp [MFC], HideApplication", "CWinApp [MFC], HtmlHelp", "CWinApp [MFC], InitInstance", "CWinApp [MFC], IsTaskbarInteractionEnabled", "CWinApp [MFC], LoadCursor", "CWinApp [MFC], LoadIcon", "CWinApp [MFC], LoadOEMCursor", "CWinApp [MFC], LoadOEMIcon", "CWinApp [MFC], LoadStandardCursor", "CWinApp [MFC], LoadStandardIcon", "CWinApp [MFC], OnDDECommand", "CWinApp [MFC], OnIdle", "CWinApp [MFC], OpenDocumentFile", "CWinApp [MFC], ParseCommandLine", "CWinApp [MFC], PreTranslateMessage", "CWinApp [MFC], ProcessMessageFilter", "CWinApp [MFC], ProcessShellCommand", "CWinApp [MFC], ProcessWndProcException", "CWinApp [MFC], Register", "CWinApp [MFC], RegisterWithRestartManager", "CWinApp [MFC], ReopenPreviousFilesAtRestart", "CWinApp [MFC], RestartInstance", "CWinApp [MFC], RestoreAutosavedFilesAtRestart", "CWinApp [MFC], Run", "CWinApp [MFC], RunAutomated", "CWinApp [MFC], RunEmbedded", "CWinApp [MFC], SaveAllModified", "CWinApp [MFC], SelectPrinter", "CWinApp [MFC], SetHelpMode", "CWinApp [MFC], SupportsApplicationRecovery", "CWinApp [MFC], SupportsAutosaveAtInterval", "CWinApp [MFC], SupportsAutosaveAtRestart", "CWinApp [MFC], SupportsRestartManager", "CWinApp [MFC], Unregister", "CWinApp [MFC], WinHelp", "CWinApp [MFC], WriteProfileBinary", "CWinApp [MFC], WriteProfileInt", "CWinApp [MFC], WriteProfileString", "CWinApp [MFC], EnableShellOpen", "CWinApp [MFC], LoadStdProfileSettings", "CWinApp [MFC], OnContextHelp", "CWinApp [MFC], OnFileNew", "CWinApp [MFC], OnFileOpen", "CWinApp [MFC], OnFilePrintSetup", "CWinApp [MFC], OnHelp", "CWinApp [MFC], OnHelpFinder", "CWinApp [MFC], OnHelpIndex", "CWinApp [MFC], OnHelpUsing", "CWinApp [MFC], RegisterShellFileTypes", "CWinApp [MFC], SetAppID", "CWinApp [MFC], SetRegistryKey", "CWinApp [MFC], UnregisterShellFileTypes", "CWinApp [MFC], m_bHelpMode", "CWinApp [MFC], m_eHelpType", "CWinApp [MFC], m_hInstance", "CWinApp [MFC], m_lpCmdLine", "CWinApp [MFC], m_nCmdShow", "CWinApp [MFC], m_pActiveWnd", "CWinApp [MFC], m_pszAppID", "CWinApp [MFC], m_pszAppName", "CWinApp [MFC], m_pszExeName", "CWinApp [MFC], m_pszHelpFilePath", "CWinApp [MFC], m_pszProfileName", "CWinApp [MFC], m_pszRegistryKey", "CWinApp [MFC], m_dwRestartManagerSupportFlags", "CWinApp [MFC], m_nAutosaveInterval", "CWinApp [MFC], m_pDataRecoveryHandler"] -ms.assetid: e426a3cd-0d15-40d6-bd55-beaa5feb2343 --- # CWinApp Class From 5dcf95e6b176262ba27dffca5ecde574bb8d96fd Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 9 Mar 2025 20:57:01 +0800 Subject: [PATCH 024/981] Update `Concurrency::direct3d` namespace functions --- ...rrency-direct3d-namespace-functions-amp.md | 155 +++++++++--------- 1 file changed, 78 insertions(+), 77 deletions(-) diff --git a/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md b/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md index 9b2c9aa3e6..d0a6ddd7c4 100644 --- a/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md +++ b/docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md @@ -46,11 +46,12 @@ f1_keywords: ["amp/Concurrency::direct3d::abs", "amp/Concurrency::direct3d::coun ## Requirements **Header:** amp.h + **Namespace:** Concurrency ## abs -Returns the absolute value of the argument +Returns the absolute value of the argument. ```cpp inline int abs(int _X) restrict(amp); @@ -58,7 +59,7 @@ inline int abs(int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Integer value ### Return Value @@ -83,13 +84,13 @@ inline int clamp( ### Parameters -*_X*
-The value to be clamped +*_X*\ +The value to be clamped. -*_Min*
+*_Min*\ The lower bound of the clamping range. -*_Max*
+*_Max*\ The upper bound of the clamping range. ### Return Value @@ -98,7 +99,7 @@ The clamped value of `_X`. ## countbits -Counts the number of set bits in _X +Counts the number of set bits in `_X`. ```cpp inline unsigned int countbits(unsigned int _X) restrict(amp); @@ -106,12 +107,12 @@ inline unsigned int countbits(unsigned int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Unsigned integer value ### Return Value -Returns the number of set bits in _X +Returns the number of set bits in `_X`. ## create_accelerator_view @@ -132,16 +133,16 @@ accelerator_view create_accelerator_view( ### Parameters -*_Accelerator*
+*_Accelerator*\ The accelerator on which the new accelerator_view is to be created. -*_D3D_device*
+*_D3D_device*\ The pointer to the Direct3D device interface. -*_Disable_timeout*
+*_Disable_timeout*\ A Boolean parameter that specifies whether timeout should be disabled for the newly created accelerator_view. This corresponds to the D3D11_CREATE_DEVICE_DISABLE_GPU_TIMEOUT flag for Direct3D device creation and is used to indicate if the operating system should allow workloads that take more than 2 seconds to execute without resetting the device per the Windows timeout detection and recovery mechanism. Use of this flag is recommended if you need to perform time consuming tasks on the accelerator_view. -*_Qmode*
+*_Qmode*\ The [queuing_mode](concurrency-namespace-enums-amp.md#queuing_mode) to be used for the newly created accelerator_view. This parameter has a default value of `queuing_mode_automatic`. ## Return Value @@ -166,7 +167,7 @@ void __cdecl d3d_access_lock(accelerator_view& _Av); ### Parameters -*_Av*
+*_Av*\ The accelerator_view to lock. ## d3d_access_try_lock @@ -179,7 +180,7 @@ bool __cdecl d3d_access_try_lock(accelerator_view& _Av); ### Parameters -*_Av*
+*_Av*\ The accelerator_view to lock. ### Return Value @@ -196,12 +197,12 @@ void __cdecl d3d_access_unlock(accelerator_view& _Av); ### Parameters -*_Av*
+*_Av*\ The accelerator_view for which the lock is to be released. ## firstbithigh -Gets the location of the first set bit in _X, beginning with the highest-order bit and moving towards the lowest-order bit. +Gets the location of the first set bit in `_X`, beginning with the highest-order bit and moving towards the lowest-order bit. ```cpp inline int firstbithigh(int _X) restrict(amp); @@ -209,16 +210,16 @@ inline int firstbithigh(int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Integer value ### Return Value -The location of the first set bit +The location of the first set bit. ## firstbitlow -Gets the location of the first set bit in _X, beginning with the lowest-order bit and working toward the highest-order bit. +Gets the location of the first set bit in `_X`, beginning with the lowest-order bit and working toward the highest-order bit. ```cpp inline int firstbitlow(int _X) restrict(amp); @@ -226,12 +227,12 @@ inline int firstbitlow(int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Integer value ### Return Value -Returns The location of the first set bit +Returns The location of the first set bit. ## get_buffer @@ -243,18 +244,18 @@ template< int _Rank > IUnknown *get_buffer( - const array& _Array) ; + const array& _Array); ``` ### Parameters -*value_type*
+*value_type*\ The type of elements in the array. -*_Rank*
+*_Rank*\ The rank of the array. -*_Array*
+*_Array*\ An array on a Direct3D accelerator_view for which the underlying Direct3D buffer interface is returned. ### Return Value @@ -271,7 +272,7 @@ IUnknown* get_device(const accelerator_view Av); ### Parameters -*Av*
+*Av*\ The D3D accelerator_view for which the underlying D3D device interface is returned. ### Return value @@ -280,7 +281,7 @@ The `IUnknown` interface pointer of the D3D device underlying the accelerator_vi ## imax -Determine the maximum numeric value of the arguments +Determine the maximum numeric value of the arguments. ```cpp inline int imax( @@ -290,19 +291,19 @@ inline int imax( ### Parameters -*_X*
+*_X*\ Integer value -*_Y*
+*_Y*\ Integer value ### Return Value -Return the maximum numeric value of the arguments +Return the maximum numeric value of the arguments. ## imin -Determine the minimum numeric value of the arguments +Determine the minimum numeric value of the arguments. ```cpp inline int imin( @@ -312,15 +313,15 @@ inline int imin( ### Parameters -*_X*
+*_X*\ Integer value -*_Y*
+*_Y*\ Integer value ### Return Value -Return the minimum numeric value of the arguments +Return the minimum numeric value of the arguments. ## is_timeout_disabled @@ -332,7 +333,7 @@ bool __cdecl is_timeout_disabled(const accelerator_view& _Accelerator_view); ### Parameters -*_Accelerator_view*
+*_Accelerator_view*\ The accelerator_view for which the timeout disabled setting is to be queried. ### Return Value @@ -367,13 +368,13 @@ inline unsigned int mad( ### Parameters -*_X*
+*_X*\ The first specified argument. -*_Y*
+*_Y*\ The second specified argument. -*_Z*
+*_Z*\ The third specified argument. ### Return Value @@ -392,24 +393,24 @@ template< array make_array( const extent<_Rank>& _Extent, const Concurrency::accelerator_view& _Rv, - IUnknown* _D3D_buffer) ; + IUnknown* _D3D_buffer); ``` ### Parameters -*value_type*
+*value_type*\ The element type of the array to be created. -*_Rank*
+*_Rank*\ The rank of the array to be created. -*_Extent*
+*_Extent*\ An extent that describes the shape of the array aggregate. -*_Rv*
+*_Rv*\ A D3D accelerator view on which the array is to be created. -*_D3D_buffer*
+*_D3D_buffer*\ IUnknown interface pointer of the D3D buffer to create the array from. ### Return Value @@ -418,7 +419,7 @@ An array created using the provided Direct3D buffer. ## noise -Generates a random value using the Perlin noise algorithm +Generates a random value using the Perlin noise algorithm. ```cpp inline float noise(float _X) restrict(amp); @@ -426,16 +427,16 @@ inline float noise(float _X) restrict(amp); ### Parameters -*_X*
-Floating-point value from which to generate Perlin noise +*_X*\ +Floating-point value from which to generate Perlin noise. ### Return Value -Returns The Perlin noise value within a range between -1 and 1 +Returns the Perlin noise value within a range between -1 and 1. ## radians -Converts _X from degrees to radians +Converts `_X` from degrees to radians. ```cpp inline float radians(float _X) restrict(amp); @@ -443,12 +444,12 @@ inline float radians(float _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Floating-point value ### Return Value -Returns _X converted from degrees to radians +Returns `_X` converted from degrees to radians. ## rcp @@ -462,7 +463,7 @@ inline double rcp(double _X) restrict(amp); ### Parameters -*_X*
+*_X*\ The value for which to compute the reciprocal. ### Return Value @@ -471,7 +472,7 @@ The reciprocal of the specified argument. ## reversebits -Reverses the order of the bits in _X +Reverses the order of the bits in `_X`. ```cpp inline unsigned int reversebits(unsigned int _X) restrict(amp); @@ -479,16 +480,16 @@ inline unsigned int reversebits(unsigned int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Unsigned integer value ### Return Value -Returns the value with the bit order reversed in _X +Returns the value with the bit order reversed in `_X`. ## saturate -Clamps _X within the range of 0 to 1 +Clamps `_X` within the range of 0 to 1. ```cpp inline float saturate(float _X) restrict(amp); @@ -496,12 +497,12 @@ inline float saturate(float _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Floating-point value ### Return Value -Returns _X clamped within the range of 0 to 1 +Returns `_X` clamped within the range of 0 to 1. ## sign @@ -513,7 +514,7 @@ inline int sign(int _X) restrict(amp); ### Parameters -*_X*
+*_X*\ Integer value ### Return Value @@ -522,7 +523,7 @@ The sign of the argument. ## smoothstep -Returns a smooth Hermite interpolation between 0 and 1, if _X is in the range [_Min, _Max]. +Returns a smooth Hermite interpolation between 0 and 1, if `_X` is in the range [_Min, _Max]. ```cpp inline float smoothstep( @@ -533,22 +534,22 @@ inline float smoothstep( ### Parameters -*_Min*
+*_Min*\ Floating-point value -*_Max*
+*_Max*\ Floating-point value -*_X*
+*_X*\ Floating-point value ### Return Value -Returns 0 if _X is less than _Min; 1 if _X is greater than _Max; otherwise, a value between 0 and 1 if _X is in the range [_Min, _Max] +Returns 0 if `_X` is less than _Min; 1 if `_X` is greater than _Max; otherwise, a value between 0 and 1 if `_X` is in the range [_Min, _Max]. ## step -Compares two values, returning 0 or 1 based on which value is greater +Compares two values, returning 0 or 1 based on which value is greater. ```cpp inline float step( @@ -558,19 +559,19 @@ inline float step( ### Parameters -*_Y*
+*_Y*\ Floating-point value -*_X*
+*_X*\ Floating-point value ### Return Value -Returns 1 if the _X is greater than or equal to _Y; otherwise, 0 +Returns 1 if the `_X` is greater than or equal to `_Y`; otherwise, 0. ## umax -Determine the maximum numeric value of the arguments +Determine the maximum numeric value of the arguments. ```cpp inline unsigned int umax( @@ -580,19 +581,19 @@ inline unsigned int umax( ### Parameters -*_X*
+*_X*\ Integer value -*_Y*
+*_Y*\ Integer value ### Return Value -Return the maximum numeric value of the arguments +Return the maximum numeric value of the arguments. ## umin -Determine the minimum numeric value of the arguments +Determine the minimum numeric value of the arguments. ```cpp inline unsigned int umin( @@ -602,15 +603,15 @@ inline unsigned int umin( ### Parameters -*_X*
+*_X*\ Integer value -*_Y*
+*_Y*\ Integer value ### Return Value -Return the minimum numeric value of the arguments +Return the minimum numeric value of the arguments. ## See also From 11a7c4248d51d1f6b727f04ae6e7c8c26c61fee8 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 10 Mar 2025 23:56:10 +0800 Subject: [PATCH 025/981] Add missing character to multiple `AnalyzeA` function link text --- .../reference/sdk/functions/stop-tracing-session-a.md | 2 +- .../reference/sdk/functions/stop-tracing-session-w.md | 2 +- .../reference/sdk/functions/stop-tracing-session.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/build-insights/reference/sdk/functions/stop-tracing-session-a.md b/docs/build-insights/reference/sdk/functions/stop-tracing-session-a.md index 46dedc00da..39ac969bab 100644 --- a/docs/build-insights/reference/sdk/functions/stop-tracing-session-a.md +++ b/docs/build-insights/reference/sdk/functions/stop-tracing-session-a.md @@ -13,7 +13,7 @@ The C++ Build Insights SDK is compatible with Visual Studio 2017 and later. To s ::: moniker-end ::: moniker range=">=msvc-150" -The `StopTracingSessionA` function stops an ongoing tracing session and produces a raw trace file. Raw trace files can be passed to the [Analyze](analyze.md), [AnalzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. Raw trace files can also be passed to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start relogging session. Executables calling `StopTracingSessionA` must have administrator privileges. +The `StopTracingSessionA` function stops an ongoing tracing session and produces a raw trace file. Raw trace files can be passed to the [Analyze](analyze.md), [AnalyzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. Raw trace files can also be passed to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start relogging session. Executables calling `StopTracingSessionA` must have administrator privileges. ## Syntax diff --git a/docs/build-insights/reference/sdk/functions/stop-tracing-session-w.md b/docs/build-insights/reference/sdk/functions/stop-tracing-session-w.md index a050b60ed3..32e05f8ce8 100644 --- a/docs/build-insights/reference/sdk/functions/stop-tracing-session-w.md +++ b/docs/build-insights/reference/sdk/functions/stop-tracing-session-w.md @@ -13,7 +13,7 @@ The C++ Build Insights SDK is compatible with Visual Studio 2017 and later. To s ::: moniker-end ::: moniker range=">=msvc-150" -The `StopTracingSessionW` function stops an ongoing tracing session and produces a raw trace file. Raw trace files can be passed to the [Analyze](analyze.md), [AnalzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. Raw trace files can also be passed to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start relogging session. Executables calling `StopTracingSessionW` must have administrator privileges. +The `StopTracingSessionW` function stops an ongoing tracing session and produces a raw trace file. Raw trace files can be passed to the [Analyze](analyze.md), [AnalyzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. Raw trace files can also be passed to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start relogging session. Executables calling `StopTracingSessionW` must have administrator privileges. ## Syntax diff --git a/docs/build-insights/reference/sdk/functions/stop-tracing-session.md b/docs/build-insights/reference/sdk/functions/stop-tracing-session.md index ca9bea6c23..d44131f366 100644 --- a/docs/build-insights/reference/sdk/functions/stop-tracing-session.md +++ b/docs/build-insights/reference/sdk/functions/stop-tracing-session.md @@ -15,7 +15,7 @@ The C++ Build Insights SDK is compatible with Visual Studio 2017 and later. To s ::: moniker-end ::: moniker range=">=msvc-150" -The `StopTracingSession` function stops an ongoing tracing session and produces a raw trace file. You can pass raw trace files to the [Analyze](analyze.md), [AnalzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. You can pass raw trace files to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start a relogging session. +The `StopTracingSession` function stops an ongoing tracing session and produces a raw trace file. You can pass raw trace files to the [Analyze](analyze.md), [AnalyzeA](analyze-a.md), and [AnalyzeW](analyze-w.md) functions to start an analysis session. You can pass raw trace files to the [Relog](relog.md), [RelogA](relog-a.md), and [RelogW](relog-w.md) functions to start a relogging session. The caller must have administrator permissions to use `StopTracingSession`. From 4132e72657c823107905a507a8e874ed1048eb3d Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Tue, 11 Mar 2025 11:28:43 -0500 Subject: [PATCH 026/981] docs for justification in pragma warning --- docs/preprocessor/warning.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/docs/preprocessor/warning.md b/docs/preprocessor/warning.md index da6d618984..c57ae9694b 100644 --- a/docs/preprocessor/warning.md +++ b/docs/preprocessor/warning.md @@ -13,7 +13,7 @@ Enables selective modification of the behavior of compiler warning messages. ## Syntax > **`#pragma warning(`**\ ->  *`warning-specifier`* **`:`** *`warning-number-list`*\ +>  *`warning-specifier`* **`:`** *`warning-number-list`* [ **`,`** **`justification`** **`:`** *`string-literal`*]\ >  [**`;`** *`warning-specifier`* **`:`** *`warning-number-list`* ... ] **`)`**\ > **`#pragma warning( push`** [ **`,`** *n* ] **`)`**\ > **`#pragma warning( pop )`** @@ -26,10 +26,10 @@ The following warning-specifier parameters are available. |--|--| | `1`, `2`, `3`, `4` | Apply the given level to the specified warnings. Also turns on a specified warning that is off by default. | | `default` | Reset warning behavior to its default value. Also turns on a specified warning that is off by default. The warning will be generated at its default, documented, level.

For more information, see [Compiler warnings that are off by default](../preprocessor/compiler-warnings-that-are-off-by-default.md). | -| `disable` | Don't issue the specified warning messages. | +| `disable` | Don't issue the specified warning messages. The optional **`justification`** property is allowed. | | `error` | Report the specified warnings as errors. | | `once` | Display the specified message(s) only one time. | -| `suppress` | Pushes the current state of the pragma on the stack, disables the specified warning for the next line, and then pops the warning stack so that the pragma state is reset. | +| `suppress` | Pushes the current state of the pragma on the stack, disables the specified warning for the next line, and then pops the warning stack so that the pragma state is reset. The optional **`justification`** property is allowed. | The following code statement illustrates that a *`warning-number-list`* parameter can contain multiple warning numbers, and that multiple *`warning-specifier`* parameters can be specified in the same pragma directive. @@ -37,6 +37,15 @@ The following code statement illustrates that a *`warning-number-list`* paramete #pragma warning( disable : 4507 34; once : 4385; error : 164 ) ``` +However, when the **`justification`** field is present, only one warning number can be specified. The following code statement illustrates the use of the **`justification`** field. + +```cpp +#pragma warning( disable : 4507, justification : "This warning is disabled" ) +``` + +The **`justification`** fields allows you to explain why a warning is being disable or +suppressed. The **`justification`** field is only supported for the **`disable`** and **`suppress`** *`warning-specifier`*. This value will appear in the SARIF output when the `/analyze:log:includesuppressed` option is specified. Its value is a UTF-8 encoded narrow string literal. + This directive is functionally equivalent to the following code: ```cpp From ca96f8c767d7f480a767f8679f123f020a06c447 Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Tue, 11 Mar 2025 11:35:14 -0500 Subject: [PATCH 027/981] docs for gsl::suppress --- docs/cpp/attributes.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/cpp/attributes.md b/docs/cpp/attributes.md index 961f2945bb..b34a559f80 100644 --- a/docs/cpp/attributes.md +++ b/docs/cpp/attributes.md @@ -77,16 +77,18 @@ The `[[noreturn]]` attribute specifies that a function never returns; in other w ## Microsoft-specific attributes -### `[[gsl::suppress(rules)]]` +### `[[gsl::suppress( [, justification: ])]]` -The Microsoft-specific `[[gsl::suppress(rules)]]` attribute is used to suppress warnings from checkers that enforce [Guidelines Support Library (GSL)](https://github.com/Microsoft/GSL) rules in code. For example, consider this code snippet: +`` is a string that specifies the name of the rule to suppress. The optional `justification` field allows you to explain why a warning is being disabled or suppressed. This value will appear in the SARIF output when the `/analyze:log:includesuppressed` option is specified. Its value is a UTF-8 encoded narrow string literal. The `[[gsl::suppress]]` attribute is available in Visual Studio 2022 version 17.14 and later versions. + +The Microsoft-specific `[[gsl::suppress]]` attribute is used to suppress warnings from checkers that enforce [Guidelines Support Library (GSL)](https://github.com/Microsoft/GSL) rules in code. For example, consider this code snippet: ```cpp int main() { int arr[10]; // GSL warning C26494 will be fired int* p = arr; // GSL warning C26485 will be fired - [[gsl::suppress(bounds.1)]] // This attribute suppresses Bounds rule #1 + [[gsl::suppress("bounds.1", justification: "This attribute suppresses Bounds rule #1")]] { int* q = p + 1; // GSL warning C26481 suppressed p = q--; // GSL warning C26481 suppressed @@ -102,7 +104,7 @@ The example raises these warnings: - [C26481](../code-quality/c26481.md) (Bounds Rule 1: Don't use pointer arithmetic. Use span instead.) -The first two warnings fire when you compile this code with the CppCoreCheck code analysis tool installed and activated. But the third warning doesn't fire because of the attribute. You can suppress the entire bounds profile by writing `[[gsl::suppress(bounds)]]` without including a specific rule number. The C++ Core Guidelines are designed to help you write better and safer code. The suppress attribute makes it easy to turn off the warnings when they aren't wanted. +The first two warnings fire when you compile this code with the CppCoreCheck code analysis tool installed and activated. But the third warning doesn't fire because of the attribute. You can suppress the entire bounds profile by writing `[[gsl::suppress("bounds")]]` without including a specific rule number. The C++ Core Guidelines are designed to help you write better and safer code. The suppress attribute makes it easy to turn off the warnings when they aren't wanted. ### `[[msvc::flatten]]` From 7407042f5f915b28d238aade102c7dfec0f96d5b Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Tue, 11 Mar 2025 11:37:03 -0500 Subject: [PATCH 028/981] teach gsl::suppress("rule") instead of gsl::suppress(rule) --- docs/code-quality/c26401.md | 2 +- docs/code-quality/c26409.md | 2 +- .../using-the-cpp-core-guidelines-checkers.md | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/code-quality/c26401.md b/docs/code-quality/c26401.md index ef45225be5..023338c378 100644 --- a/docs/code-quality/c26401.md +++ b/docs/code-quality/c26401.md @@ -63,7 +63,7 @@ public: ref_count_--; if (ref_count_ == 0) { - [[gsl::suppress(i.11)]] + [[gsl::suppress("i.11")]] delete this; } } diff --git a/docs/code-quality/c26409.md b/docs/code-quality/c26409.md index 8939a08776..c9686cfee7 100644 --- a/docs/code-quality/c26409.md +++ b/docs/code-quality/c26409.md @@ -49,7 +49,7 @@ public: ref_count_--; if (ref_count_ == 0) { - [[gsl::suppress(i.11)]] + [[gsl::suppress("i.11")]] delete this; } } diff --git a/docs/code-quality/using-the-cpp-core-guidelines-checkers.md b/docs/code-quality/using-the-cpp-core-guidelines-checkers.md index 3609f413ac..7cb4850071 100644 --- a/docs/code-quality/using-the-cpp-core-guidelines-checkers.md +++ b/docs/code-quality/using-the-cpp-core-guidelines-checkers.md @@ -74,7 +74,7 @@ int main() int arr[10]; // warning C26494 int* p = arr; // warning C26485 - [[gsl::suppress(bounds.1)]] // This attribute suppresses Bounds rule #1 + [[gsl::suppress("bounds.1", justification : "This attribute suppresses Bounds rules #1")]] { int* q = p + 1; // warning C26481 (suppressed) p = q++; // warning C26481 (suppressed) @@ -104,7 +104,7 @@ c:\users\username\documents\visual studio 2015\projects\corecheckexample\coreche ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== ``` -The C++ Core Guidelines are there to help you write better and safer code. However, you might find an instance where a rule or a profile shouldn't be applied. It's easy to suppress it directly in the code. You can use the `[[gsl::suppress]]` attribute to keep C++ Core Check from detecting and reporting any violation of a rule in the following code block. You can mark individual statements to suppress specific rules. You can even suppress the entire bounds profile by writing `[[gsl::suppress(bounds)]]` without including a specific rule number. +The C++ Core Guidelines are there to help you write better and safer code. However, you might find an instance where a rule or a profile shouldn't be applied. It's easy to suppress it directly in the code. You can use the `[[gsl::suppress]]` attribute to keep C++ Core Check from detecting and reporting any violation of a rule in the following code block. You can mark individual statements to suppress specific rules. You can even suppress the entire bounds profile by writing `[[gsl::suppress("bounds")]]` without including a specific rule number. ## Supported rule sets @@ -197,10 +197,10 @@ The Microsoft C++ compiler has limited support for the `[[gsl::suppress]]` attri ```cpp // Suppress only warnings from the 'r.11' rule in expression. -[[gsl::suppress(r.11)]] new int; +[[gsl::suppress("r.11")]] new int; // Suppress all warnings from the 'r' rule group (resource management) in block. -[[gsl::suppress(r)]] +[[gsl::suppress("r")]] { new int; } @@ -209,7 +209,7 @@ The Microsoft C++ compiler has limited support for the `[[gsl::suppress]]` attri // For declarations, you might need to use the surrounding block. // Macros are not expanded inside of attributes. // Use plain numbers instead of macros from the warnings.h. -[[gsl::suppress(26400)]] +[[gsl::suppress("26400")]] { int *p = new int; } From 674751b4b8a34158bc972760ab3e803334d2f52f Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 11 Mar 2025 09:39:08 -0700 Subject: [PATCH 029/981] test --- docs/build/reference/dynamic-deopt-linker.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 20eff8492a..629f0b7a5f 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -12,6 +12,10 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +|:---:|:---:|:---:| +| test: `x||y` | test: `x||y` | test: `x||y` | + + ## Syntax > **`/DYNAMICDEOPT`** From 3368faa75845fecd108120b3359a64eb27429791 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 11 Mar 2025 09:43:49 -0700 Subject: [PATCH 030/981] test --- docs/build/reference/dynamic-deopt-linker.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 629f0b7a5f..d6686ad43b 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -12,8 +12,9 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. -|:---:|:---:|:---:| -| test: `x||y` | test: `x||y` | test: `x||y` | +| | | +|---|---| +| test: `x||y` | test: `x||y` | ## Syntax From 92cf12c5a88855e7c88a96d3723fa7fe67230b1d Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 11 Mar 2025 09:50:16 -0700 Subject: [PATCH 031/981] restore --- docs/build/reference/dynamic-deopt-linker.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index d6686ad43b..20eff8492a 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -12,11 +12,6 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. -| | | -|---|---| -| test: `x||y` | test: `x||y` | - - ## Syntax > **`/DYNAMICDEOPT`** From 84344c1e466d571e5fac8ce286353b150e2b1390 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 11 Mar 2025 11:11:55 -0700 Subject: [PATCH 032/981] update --- docs/build/reference/dynamic-deopt-linker.md | 2 +- docs/build/reference/dynamic-deopt.md | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 20eff8492a..0f6f6d5709 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option > The `/DYNAMICDEOPT` linker switch is currently in PREVIEW. > This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. -The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dynamicdeopt`](dynamic-deopt.md), enables [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging), which allows you to debug optimized code as if it were compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 63539fb5ce..edf924acc7 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynam > The `/dynamicdeopt` compiler switch is currently in PREVIEW. > This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. -Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) so you can debug optimized code as if it had been compiled deoptimized and step in anywhere with on-demand function deoptimization. +Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging) so you can debug optimized code as if it were compiled deoptimized and step in anywhere with on-demand function deoptimization. ## Syntax @@ -59,9 +59,7 @@ fsanitize=kernel-address All of the CLR flags ``` -JTW - when I get a build with the property pages, push them to that section that sets the global property that does all of this for you and remove the next two lines. Possibly mention that it turns these things off for you. -Turn `/GL `off via Project properties C/C++ > Optimization > Whole Program Optimization. Set it to **No**. -Turn `/OPT:ICF` off in Project properties Linker > Optimization > Enable COMDAT Folding. Set it to **No**. +You can set this switch inside Visual Studio. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging#build-system-integration). There are advantages to setting the switch in Visual Studio because MSBUILD automatically suppresses some of the incompatible switches such as `/GL` and `/OPT:ICF`. It also sets the corresponding linker option (`/DYNAMICDEOPT`). You can also set the switch in the command line. ### To set this compiler option programmatically From 9a0a2ed3199af172f0017578c9b401d5c1cdbe8e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 15:10:42 +0800 Subject: [PATCH 033/981] Remove extra period characters --- docs/cpp/microsoft-specific-modifiers.md | 5 ++--- docs/mfc/reference/cmdichildwndex-class.md | 5 ++--- docs/mfc/reference/cmfcribbonbar-class.md | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/docs/cpp/microsoft-specific-modifiers.md b/docs/cpp/microsoft-specific-modifiers.md index 3d8fc86562..fda7e96615 100644 --- a/docs/cpp/microsoft-specific-modifiers.md +++ b/docs/cpp/microsoft-specific-modifiers.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: Microsoft-specific modifiers" title: "Microsoft-specific modifiers" +description: "Learn more about: Microsoft-specific modifiers" ms.date: "08/16/2018" -ms.assetid: 22c7178c-f854-47fa-9de6-07d23fda58e1 --- # Microsoft-specific modifiers @@ -29,7 +28,7 @@ Many of the Microsoft-specific keywords can be used to modify declarators to for |[__restrict](extension-restrict.md)|Similar to __declspec([restrict](restrict.md)), but for use on variables.|No| |[__stdcall](stdcall.md)|The name that follows specifies a function that observes the standard calling convention.|Yes| |[__w64](w64.md)|Marks a data type as being larger on a 64-bit compiler.|No| -|[__unaligned](unaligned.md)|Specifies that a pointer to a type or other data is not aligned..|No| +|[__unaligned](unaligned.md)|Specifies that a pointer to a type or other data is not aligned.|No| |[__vectorcall](vectorcall.md)|The name that follows declares a function that uses registers, including SSE registers, when available, instead of the stack for argument passing.|Yes| ## See also diff --git a/docs/mfc/reference/cmdichildwndex-class.md b/docs/mfc/reference/cmdichildwndex-class.md index 69dede7425..b1f2e320dd 100644 --- a/docs/mfc/reference/cmdichildwndex-class.md +++ b/docs/mfc/reference/cmdichildwndex-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CMDIChildWndEx Class" title: "CMDIChildWndEx Class" +description: "Learn more about: CMDIChildWndEx Class" ms.date: "10/18/2018" f1_keywords: ["CMDIChildWndEx", "AFXMDICHILDWNDEX/CMDIChildWndEx", "AFXMDICHILDWNDEX/CMDIChildWndEx::ActivateTopLevelFrame", "AFXMDICHILDWNDEX/CMDIChildWndEx::AddPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::AddTabbedPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::AdjustDockingLayout", "AFXMDICHILDWNDEX/CMDIChildWndEx::CanShowOnMDITabs", "AFXMDICHILDWNDEX/CMDIChildWndEx::CanShowOnTaskBarTabs", "AFXMDICHILDWNDEX/CMDIChildWndEx::CanShowOnWindowsList", "AFXMDICHILDWNDEX/CMDIChildWndEx::DockPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::DockPaneLeftOf", "AFXMDICHILDWNDEX/CMDIChildWndEx::EnableAutoHidePanes", "AFXMDICHILDWNDEX/CMDIChildWndEx::EnableDocking", "AFXMDICHILDWNDEX/CMDIChildWndEx::EnableTaskbarThumbnailClipRect", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetDockingManager", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetDocumentName", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetFrameIcon", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetFrameText", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetRelatedTabGroup", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetTabbedPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetTabProxyWnd", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetTaskbarPreviewWnd", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetTaskbarThumbnailClipRect", "AFXMDICHILDWNDEX/CMDIChildWndEx::GetToolbarButtonToolTipText", "AFXMDICHILDWNDEX/CMDIChildWndEx::InsertPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::InvalidateIconicBitmaps", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsPointNearDockSite", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsReadOnly", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsRegisteredWithTaskbarTabs", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsTabbedPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsTaskbarTabsSupportEnabled", "AFXMDICHILDWNDEX/CMDIChildWndEx::IsTaskbarThumbnailClipRectEnabled", "AFXMDICHILDWNDEX/CMDIChildWndEx::m_dwDefaultTaskbarTabPropertyFlags", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnGetIconicLivePreviewBitmap", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnGetIconicThumbnail", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnMoveMiniFrame", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnPressTaskbarThmbnailCloseButton", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnSetPreviewMode", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnTaskbarTabThumbnailActivate", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnTaskbarTabThumbnailMouseActivate", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnTaskbarTabThumbnailStretch", "AFXMDICHILDWNDEX/CMDIChildWndEx::OnUpdateFrameTitle", "AFXMDICHILDWNDEX/CMDIChildWndEx::PaneFromPoint", "AFXMDICHILDWNDEX/CMDIChildWndEx::RecalcLayout", "AFXMDICHILDWNDEX/CMDIChildWndEx::RegisterTaskbarTab", "AFXMDICHILDWNDEX/CMDIChildWndEx::RemovePaneFromDockManager", "AFXMDICHILDWNDEX/CMDIChildWndEx::SetRelatedTabGroup", "AFXMDICHILDWNDEX/CMDIChildWndEx::SetTaskbarTabActive", "AFXMDICHILDWNDEX/CMDIChildWndEx::SetTaskbarTabOrder", "AFXMDICHILDWNDEX/CMDIChildWndEx::SetTaskbarTabProperties", "AFXMDICHILDWNDEX/CMDIChildWndEx::SetTaskbarThumbnailClipRect", "AFXMDICHILDWNDEX/CMDIChildWndEx::ShowPane", "AFXMDICHILDWNDEX/CMDIChildWndEx::UnregisterTaskbarTab", "AFXMDICHILDWNDEX/CMDIChildWndEx::UpdateTaskbarTabIcon"] helpviewer_keywords: ["CMDIChildWndEx [MFC], ActivateTopLevelFrame", "CMDIChildWndEx [MFC], AddPane", "CMDIChildWndEx [MFC], AddTabbedPane", "CMDIChildWndEx [MFC], AdjustDockingLayout", "CMDIChildWndEx [MFC], CanShowOnMDITabs", "CMDIChildWndEx [MFC], CanShowOnTaskBarTabs", "CMDIChildWndEx [MFC], CanShowOnWindowsList", "CMDIChildWndEx [MFC], DockPane", "CMDIChildWndEx [MFC], DockPaneLeftOf", "CMDIChildWndEx [MFC], EnableAutoHidePanes", "CMDIChildWndEx [MFC], EnableDocking", "CMDIChildWndEx [MFC], EnableTaskbarThumbnailClipRect", "CMDIChildWndEx [MFC], GetDockingManager", "CMDIChildWndEx [MFC], GetDocumentName", "CMDIChildWndEx [MFC], GetFrameIcon", "CMDIChildWndEx [MFC], GetFrameText", "CMDIChildWndEx [MFC], GetPane", "CMDIChildWndEx [MFC], GetRelatedTabGroup", "CMDIChildWndEx [MFC], GetTabbedPane", "CMDIChildWndEx [MFC], GetTabProxyWnd", "CMDIChildWndEx [MFC], GetTaskbarPreviewWnd", "CMDIChildWndEx [MFC], GetTaskbarThumbnailClipRect", "CMDIChildWndEx [MFC], GetToolbarButtonToolTipText", "CMDIChildWndEx [MFC], InsertPane", "CMDIChildWndEx [MFC], InvalidateIconicBitmaps", "CMDIChildWndEx [MFC], IsPointNearDockSite", "CMDIChildWndEx [MFC], IsReadOnly", "CMDIChildWndEx [MFC], IsRegisteredWithTaskbarTabs", "CMDIChildWndEx [MFC], IsTabbedPane", "CMDIChildWndEx [MFC], IsTaskbarTabsSupportEnabled", "CMDIChildWndEx [MFC], IsTaskbarThumbnailClipRectEnabled", "CMDIChildWndEx [MFC], m_dwDefaultTaskbarTabPropertyFlags", "CMDIChildWndEx [MFC], OnGetIconicLivePreviewBitmap", "CMDIChildWndEx [MFC], OnGetIconicThumbnail", "CMDIChildWndEx [MFC], OnMoveMiniFrame", "CMDIChildWndEx [MFC], OnPressTaskbarThmbnailCloseButton", "CMDIChildWndEx [MFC], OnSetPreviewMode", "CMDIChildWndEx [MFC], OnTaskbarTabThumbnailActivate", "CMDIChildWndEx [MFC], OnTaskbarTabThumbnailMouseActivate", "CMDIChildWndEx [MFC], OnTaskbarTabThumbnailStretch", "CMDIChildWndEx [MFC], OnUpdateFrameTitle", "CMDIChildWndEx [MFC], PaneFromPoint", "CMDIChildWndEx [MFC], RecalcLayout", "CMDIChildWndEx [MFC], RegisterTaskbarTab", "CMDIChildWndEx [MFC], RemovePaneFromDockManager", "CMDIChildWndEx [MFC], SetRelatedTabGroup", "CMDIChildWndEx [MFC], SetTaskbarTabActive", "CMDIChildWndEx [MFC], SetTaskbarTabOrder", "CMDIChildWndEx [MFC], SetTaskbarTabProperties", "CMDIChildWndEx [MFC], SetTaskbarThumbnailClipRect", "CMDIChildWndEx [MFC], ShowPane", "CMDIChildWndEx [MFC], UnregisterTaskbarTab", "CMDIChildWndEx [MFC], UpdateTaskbarTabIcon"] -ms.assetid: d39fec06-0bd6-4271-917d-35aae3b24d8e --- # CMDIChildWndEx Class @@ -62,7 +61,7 @@ class CMDIChildWndEx : public CMDIChildWnd |[CMDIChildWndEx::OnGetIconicLivePreviewBitmap](#ongeticoniclivepreviewbitmap)|Called by the framework when it needs to obtain a bitmap for live preview of MDI child.| |[CMDIChildWndEx::OnGetIconicThumbnail](#ongeticonicthumbnail)|Called by the framework when it needs to obtain a bitmap for iconic thumbnail of MDI child.| |[CMDIChildWndEx::OnMoveMiniFrame](#onmoveminiframe)|Called by the framework to move a mini-frame window.| -|[CMDIChildWndEx::OnPressTaskbarThmbnailCloseButton](#onpresstaskbarthmbnailclosebutton)|Called by the framework when the user presses close button on Taskbar tab thumbnail..| +|[CMDIChildWndEx::OnPressTaskbarThmbnailCloseButton](#onpresstaskbarthmbnailclosebutton)|Called by the framework when the user presses close button on Taskbar tab thumbnail.| |[CMDIChildWndEx::OnSetPreviewMode](#onsetpreviewmode)|Called by the framework to enter or exit print preview mode.| |[CMDIChildWndEx::OnTaskbarTabThumbnailActivate](#ontaskbartabthumbnailactivate)|Called by the framework when the Taskbar tab thumbnail should process WM_ACTIVATE message.| |[CMDIChildWndEx::OnTaskbarTabThumbnailMouseActivate](#ontaskbartabthumbnailmouseactivate)|Called by the framework when the Taskbar tab thumbnail should process WM_MOUSEACTIVATE message.| diff --git a/docs/mfc/reference/cmfcribbonbar-class.md b/docs/mfc/reference/cmfcribbonbar-class.md index a0eb85dd1a..f3a5d7895e 100644 --- a/docs/mfc/reference/cmfcribbonbar-class.md +++ b/docs/mfc/reference/cmfcribbonbar-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CMFCRibbonBar Class" title: "CMFCRibbonBar Class" +description: "Learn more about: CMFCRibbonBar Class" ms.date: "11/04/2016" f1_keywords: ["CMFCRibbonBar", "AFXRIBBONBAR/CMFCRibbonBar", "AFXRIBBONBAR/CMFCRibbonBar::ActivateContextCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddContextCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddMainCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddPrintPreviewCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddQATOnlyCategory", "AFXRIBBONBAR/CMFCRibbonBar::AddToTabs", "AFXRIBBONBAR/CMFCRibbonBar::CreateEx", "AFXRIBBONBAR/CMFCRibbonBar::Create", "AFXRIBBONBAR/CMFCRibbonBar::DeactivateKeyboardFocus", "AFXRIBBONBAR/CMFCRibbonBar::DrawMenuImage", "AFXRIBBONBAR/CMFCRibbonBar::DWMCompositionChanged", "AFXRIBBONBAR/CMFCRibbonBar::EnableKeyTips", "AFXRIBBONBAR/CMFCRibbonBar::EnablePrintPreview", "AFXRIBBONBAR/CMFCRibbonBar::EnableToolTips", "AFXRIBBONBAR/CMFCRibbonBar::FindByData", "AFXRIBBONBAR/CMFCRibbonBar::FindByID", "AFXRIBBONBAR/CMFCRibbonBar::FindCategoryIndexByData", "AFXRIBBONBAR/CMFCRibbonBar::ForceRecalcLayout", "AFXRIBBONBAR/CMFCRibbonBar::GetActiveCategory", "AFXRIBBONBAR/CMFCRibbonBar::GetCaptionHeight", "AFXRIBBONBAR/CMFCRibbonBar::GetCategory", "AFXRIBBONBAR/CMFCRibbonBar::GetCategoryCount", "AFXRIBBONBAR/CMFCRibbonBar::GetCategoryHeight", "AFXRIBBONBAR/CMFCRibbonBar::GetCategoryIndex", "AFXRIBBONBAR/CMFCRibbonBar::GetContextName", "AFXRIBBONBAR/CMFCRibbonBar::GetDroppedDown", "AFXRIBBONBAR/CMFCRibbonBar::GetElementsByID", "AFXRIBBONBAR/CMFCRibbonBar::GetApplicationButton", "AFXRIBBONBAR/CMFCRibbonBar::GetFocused", "AFXRIBBONBAR/CMFCRibbonBar::GetHideFlags", "AFXRIBBONBAR/CMFCRibbonBar::GetItemIDsList", "AFXRIBBONBAR/CMFCRibbonBar::GetKeyboardNavigationLevel", "AFXRIBBONBAR/CMFCRibbonBar::GetKeyboardNavLevelCurrent", "AFXRIBBONBAR/CMFCRibbonBar::GetKeyboardNavLevelParent", "AFXRIBBONBAR/CMFCRibbonBar::GetMainCategory", "AFXRIBBONBAR/CMFCRibbonBar::GetQATCommandsLocation", "AFXRIBBONBAR/CMFCRibbonBar::GetQATDroppedDown", "AFXRIBBONBAR/CMFCRibbonBar::GetQuickAccessCommands", "AFXRIBBONBAR/CMFCRibbonBar::GetQuickAccessToolbarLocation", "AFXRIBBONBAR/CMFCRibbonBar::GetTabTrancateRatio", "AFXRIBBONBAR/CMFCRibbonBar::GetTooltipFixedWidthLargeImage", "AFXRIBBONBAR/CMFCRibbonBar::GetTooltipFixedWidthRegular", "AFXRIBBONBAR/CMFCRibbonBar::GetVisibleCategoryCount", "AFXRIBBONBAR/CMFCRibbonBar::HideAllContextCategories", "AFXRIBBONBAR/CMFCRibbonBar::HideKeyTips", "AFXRIBBONBAR/CMFCRibbonBar::HitTest", "AFXRIBBONBAR/CMFCRibbonBar::IsKeyTipEnabled", "AFXRIBBONBAR/CMFCRibbonBar::IsMainRibbonBar", "AFXRIBBONBAR/CMFCRibbonBar::IsPrintPreviewEnabled", "AFXRIBBONBAR/CMFCRibbonBar::IsQATEmpty", "AFXRIBBONBAR/CMFCRibbonBar::IsQuickAccessToolbarOnTop", "AFXRIBBONBAR/CMFCRibbonBar::IsReplaceFrameCaption", "AFXRIBBONBAR/CMFCRibbonBar::IsShowGroupBorder", "AFXRIBBONBAR/CMFCRibbonBar::IsToolTipDescrEnabled", "AFXRIBBONBAR/CMFCRibbonBar::IsToolTipEnabled", "AFXRIBBONBAR/CMFCRibbonBar::IsTransparentCaption", "AFXRIBBONBAR/CMFCRibbonBar::IsWindows7Look", "AFXRIBBONBAR/CMFCRibbonBar::LoadFromResource", "AFXRIBBONBAR/CMFCRibbonBar::OnClickButton", "AFXRIBBONBAR/CMFCRibbonBar::OnEditContextMenu", "AFXRIBBONBAR/CMFCRibbonBar::OnRTLChanged", "AFXRIBBONBAR/CMFCRibbonBar::OnSetAccData", "AFXRIBBONBAR/CMFCRibbonBar::OnShowRibbonContextMenu", "AFXRIBBONBAR/CMFCRibbonBar::OnShowRibbonQATMenu", "AFXRIBBONBAR/CMFCRibbonBar::OnSysKeyDown", "AFXRIBBONBAR/CMFCRibbonBar::OnSysKeyUp", "AFXRIBBONBAR/CMFCRibbonBar::PopTooltip", "AFXRIBBONBAR/CMFCRibbonBar::PreTranslateMessage", "AFXRIBBONBAR/CMFCRibbonBar::RecalcLayout", "AFXRIBBONBAR/CMFCRibbonBar::RemoveAllCategories", "AFXRIBBONBAR/CMFCRibbonBar::RemoveAllFromTabs", "AFXRIBBONBAR/CMFCRibbonBar::RemoveCategory", "AFXRIBBONBAR/CMFCRibbonBar::SaveToXMLBuffer", "AFXRIBBONBAR/CMFCRibbonBar::SaveToXMLFile", "AFXRIBBONBAR/CMFCRibbonBar::SetActiveCategory", "AFXRIBBONBAR/CMFCRibbonBar::SetActiveMDIChild", "AFXRIBBONBAR/CMFCRibbonBar::SetElementKeys", "AFXRIBBONBAR/CMFCRibbonBar::SetApplicationButton", "AFXRIBBONBAR/CMFCRibbonBar::SetKeyboardNavigationLevel", "AFXRIBBONBAR/CMFCRibbonBar::SetMaximizeMode", "AFXRIBBONBAR/CMFCRibbonBar::SetQuickAccessCommands", "AFXRIBBONBAR/CMFCRibbonBar::SetQuickAccessDefaultState", "AFXRIBBONBAR/CMFCRibbonBar::SetQuickAccessToolbarOnTop", "AFXRIBBONBAR/CMFCRibbonBar::SetTooltipFixedWidth", "AFXRIBBONBAR/CMFCRibbonBar::SetWindows7Look", "AFXRIBBONBAR/CMFCRibbonBar::ShowCategory", "AFXRIBBONBAR/CMFCRibbonBar::ShowContextCategories", "AFXRIBBONBAR/CMFCRibbonBar::ShowKeyTips", "AFXRIBBONBAR/CMFCRibbonBar::ToggleMimimizeState", "AFXRIBBONBAR/CMFCRibbonBar::TranslateChar"] helpviewer_keywords: ["CMFCRibbonBar [MFC], ActivateContextCategory", "CMFCRibbonBar [MFC], AddCategory", "CMFCRibbonBar [MFC], AddContextCategory", "CMFCRibbonBar [MFC], AddMainCategory", "CMFCRibbonBar [MFC], AddPrintPreviewCategory", "CMFCRibbonBar [MFC], AddQATOnlyCategory", "CMFCRibbonBar [MFC], AddToTabs", "CMFCRibbonBar [MFC], CreateEx", "CMFCRibbonBar [MFC], Create", "CMFCRibbonBar [MFC], DeactivateKeyboardFocus", "CMFCRibbonBar [MFC], DrawMenuImage", "CMFCRibbonBar [MFC], DWMCompositionChanged", "CMFCRibbonBar [MFC], EnableKeyTips", "CMFCRibbonBar [MFC], EnablePrintPreview", "CMFCRibbonBar [MFC], EnableToolTips", "CMFCRibbonBar [MFC], FindByData", "CMFCRibbonBar [MFC], FindByID", "CMFCRibbonBar [MFC], FindCategoryIndexByData", "CMFCRibbonBar [MFC], ForceRecalcLayout", "CMFCRibbonBar [MFC], GetActiveCategory", "CMFCRibbonBar [MFC], GetCaptionHeight", "CMFCRibbonBar [MFC], GetCategory", "CMFCRibbonBar [MFC], GetCategoryCount", "CMFCRibbonBar [MFC], GetCategoryHeight", "CMFCRibbonBar [MFC], GetCategoryIndex", "CMFCRibbonBar [MFC], GetContextName", "CMFCRibbonBar [MFC], GetDroppedDown", "CMFCRibbonBar [MFC], GetElementsByID", "CMFCRibbonBar [MFC], GetApplicationButton", "CMFCRibbonBar [MFC], GetFocused", "CMFCRibbonBar [MFC], GetHideFlags", "CMFCRibbonBar [MFC], GetItemIDsList", "CMFCRibbonBar [MFC], GetKeyboardNavigationLevel", "CMFCRibbonBar [MFC], GetKeyboardNavLevelCurrent", "CMFCRibbonBar [MFC], GetKeyboardNavLevelParent", "CMFCRibbonBar [MFC], GetMainCategory", "CMFCRibbonBar [MFC], GetQATCommandsLocation", "CMFCRibbonBar [MFC], GetQATDroppedDown", "CMFCRibbonBar [MFC], GetQuickAccessCommands", "CMFCRibbonBar [MFC], GetQuickAccessToolbarLocation", "CMFCRibbonBar [MFC], GetTabTrancateRatio", "CMFCRibbonBar [MFC], GetTooltipFixedWidthLargeImage", "CMFCRibbonBar [MFC], GetTooltipFixedWidthRegular", "CMFCRibbonBar [MFC], GetVisibleCategoryCount", "CMFCRibbonBar [MFC], HideAllContextCategories", "CMFCRibbonBar [MFC], HideKeyTips", "CMFCRibbonBar [MFC], HitTest", "CMFCRibbonBar [MFC], IsKeyTipEnabled", "CMFCRibbonBar [MFC], IsMainRibbonBar", "CMFCRibbonBar [MFC], IsPrintPreviewEnabled", "CMFCRibbonBar [MFC], IsQATEmpty", "CMFCRibbonBar [MFC], IsQuickAccessToolbarOnTop", "CMFCRibbonBar [MFC], IsReplaceFrameCaption", "CMFCRibbonBar [MFC], IsShowGroupBorder", "CMFCRibbonBar [MFC], IsToolTipDescrEnabled", "CMFCRibbonBar [MFC], IsToolTipEnabled", "CMFCRibbonBar [MFC], IsTransparentCaption", "CMFCRibbonBar [MFC], IsWindows7Look", "CMFCRibbonBar [MFC], LoadFromResource", "CMFCRibbonBar [MFC], OnClickButton", "CMFCRibbonBar [MFC], OnEditContextMenu", "CMFCRibbonBar [MFC], OnRTLChanged", "CMFCRibbonBar [MFC], OnSetAccData", "CMFCRibbonBar [MFC], OnShowRibbonContextMenu", "CMFCRibbonBar [MFC], OnShowRibbonQATMenu", "CMFCRibbonBar [MFC], OnSysKeyDown", "CMFCRibbonBar [MFC], OnSysKeyUp", "CMFCRibbonBar [MFC], PopTooltip", "CMFCRibbonBar [MFC], PreTranslateMessage", "CMFCRibbonBar [MFC], RecalcLayout", "CMFCRibbonBar [MFC], RemoveAllCategories", "CMFCRibbonBar [MFC], RemoveAllFromTabs", "CMFCRibbonBar [MFC], RemoveCategory", "CMFCRibbonBar [MFC], SaveToXMLBuffer", "CMFCRibbonBar [MFC], SaveToXMLFile", "CMFCRibbonBar [MFC], SetActiveCategory", "CMFCRibbonBar [MFC], SetActiveMDIChild", "CMFCRibbonBar [MFC], SetElementKeys", "CMFCRibbonBar [MFC], SetApplicationButton", "CMFCRibbonBar [MFC], SetKeyboardNavigationLevel", "CMFCRibbonBar [MFC], SetMaximizeMode", "CMFCRibbonBar [MFC], SetQuickAccessCommands", "CMFCRibbonBar [MFC], SetQuickAccessDefaultState", "CMFCRibbonBar [MFC], SetQuickAccessToolbarOnTop", "CMFCRibbonBar [MFC], SetTooltipFixedWidth", "CMFCRibbonBar [MFC], SetWindows7Look", "CMFCRibbonBar [MFC], ShowCategory", "CMFCRibbonBar [MFC], ShowContextCategories", "CMFCRibbonBar [MFC], ShowKeyTips", "CMFCRibbonBar [MFC], ToggleMimimizeState", "CMFCRibbonBar [MFC], TranslateChar"] -ms.assetid: a65d06fa-1a28-4cc0-8971-bc9d7c9198fe --- # `CMFCRibbonBar` Class @@ -119,7 +118,7 @@ class CMFCRibbonBar : public CPane |[`CMFCRibbonBar::ShowCategory`](#showcategory)|Shows or hides the specified ribbon category.| |[`CMFCRibbonBar::ShowContextCategories`](#showcontextcategories)|Shows or hides the context categories that have the specified ID.| |[`CMFCRibbonBar::ShowKeyTips`](#showkeytips)|| -|[`CMFCRibbonBar::ToggleMimimizeState`](#togglemimimizestate)|Toggles the ribbon bar between the minimized and maximized states..| +|[`CMFCRibbonBar::ToggleMimimizeState`](#togglemimimizestate)|Toggles the ribbon bar between the minimized and maximized states.| |[`CMFCRibbonBar::TranslateChar`](#translatechar)|| ## Remarks From 7f50092fad900e642d6856d810d45b06220b38f0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 16:46:39 +0800 Subject: [PATCH 034/981] Adjust `is_error_code_enum` syntax --- docs/standard-library/is-error-code-enum-class.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/standard-library/is-error-code-enum-class.md b/docs/standard-library/is-error-code-enum-class.md index 320d487d28..68b900c9dd 100644 --- a/docs/standard-library/is-error-code-enum-class.md +++ b/docs/standard-library/is-error-code-enum-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: is_error_code_enum Class" title: "is_error_code_enum Class" +description: "Learn more about: is_error_code_enum Class" ms.date: "11/04/2016" f1_keywords: ["system_error/std::is_error_code_enum"] helpviewer_keywords: ["is_error_code_enum class"] -ms.assetid: cee5be2d-7c20-4cec-a352-1ab8b7d32601 --- # is_error_code_enum Class @@ -13,8 +12,8 @@ Represents a type predicate that tests for the [error_code](../standard-library/ ## Syntax ```cpp -template <_Enum> - class is_error_code_enum; +template +struct is_error_code_enum; ``` ## Remarks From db3990a02ed41b3170dd8641318aedfddc4ed417 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 16:49:33 +0800 Subject: [PATCH 035/981] Adjust `is_error_condition_enum` syntax --- docs/standard-library/is-error-condition-enum-class.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/standard-library/is-error-condition-enum-class.md b/docs/standard-library/is-error-condition-enum-class.md index cf277036fe..f5599c93e1 100644 --- a/docs/standard-library/is-error-condition-enum-class.md +++ b/docs/standard-library/is-error-condition-enum-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: is_error_condition_enum Class" title: "is_error_condition_enum Class" +description: "Learn more about: is_error_condition_enum Class" ms.date: "11/04/2016" f1_keywords: ["system_error/std::is_error_condition_enum"] helpviewer_keywords: ["is_error_condition_enum class"] -ms.assetid: 752bb87a-c61c-4304-9254-5aaf228b59c0 --- # is_error_condition_enum Class @@ -13,8 +12,8 @@ Represents a type predicate that tests for the [error_condition](../standard-lib ## Syntax ```cpp -template <_Enum> - class is_error_condition_enum; +template +struct is_error_condition_enum; ``` ## Remarks From 421e86a36daaf423b672c703cdf934e2f90ada79 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 17:40:24 +0800 Subject: [PATCH 036/981] Improve `` functions page --- docs/standard-library/system-error-functions.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/standard-library/system-error-functions.md b/docs/standard-library/system-error-functions.md index af053fb4cb..cfb489fbea 100644 --- a/docs/standard-library/system-error-functions.md +++ b/docs/standard-library/system-error-functions.md @@ -22,16 +22,20 @@ The `generic_category` object is an implementation of [error_category](../standa ## is_error_code_enum_v +A helper variable template for the [`is_error_code_enum`](is-error-code-enum-class.md) value. + ```cpp template - inline constexpr bool is_error_code_enum_v = is_error_code_enum::value; +constexpr bool is_error_code_enum_v = is_error_code_enum::value; ``` ## is_error_condition_enum_v +A helper variable template for the [`is_error_condition_enum`](is-error-condition-enum-class.md) value. + ```cpp template - inline constexpr bool is_error_condition_enum_v = is_error_condition_enum::value; +constexpr bool is_error_condition_enum_v = is_error_condition_enum::value; ``` ## make_error_code @@ -64,7 +68,7 @@ error_condition make_error_condition(std::errc error) noexcept; ### Parameters *error*\ -The `std::errc` enumeration value to store in the error code object. +The `std::errc` enumeration value to store in the error condition object. ### Return Value @@ -74,7 +78,7 @@ The error condition object. ## system_category -Represents the category for errors caused by low-level system overflows. +Represents the category for operating system errors. ```cpp const error_category& system_category() noexcept; From a7968f27670b1943447a814c45490650c2fb595b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 17:42:59 +0800 Subject: [PATCH 037/981] Clean up `` functions page --- docs/standard-library/system-error-functions.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/standard-library/system-error-functions.md b/docs/standard-library/system-error-functions.md index cfb489fbea..6de6c2d6a2 100644 --- a/docs/standard-library/system-error-functions.md +++ b/docs/standard-library/system-error-functions.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: functions" title: " functions" +description: "Learn more about: functions" ms.date: "03/15/2019" f1_keywords: ["system_error/std::generic_category", "system_error/std::make_error_code", "system_error/std::make_error_condition", "system_error/std::system_category"] -ms.assetid: 57d6f15f-f0b7-4e2f-80fe-31d3c320ee33 helpviewer_keywords: ["std::generic_category", "std::make_error_code", "std::make_error_condition", "std::system_category"] --- # `` functions @@ -18,7 +17,7 @@ const error_category& generic_category() noexcept; ### Remarks -The `generic_category` object is an implementation of [error_category](../standard-library/error-category-class.md). +The `generic_category` object is an implementation of [error_category](error-category-class.md). ## is_error_code_enum_v @@ -55,8 +54,6 @@ The `std::errc` enumeration value to store in the error code object. The error code object. -### Remarks - ## make_error_condition Creates an error condition object. @@ -74,8 +71,6 @@ The `std::errc` enumeration value to store in the error condition object. The error condition object. -### Remarks - ## system_category Represents the category for operating system errors. @@ -86,4 +81,4 @@ const error_category& system_category() noexcept; ### Remarks -The `system_category` object is an implementation of [error_category](../standard-library/error-category-class.md). +The `system_category` object is an implementation of [error_category](error-category-class.md). From 2850e2e763e18218f4b31d3acc025f5754f9ef56 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 18:25:18 +0800 Subject: [PATCH 038/981] Fix more issues around backticks --- docs/cpp/bstr-t-assign.md | 4 ++-- docs/mfc/tn038-mfc-ole-iunknown-implementation.md | 5 ++--- docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md | 2 +- docs/standard-library/chrono-functions.md | 4 ++-- docs/standard-library/month-weekday-last-class.md | 4 ++-- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/cpp/bstr-t-assign.md b/docs/cpp/bstr-t-assign.md index 565b248630..801be55d0a 100644 --- a/docs/cpp/bstr-t-assign.md +++ b/docs/cpp/bstr-t-assign.md @@ -1,11 +1,11 @@ --- -description: "Learn more about: _bstr_t::Assign" title: "_bstr_t::Assign" +description: "Learn more about: _bstr_t::Assign" ms.date: 02/02/2021 f1_keywords: ["_bstr_t::Assign"] helpviewer_keywords: ["Assign method [C++]"] --- -# _`bstr_t::Assign` +# `_bstr_t::Assign` **Microsoft Specific** diff --git a/docs/mfc/tn038-mfc-ole-iunknown-implementation.md b/docs/mfc/tn038-mfc-ole-iunknown-implementation.md index a7e7375d13..f9dd6560fb 100644 --- a/docs/mfc/tn038-mfc-ole-iunknown-implementation.md +++ b/docs/mfc/tn038-mfc-ole-iunknown-implementation.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: TN038: MFC/OLE IUnknown Implementation" title: "TN038: MFC-OLE IUnknown Implementation" +description: "Learn more about: TN038: MFC/OLE IUnknown Implementation" ms.date: "06/28/2018" helpviewer_keywords: ["aggregation macros [MFC]", "COM interfaces, base interface", "IUnknown interface", "END_INTERFACE_MAP macro [MFC]", "TN038", "BEGIN_INTERFACE_PART macro [MFC]", "DECLARE_INTERFACE_MAP macro [MFC]", "BEGIN_INTERFACE_MAP macro [MFC]", "OLE [MFC], implementing IUnknown interface", "METHOD_PROLOGUE macro [MFC]", "STDMETHOD macro [MFC]", "END_INTERFACE_PART macro [MFC]", "INTERFACE_PART macro"] -ms.assetid: 19d946ba-beaf-4881-85c6-0b598d7f6f11 --- # TN038: MFC/OLE IUnknown Implementation @@ -518,7 +517,7 @@ END_INTERFACE_PART(MyAdviseSink) would define a local class called XMyAdviseSink derived from IAdviseSink, and a member of the class in which it is declared called m_xMyAdviseSink.Note: > [!NOTE] -> The lines beginning with `STDMETHOD`_ are essentially copied from OLE2.H and modified slightly. Copying them from OLE2.H can reduce errors that are hard to resolve. +> The lines beginning with `STDMETHOD_` are essentially copied from OLE2.H and modified slightly. Copying them from OLE2.H can reduce errors that are hard to resolve. ### BEGIN_INTERFACE_MAP and END_INTERFACE_MAP — Macro Descriptions diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index 3ae34b23c8..77712f958c 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -560,7 +560,7 @@ Select Standard Library (STL) improvements are highlighted here. For a comprehen - Added debugging visualizers to improve how the following types are displayed: `source_location`, `bind_front()`, `u8string` (and its iterators), `default_sentinel_t`, `unreachable_sentinel_t`, `ranges::empty_view`, `ranges::single_view`, `ranges::iota_view` (and its iterator/sentinel), `ranges::ref_view`, `thread`, `thread::id`, `jthread`, and `filesystem::path` - Added `[[nodiscard]]` to the `stoi()` family of functions in `` and to various functions in `` such as the `collate` member functions, `has_facet()`, and the `isalnum()` and `tolower()` families. - [P0980R1](https://wg21.link/P0980R1) Made `std::string` `constexpr` in VS 2019 16.10. Now supported for Clang. -- [P1004R2](https://wg21.link/P1004R2) Made `std::vector` `constexpr`in VS 2019 16.10. Now supported for Clang. +- [P1004R2](https://wg21.link/P1004R2) Made `std::vector` `constexpr` in VS 2019 16.10. Now supported for Clang. **Highlighted C++23 features** diff --git a/docs/standard-library/chrono-functions.md b/docs/standard-library/chrono-functions.md index 5f4e4a2587..49a164d193 100644 --- a/docs/standard-library/chrono-functions.md +++ b/docs/standard-library/chrono-functions.md @@ -563,7 +563,7 @@ int main() ### Remarks -**7)** If `%Z` is used and successfully parsed, that value will be assigned to `*abbrev `if `abbrev` is non-null. If `%z` (or a modified variant) is used and successfully parsed, that value will be assigned to `*offset` if `offset` is non-null. +**7)** If `%Z` is used and successfully parsed, that value will be assigned to `*abbrev` if `abbrev` is non-null. If `%z` (or a modified variant) is used and successfully parsed, that value will be assigned to `*offset` if `offset` is non-null. **12)** If `%Z` is used and successfully parsed, that value will be assigned to `*abbrev` if `abbrev` is non-null. If `%z` (or a modified variant) is used and successfully parsed, that value will be assigned to `*offset` if `offset` is non-null. @@ -987,4 +987,4 @@ Unless `ToDuration` is a specialization of [`duration`](../standard-library/dura [`chrono` operators](./chrono-operators.md)\ [`duration` class](./duration-class.md)\ [`time_point` class](./time-point-class.md)\ -[`time_zone` class](./time-zone-class.md) \ No newline at end of file +[`time_zone` class](./time-zone-class.md) diff --git a/docs/standard-library/month-weekday-last-class.md b/docs/standard-library/month-weekday-last-class.md index f217ddc754..34770527f7 100644 --- a/docs/standard-library/month-weekday-last-class.md +++ b/docs/standard-library/month-weekday-last-class.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: month_weekday_last Class" title: "month_weekday_last class" +description: "Learn more about: month_weekday_last Class" ms.date: "6/28/2021" f1_keywords: ["chrono/std::chrono::month_weekday_last", "chrono/std::chrono::month_weekday_last::ok", "std::chrono::month_weekday_last::month_weekday_last", "chrono/std::chrono::month_weekday_last::ok", "chrono/std::chrono::month_weekday_last::month"] helpviewer_keywords: ["std::chrono [C++], month_weekday_last"] @@ -59,7 +59,7 @@ constexpr month_weekday_last(const month& m, const weekday_last& wdl) noexcept; The `month` value for the created `month_weekday_last` class. *`wdl`*\ -The` weekday_last` value for the created `month_weekday_last` class. +The `weekday_last` value for the created `month_weekday_last` class. ## Remarks: Constructor From 45dc7c4ea5fd8cf8ee32292805b5e70316265c6d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 21:58:38 +0800 Subject: [PATCH 039/981] Clean up empty row in tables --- docs/dotnet/auto-gcroot-class.md | 3 +-- docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/dotnet/auto-gcroot-class.md b/docs/dotnet/auto-gcroot-class.md index 00b3976e16..fedee2dee8 100644 --- a/docs/dotnet/auto-gcroot-class.md +++ b/docs/dotnet/auto-gcroot-class.md @@ -30,8 +30,7 @@ The managed type to be embedded. |Name|Description| |---------|-----------| |[auto_gcroot::auto_gcroot](#auto-gcroot)|The `auto_gcroot` constructor.| -|[auto_gcroot::~auto_gcroot](#tilde-auto-gcroot)|The `auto_gcroot` destructor. -| +|[auto_gcroot::~auto_gcroot](#tilde-auto-gcroot)|The `auto_gcroot` destructor.| ### Public methods diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index 3ae34b23c8..bca6f4b9f0 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -25,8 +25,7 @@ Visual Studio 2022 brings many updates and fixes to the Microsoft C++ compiler a | What's new for C++ developers | [What's New for C++ Developers in Visual Studio 2022 17.13](https://devblogs.microsoft.com/cppblog/whats-new-for-c-developers-in-visual-studio-2022-17-13/) | | Standard Library (STL) merged C++26 and C++23 features, LWG issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.13](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1713) | | New features in the IDE |[Visual Studio 2022 version 17.13 Release Notes](/visualstudio/releases/2022/release-notes) | -| C++ language updates | [MSVC compiler updates in Visual Studio 2022 17.13](https://devblogs.microsoft.com/cppblog/msvc-compiler-updates-in-visual-studio-2022-version-17-13/) - | +| C++ language updates | [MSVC compiler updates in Visual Studio 2022 17.13](https://devblogs.microsoft.com/cppblog/msvc-compiler-updates-in-visual-studio-2022-version-17-13/) | | C++ language conformance improvements | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.13](cpp-conformance-improvements.md#improvements_1713) | A quick highlight of some of the new features: From 9c874a3a086a6c03d64710d26a6d4fc264c6701f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 14 Mar 2025 22:01:14 +0800 Subject: [PATCH 040/981] Minor updates for `auto_gcroot` class reference --- docs/dotnet/auto-gcroot-class.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/docs/dotnet/auto-gcroot-class.md b/docs/dotnet/auto-gcroot-class.md index fedee2dee8..073b6c06ab 100644 --- a/docs/dotnet/auto-gcroot-class.md +++ b/docs/dotnet/auto-gcroot-class.md @@ -1,11 +1,10 @@ --- -description: "Learn more about: auto_gcroot Class" title: "auto_gcroot Class" +description: "Learn more about: auto_gcroot Class" ms.date: "01/16/2019" ms.topic: "reference" f1_keywords: ["msclr::auto_gcroot::auto_gcroot", "msclr::auto_gcroot::attach", "msclr::auto_gcroot::get", "msclr::auto_gcroot::release", "msclr::auto_gcroot::reset", "msclr::auto_gcroot::swap", "msclr::auto_gcroot::operator=", "msclr::auto_gcroot::operator->", "msclr::auto_gcroot::operator!", "msclr::auto_gcroot::operator auto_gcroot"] helpviewer_keywords: ["msclr::auto_gcroot"] -ms.assetid: b5790912-265d-463e-a486-47302e91042a --- # auto_gcroot Class @@ -20,7 +19,7 @@ class auto_gcroot; ### Parameters -*_element_type*
+*_element_type*\ The managed type to be embedded. ## Members @@ -77,10 +76,10 @@ auto_gcroot( ### Parameters -*_ptr*
+*_ptr*\ The object to own. -*_right*
+*_right*\ An existing `auto_gcroot`. ### Remarks @@ -240,7 +239,7 @@ auto_gcroot<_element_type> & attach( ### Parameters -*_right*
+*_right*\ The object to attach, or an `auto_gcroot` containing the object to attach. ### Return value @@ -451,7 +450,7 @@ void reset( ### Parameters -*_new_ptr*
+*_new_ptr*\ (Optional) The new object. ### Example @@ -516,7 +515,7 @@ void swap( ### Parameters -*_right*
+*_right*\ The `auto_gcroot` with which to swap objects. ### Example @@ -614,7 +613,7 @@ auto_gcroot<_element_type> & operator=( ### Parameters -*_right*
+*_right*\ The object or `auto_gcroot` to be assigned to the current `auto_gcroot`. ### Return value From f66b67eb7212ea0f2ba214ca03aa137dfe442942 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 14 Mar 2025 14:06:53 -0700 Subject: [PATCH 041/981] date --- docs/build/how-to-debug-a-release-build.md | 2 +- docs/build/reference/dynamic-deopt-linker.md | 2 +- docs/build/reference/dynamic-deopt.md | 2 +- docs/build/reference/linker-options.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/how-to-debug-a-release-build.md b/docs/build/how-to-debug-a-release-build.md index 0dbd505fc5..3063cfc32b 100644 --- a/docs/build/how-to-debug-a-release-build.md +++ b/docs/build/how-to-debug-a-release-build.md @@ -1,7 +1,7 @@ --- description: "Learn more about: How to: Debug a Release Build" title: "How to: Debug a Release Build" -ms.date: 2/27/2025 +ms.date: 03/14/2025 helpviewer_keywords: ["debugging [C++], release builds", "release builds, debugging"] --- # How to: Debug a Release Build diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 0f6f6d5709..21ad9d8744 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,7 +1,7 @@ --- description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)" title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging) (Preview)" -ms.date: 3/11/2025 +ms.date: 03/14/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] --- diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index edf924acc7..3b1d44b766 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,7 +1,7 @@ --- title: "/dynamicdeopt (Enable C++ Dynamic Debugging (Preview))" description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." -ms.date: 3/11/2025 +ms.date: 03/14/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- diff --git a/docs/build/reference/linker-options.md b/docs/build/reference/linker-options.md index b78c835fdf..5749d0c236 100644 --- a/docs/build/reference/linker-options.md +++ b/docs/build/reference/linker-options.md @@ -1,7 +1,7 @@ --- title: "MSVC Linker options" description: "A list of the options supported by the Microsoft LINK linker." -ms.date: 3/11/2025 +ms.date: 03/14/2025 f1_keywords: ["link"] helpviewer_keywords: ["linker [C++]", "linker [C++], options listed", "libraries [C++], linking to COFF", "LINK tool [C++], linker options"] --- From d0aba4414d80849fa48220eaa48bb5aa7a5aa18c Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 14 Mar 2025 15:41:18 -0700 Subject: [PATCH 042/981] pr feedback --- docs/build/reference/dynamic-deopt-linker.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 21ad9d8744..21289559b7 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)" title: "/DYNAMICDEOPT (Support C++ Dynamic Debugging) (Preview)" +description: "Learn more about: /DYNAMICDEOPT (Support C++ Dynamic Debugging)." ms.date: 03/14/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] @@ -32,14 +32,14 @@ Builds the deoptimized output after building the optimized output instead of in This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects. -### To set this linker option in the Visual Studio development environment +### Set this linker option in the Visual Studio development environment 1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md). 1. Select the **Linker** > **Debugging** property page. -### To set this linker option programmatically +### Set this linker option programmatically -1. See . +- See . ## See also From a59d3ff01d2cb5f54adc738415aadb2027d8f5c0 Mon Sep 17 00:00:00 2001 From: Phil Christensen Date: Fri, 14 Mar 2025 16:45:14 -0700 Subject: [PATCH 043/981] Learn Editor: Update string-and-character-literals-cpp.md --- docs/cpp/string-and-character-literals-cpp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cpp/string-and-character-literals-cpp.md b/docs/cpp/string-and-character-literals-cpp.md index 70addb2b9b..ffc4f939dc 100644 --- a/docs/cpp/string-and-character-literals-cpp.md +++ b/docs/cpp/string-and-character-literals-cpp.md @@ -331,7 +331,7 @@ const size_t byteSize = (wcslen(str) + 1) * sizeof(wchar_t); Notice that `strlen()` and `wcslen()` don't include the size of the terminating null character, whose size is equal to the element size of the string type: one byte on a `char*` or `char8_t*` string, two bytes on `wchar_t*` or `char16_t*` strings, and four bytes on `char32_t*` strings. -In versions of Visual Studio before Visual Studio 2022 version 17.0, the maximum length of a string literal is 65,535 bytes. This limit applies to both narrow string literals and wide string literals. In Visual Studio 2022 version 17.0 and later, this restriction is lifted and string length is limited by available resources. +In versions of Visual Studio before Visual Studio 2022 version 17.0, the maximum length of a string literal is 65,535 bytes after string concatenation. This limit applies to both narrow string literals and wide string literals. In Visual Studio 2022 version 17.0 and later, the length restriction after string concatenation is lifted, and is limited by available resources. The size limit before string concatenation remains at 16,384 bytes. ### Modifying string literals From e2848e1119d47acd7e01de5105cb77ca833bcb0f Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Fri, 14 Mar 2025 16:54:56 -0700 Subject: [PATCH 044/981] Refresh articles --- docs/build/cmake-projects-in-visual-studio.md | 125 ++++++++------- docs/build/media/cmake-build-errors.png | Bin 29212 -> 26094 bytes docs/build/media/cmake-cmakelists-error.png | Bin 35282 -> 30931 bytes docs/build/media/cmake-cmakelists.png | Bin 9670 -> 9294 bytes docs/build/media/cmake-install-2022.png | Bin 0 -> 16274 bytes docs/build/media/cmake-targets-view2.png | Bin 13659 -> 7627 bytes docs/build/vscpp-step-0-installation.md | 149 ++++++++---------- 7 files changed, 132 insertions(+), 142 deletions(-) create mode 100644 docs/build/media/cmake-install-2022.png diff --git a/docs/build/cmake-projects-in-visual-studio.md b/docs/build/cmake-projects-in-visual-studio.md index 98b7d5d177..e6e2682956 100644 --- a/docs/build/cmake-projects-in-visual-studio.md +++ b/docs/build/cmake-projects-in-visual-studio.md @@ -1,7 +1,8 @@ --- title: "CMake projects in Visual Studio" -description: "How to create and build C++ projects using CMake in Visual Studio." -ms.date: 02/14/2022 +description: "Learn how to create and build C++ projects using CMake in Visual Studio." +ms.date: 03/14/2025 +ms.topic: concept-article f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake.LanguageServices"] --- # CMake projects in Visual Studio @@ -9,17 +10,17 @@ f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake. [CMake](https://cmake.org) is a cross-platform, open-source tool for defining build processes that run on multiple platforms. This article assumes you're familiar with CMake. For more information about CMake, see the [CMake documentation](https://cmake.org/cmake/help/latest/index.html#). The [CMake tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/index.html#guide:CMake%20Tutorial) is a good starting point to learn more. > [!NOTE] -> CMake has become more and more integrated with Visual Studio over the past few releases. To see the documentation for your preferred version of Visual Studio, use the **Version** selector control. It's found at the top of the table of contents on this page. +> CMake has become more and more integrated with Visual Studio over the past few releases. To see the documentation for your preferred version of Visual Studio, use the **Version** selector located at the top of the table of contents on this page. ::: moniker range=">=msvc-160" -Visual Studio's native support for CMake enables you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *`CMakeLists.txt`*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. `cmake.exe` is invoked directly by Visual Studio for CMake configuration and build. +Visual Studio's native support for CMake allows you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *`CMakeLists.txt`*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. Visual Studio invokes `cmake.exe` directly for CMake configuration and build. ## Installation **C++ CMake tools for Windows** is installed as part of the **Desktop development with C++** and **Linux Development with C++** workloads. Both **C++ CMake tools for Windows** and **Linux Development with C++** are required for cross-platform CMake development. -:::image type="complex" source="media/cmake-install-2019.png" alt-text="Screenshot of the Visual Studio installer."::: +:::image type="complex" source="media/cmake-install-2022.png" alt-text="Screenshot of the Visual Studio installer."::: In the installer, the Desktop development with C plus plus dropdown is selected and C plus plus C Make tools for Windows is selected." :::image-end::: @@ -42,7 +43,7 @@ The dialog offers these options: clone a repository, open a project or solution, - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. > [!NOTE] -> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level `CMakeLists.txt` exists in a subfolder and not at the root of the workspace, you'll be prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). +> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level `CMakeLists.txt` exists in a subfolder and not at the root of the workspace, you're prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). Once CMake cache generation has succeeded, you can also view your projects organized logically by targets. Choose the **Select View** button on the **Solution Explorer** toolbar. From the list in **Solution Explorer - Views**, select **CMake Targets View** and press **Enter** to open the targets view: @@ -64,18 +65,18 @@ Most Visual Studio and C++ language features are supported by CMake projects in - [Clang/LLVM support](https://devblogs.microsoft.com/cppblog/clang-llvm-support-in-visual-studio/) > [!NOTE] -> For other kinds of Open Folder projects, an additional JSON file *`CppProperties.json`* is used. This file is not relevant for CMake projects. +> For other kinds of Open Folder projects, an additional JSON file *`CppProperties.json`* is used. This file isn't relevant for CMake projects. ## Configuring CMake projects The CMake configure step generates the project build system. It's equivalent to invoking `cmake.exe` from the command line. For more information on the CMake configure step, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem). -Visual Studio uses a CMake configuration file to drive CMake generation and build. *`CMakePresets.json`* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *`CMakePresets.json`* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a Continuous Integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *`CMakePresets.json`*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *`CMakeSettings.json`* is available for customers using an earlier version of Visual Studio. For more information on *`CMakeSettings.json`*, see [Customize CMake build settings](customize-cmake-settings.md). +Visual Studio uses a CMake configuration file to drive CMake generation and build. *`CMakePresets.json`* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *`CMakePresets.json`* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a continuous integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *`CMakePresets.json`*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *`CMakeSettings.json`* is available for customers using an earlier version of Visual Studio. For more information on *`CMakeSettings.json`*, see [Customize CMake build settings](customize-cmake-settings.md). -When you make significant changes to your CMake configuration file or a *`CMakeLists.txt`* file, Visual Studio will automatically run the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. +When you make significant changes to your CMake configuration file or a *`CMakeLists.txt`* file, Visual Studio automatically runs the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. -:::image type="complex" source="media/cmake-configure-options.png" alt-text="Screenshot of the CMake configuration options in the Visual Studio settings window."::: -The CMake configure settings are called out. Show C Make cache notifications is selected. Under 'When cache is out of date:', the option 'Never run configure step automatically' is selected. +:::image type="complex" source="media/cmake-configure-options.png" alt-text="Screenshot of the C Make configuration options in the Visual Studio settings window."::: +The C Make configure settings are called out. Show C Make cache notifications is selected. Under 'When cache is out of date', the option 'Never run configure step automatically' is selected. :::image-end::: If the configure step finishes without errors, then the information that's available drives C++ IntelliSense and language services. It's also used in build and debug operations. @@ -90,9 +91,9 @@ You can also disable all CMake cache notifications (gold bars) by deselecting ** ### Customize Targets View source groups -By default, the CMake Targets View ignores the following source groups: "Source Files", "Header Files", "Resources", "Object Files". This is because they are included by default in most CMake projects and it would unnecessarily increase the number of clicks required to navigate the Targets View. +By default, the CMake Targets View ignores the following source groups: *Source Files*, *Header Files*, *Resources*, *Object Files*. These groups are included by default in most CMake projects and would unnecessarily increase the number of clicks required to navigate the Targets View. -Enable the use of these source groups by enabling **Tools** > **Options** > **CMake** > **Enable the use of ignored source groups in CMake Targets View**. +You can enable the use of these source groups by selecting **Tools** > **Options** > **CMake** > **Enable the use of ignored source groups in CMake Targets View**. ### Troubleshooting CMake cache errors @@ -118,8 +119,8 @@ To build a CMake project, you have these choices: As you would expect, build results are shown in the **Output Window** and **Error List**. -:::image type="content" source="media/cmake-build-errors.png" alt-text="Screenshot of the Visual Studio Error List window"::: -CMake build warnings about conversions that may result in data loss such as converting from a float to an integer, are visible. +:::image type="complex" source="media/cmake-build-errors.png" alt-text="Screenshot of the Visual Studio Error List window"::: +C Make build warnings about conversions that might result in data loss such as converting from a float to an integer, are visible. :::image-end::: ### Edit build settings @@ -128,7 +129,7 @@ Visual Studio uses a CMake configuration file to drive CMake builds. CMake confi ## Debugging CMake projects -All executable CMake targets are shown in the **Startup Item** dropdown in the toolbar. To start debugging, select one and press the **Debug > Start Debugging** button in the toolbar. In a CMake project, the "Current document" option is only valid for .cpp files. +All executable CMake targets are shown in the **Startup Item** dropdown in the toolbar. To start debugging, select one and press the **Debug > Start Debugging** button in the toolbar. In a CMake project, the **Current document** option is only valid for .cpp files. :::image type="complex" source="media/debug-target.png" alt-text="Screenshot of the Visual Studio debug dropdown."::: The dropdown has these options: Show / Hide debug targets, current document, samples (which is highlighted), box2d_tests, and samples-noGUI. @@ -136,7 +137,7 @@ The dropdown has these options: Show / Hide debug targets, current document, sam The **Debug** or **F5** commands first build the project if changes have been made since the previous build. Changes to the CMake configuration file (*`CMakePresets.json`* or *`CMakeSettings.json`*) or a *`CMakeLists.txt`* causes the CMake cache to be regenerated. -You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and press **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). +You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and choose **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). ### Just My Code for CMake projects @@ -144,7 +145,7 @@ When you build for Windows using the MSVC compiler, CMake projects have support ### Edit and Continue for CMake projects -When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *`CMakeLists.txt`* file to enable Edit and Continue. For more information on Edit and Continue, see [Configure Edit and Continue (C#, VB, C++)](/visualstudio/debugger/how-to-enable-and-disable-edit-and-continue). +When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *`CMakeLists.txt`* file to enable Edit and Continue. ``` if(MSVC) @@ -153,6 +154,8 @@ if(MSVC) endif() ``` +For more information on Edit and Continue, see [Configure Edit and Continue (C#, VB, C++)](/visualstudio/debugger/how-to-enable-and-disable-edit-and-continue). + ### Attach to a CMake project running on Linux Visual Studio allows you to debug a process running on a remote Linux system or WSL and debug it with the GDB debugger. To get started, select **Debug** > **Attach to Process...**, set the **Connection type** to **SSH**, and select your **Connection target** from the list of connections in the Connection Manager. Select a process from the list of available processes and press **Attach**. GDB must be installed on your Linux machine. For more information on SSH connections, see the [Connection Manager](../linux/connect-to-your-remote-linux-computer.md) @@ -163,14 +166,14 @@ The following options are available on the dialog: Connection type (set to SSH), ## CMake partial activation -In Visual Studio 2022 version 17.1 and later, CMake functionality won't be enabled automatically if your root folder doesn't contain a `CMakeLists.txt` file. Instead, a dialog will prompt you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation won't start and CMake configurations (from `CMakeSettings.json` or `CMakePresets.json`) won't appear in the configuration dropdown. If you accept, you'll be taken to a workspace-level configuration file, `CMakeWorkspaceSettings.json` (stored in the `.vs` directory), to specify the folders you'd like to enable CMake for. (These folders contain your root `CMakeLists.txt` files). +In Visual Studio 2022 version 17.1 and later, CMake functionality isn't enabled automatically if your root folder doesn't contain a `CMakeLists.txt` file. Instead, a dialog prompts you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation doesn't start and CMake configurations (from `CMakeSettings.json` or `CMakePresets.json`) doesn't appear in the configuration dropdown. If you accept, you're taken to a workspace-level configuration file, `CMakeWorkspaceSettings.json` (stored in the `.vs` directory), to specify the folders you'd like to enable CMake for. (These folders contain your root `CMakeLists.txt` files). The accepted properties are: | Property | Description | |--|--| | `enableCMake` | Enable Visual Studio's integration for this workspace. | -| `sourceDirectory` | A string or array of strings specifying the directory or directories with `CMakeLists.txt`. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace will be ignored. | +| `sourceDirectory` | A string or array of strings specifying the directory or directories with `CMakeLists.txt`. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace are ignored. | You can reach `CMakeWorkspaceSettings.json` through the **Project** > **CMake Workspace Settings** menu command at any time, even if CMake functionality is currently disabled. @@ -199,11 +202,11 @@ Before generating the CMake cache, your custom or preferred tools might need to When your custom or preferred tools generate your cache, CMake places files under *`.cmake/api/v1/response`* that Visual Studio uses to populate the editor with information specific to your project structure. -## Editing *`CMakeLists.txt`* files +## Editing *CMakeLists.txt* files To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). -:::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists .txt file being edited in Visual Studio." +:::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists TXT file being edited in Visual Studio." It contains the lines project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: @@ -215,7 +218,7 @@ A C Make error message on line 3 of CMakeLists.txt is highlighted. The details a ### Language services for CMake -Language services for CMake are available in Visual Studio 2019 version 16.5 or later. It supports code navigation features like Go To Definition, Peek Definition, and Find All References for CMake variables, functions, and targets in CMake script files. For more information, see [Code Navigation for CMake Scripts](https://devblogs.microsoft.com/cppblog/code-navigation-for-cmake-scripts/). +Language services for CMake are available in Visual Studio 2019 version 16.5 or later. Language services support code navigation features like *Go To Definition*, *Peek Definition*, and *Find All References* for CMake variables, functions, and targets in CMake script files. For more information, see [Code Navigation for CMake Scripts](https://devblogs.microsoft.com/cppblog/code-navigation-for-cmake-scripts/). :::image type="complex" source="media/cmake-find-all-refs.png" alt-text="Screenshot of the Visual Studio Find All References window."::: Results of where SUPERTUX_SOURCES_CXX are found are shown. For example, in list(SORT SSUPERTUX_SOURCES_CXX), file(GLOB SUPERTUX_SOURCES_CXX) and so on. @@ -223,10 +226,10 @@ Results of where SUPERTUX_SOURCES_CXX are found are shown. For example, in list( ### CMake project manipulation -CMake project manipulation is available in Visual Studio 2019 version 16.5 or later. Project manipulation enables you to add, remove, and rename source files and targets in your CMake project without manually editing your CMake scripts. When you add or remove files from the Solution Explorer, Visual Studio automatically edits your CMake project. There could be more than one place where it makes sense to add or remove a reference to a CMake script. If so, Visual Studio asks you where you want to make the change and displays a preview of the proposed changes. For step-by-step instructions, see [Add, Remove, and Rename Files and Targets in CMake Projects](https://devblogs.microsoft.com/cppblog/easily-add-remove-and-rename-files-and-targets-in-cmake-projects/). +CMake project manipulation is available in Visual Studio 2019 version 16.5 or later. Project manipulation lets you add, remove, and rename source files and targets in your CMake project without manually editing your CMake scripts. When you add or remove files from the Solution Explorer, Visual Studio automatically edits your CMake project. There could be more than one place where it makes sense to add or remove a reference to a CMake script. If so, Visual Studio asks you where you want to make the change and displays a preview of the proposed changes. For step-by-step instructions, see [Add, Remove, and Rename Files and Targets in CMake Projects](https://devblogs.microsoft.com/cppblog/easily-add-remove-and-rename-files-and-targets-in-cmake-projects/). :::image type="complex" source="media/cmake-project-manipulation.png" alt-text="Screenshot of the Visual Studio Preview Changes dialog box."::: -A tree view shows CMakeLists.txt, under which are two items: add_executable and set. Set is checked. The preview window shows where changes will be made. The line set (PROJECT_SRC "CmakeProject4.cpp" "CMakeProject4.h" shows "Demo.cpp" highlighted before the closing parenthesis. The apply button accepts the change, or you can press cancel. +A tree view shows CMakeLists.txt, under which are two items: add_executable and set. Set is checked. The preview window shows where changes will be made. The line set PROJECT_SRC "CmakeProject4.cpp" "CMakeProject4.h" shows "Demo.cpp" highlighted before the closing parenthesis. The apply button accepts the change, or you can press cancel. :::image-end::: ## IntelliSense for CMake projects @@ -250,15 +253,15 @@ CMake projects opened in Visual Studio integrate with vcpkg, a cross-platform C/ If *`CMakeSettings.json`* is your active configuration file, Visual Studio automatically passes the vcpkg toolchain file (`vcpkg.cmake`) to CMake. This behavior is disabled automatically when you specify any other toolchain in your CMake Settings configuration. -If *`CMakePresets.json`* is your active configuration file, you'll need to set the path to `vcpkg.cmake` in *`CMakePresets.json`*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +If *`CMakePresets.json`* is your active configuration file, you need to set the path to `vcpkg.cmake` in *`CMakePresets.json`*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. ## Run CMake from the command line If *`CMakePresets.json`* is your active CMake configuration file, then you can easily reproduce your local builds outside of Visual Studio. For more information, see [Run CMake from the command line or a CI pipeline](cmake-presets-vs.md#run-cmake-from-the-command-line-or-a-ci-pipeline). *`CMakePresets.json`* is supported in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. -If *`CMakeSettings.json`* is your active CMake configuration file, then you'll need to manually pass the arguments that are encoded in your *`CMakeSettings.json`* file to CMake. If you have installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: +If *`CMakeSettings.json`* is your active CMake configuration file, then you need to manually pass the arguments that are encoded in your *`CMakeSettings.json`* file to CMake. If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: -1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Building on the command line](building-on-the-command-line.md) . +1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Use the Microsoft C++ toolset from the command line](building-on-the-command-line.md) . 1. Switch to your output folder. @@ -274,7 +277,7 @@ Visual Studio 2017 has rich support for CMake, including [cross-platform CMake p **Visual C++ Tools for CMake** is installed as part of the **Desktop development with C++** and **Linux Development with C++** workloads. -:::image type="content" source="media/cmake-install.png" alt-text="Screenshot of the Visual Studio Installer. The Individual components tab is selected on which Visual C plus plus tools for CMake is selected."::: +:::image type="content" source="media/cmake-install.png" alt-text="Screenshot of the Visual Studio Installer. The Individual components tab is selected on which Visual C plus plus tools for C Make is selected."::: For more information, see [Install the C++ Linux workload in Visual Studio](../linux/download-install-and-setup-the-linux-development-workload.md). @@ -290,17 +293,17 @@ When you choose **File > Open > Folder** to open a folder containing a *`CMakeLi - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. -You can open folders containing any number of CMake projects. Visual Studio detects and configures all the "root" *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. +You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. :::image type="complex" source="media/cmake-multiple-roots.png" alt-text="Screenshot of the Visual Studio Solution Explorer."::: -The files and folders of a CMake project are visible. There's a tests subdirectory, CMakeLists.txt, and hello.cpp. There's a hello-cmake-vcpkg folder that contains CMakeLists.txt, CMakeSettings.json, and hello.cpp. +The files and folders of a C Make project are visible. There's a tests subdirectory, CMakeLists.txt, and hello.cpp. There's a hello-cmake-vcpkg folder that contains CMakeLists.txt, CMakeSettings.json, and hello.cpp. :::image-end::: You can also view your projects organized logically by targets. Choose **Targets view** from the dropdown in the **Solution Explorer** toolbar: :::image type="content" source="media/cmake-targets-view.png" alt-text="Screenshot of the dropdown button in the Visual Studio Solution Explorer that offers the CMake targets view option. Which is selected."::: -Visual Studio uses a file called *`CMakeSettings.json`* to store environment variables or command-line options for CMake. *`CMakeSettings.json`* also enables you to define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. +Visual Studio uses a file called *`CMakeSettings.json`* to store environment variables or command-line options for CMake. *`CMakeSettings.json`* also lets you define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. Otherwise, use the *`CMakeLists.txt`* just as you would in any CMake project to specify source files, find libraries, set compiler and linker options, and specify other build system-related information. @@ -311,7 +314,7 @@ If you need to pass arguments to an executable at debug time, you can use anothe ## Import an existing cache -When you import an existing *`CMakeCache.txt`* file, Visual Studio automatically extracts customized variables and creates a pre-populated *`CMakeSettings.json`* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *`CMakeSettings.json`* file is placed alongside the project's root *`CMakeLists.txt`*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. +When you import an existing *`CMakeCache.txt`* file, Visual Studio automatically extracts customized variables and creates a prepopulated *`CMakeSettings.json`* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *`CMakeSettings.json`* file is placed alongside the project's root *`CMakeLists.txt`*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. Not everything in the cache is imported. Properties such as the generator and the location of the compilers are replaced with defaults that are known to work well with the IDE. @@ -319,13 +322,13 @@ Not everything in the cache is imported. Properties such as the generator and th 1. From the main menu, choose **File > Open > CMake**: - :::image type="content" source="media/cmake-file-open.png" alt-text="Screenshot of the Visual Studio main menu. File > Open > C Make is selected."::: + :::image type="content" source="media/cmake-file-open.png" alt-text="Screenshot of the Visual Studio main menu with C Make selected."::: This command brings up the **Import CMake from Cache** wizard. 2. Navigate to the *`CMakeCache.txt`* file that you want to import, and then choose **OK**. The **Import CMake Project from Cache** wizard appears: - :::image type="content" source="media/cmake-import-wizard.png" alt-text="Screenshot of the Import CMake Project from Cache wizard. The directory path of the CMake project to import goes in the `folder` textbox."::: + :::image type="content" source="media/cmake-import-wizard.png" alt-text="Screenshot of the Import C Make Project from Cache wizard. The directory path of the C Make project to import goes in the folder textbox."::: When the wizard completes, you can see the new *`CMakeCache.txt`* file in **Solution Explorer** next to the root *`CMakeLists.txt`* file in your project. @@ -333,22 +336,22 @@ Not everything in the cache is imported. Properties such as the generator and th To build a CMake project, you have these choices: -1. In the General toolbar, find the **Configurations** dropdown. It's probably showing "Linux-Debug" or "x64-Debug" by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. +1. In the General toolbar, find the **Configurations** dropdown. It's probably showing *Linux-Debug* or *x64-Debug* by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. 1. Right-click on *`CMakeLists.txt`* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. 1. From the main menu, select **Build > Build Solution** (**F7** or **Ctrl+Shift+B**). Make sure that a CMake target is already selected in the **Startup Item** dropdown in the **General** toolbar. -:::image type="complex" source="media/cmake-build-menu.png" alt-text="Screenshot of the Visual Studio Solution Explorer after right-clicking CMakeLists.txt."::: +:::image type="complex" source="media/cmake-build-menu.png" alt-text="Screenshot of the Visual Studio Solution Explorer after right-clicking C Make Lists."::: The menu has options such as Add, Open, Configure tasks, Build, Clean all, and so on. :::image-end::: -You can customize build configurations, environment variables, command-line arguments, and other settings in the *`CMakeSettings.json`* file. It lets you make changes without modifying the *`CMakeLists.txt`* file. For more information, see [Customize CMake settings](customize-cmake-settings.md). +You can customize build configurations, environment variables, command-line arguments, and other settings in the *`CMakeSettings.json`* file. It lets you make changes without modifying the *`CMakeLists.txt`* file. For more information, see [Customize CMake build settings](customize-cmake-settings.md). As you would expect, build results are shown in the **Output Window** and **Error List**. :::image type="complex" source="media/cmake-build-errors.png" alt-text="Screenshot of the Visual Studio Error List window."::: -CMake build warnings about conversions that may result in data loss such as converting from a float to an integer are visible. +C Make build warnings about conversions that might result in data loss such as converting from a float to an integer are visible. :::image-end::: In a folder with multiple build targets, you can specify which CMake target to build: Choose the **Build** item on the **CMake** menu or the *`CMakeLists.txt`* context menu to specify the target. If you enter **Ctrl+Shift+B** in a CMake project, it builds the current active document. @@ -357,7 +360,7 @@ In a folder with multiple build targets, you can specify which CMake target to b To debug a CMake project, choose the preferred configuration and press **F5**. Or, press the **Run** button in the toolbar. If the **Run** button says "Select Startup Item", select the dropdown arrow and choose the target that you want to run. (In a CMake project, the "Current document" option is only valid for .cpp files.) -:::image type="content" source="media/cmake-run-button.png" alt-text="Screenshot of the Select Startup Item dropdown for a CMake project. You can select current document or hello-cmake.exe"::: +:::image type="content" source="media/cmake-run-button.png" alt-text="Screenshot of the Select Startup Item dropdown for a C Make project. You can select current document or hello-cmake."::: The **Run** or **F5** commands first build the project if changes have been made since the previous build. @@ -367,8 +370,8 @@ You can customize a CMake debugging session by setting properties in the *`launc To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). - :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists .txt file being edited in Visual Studio."::: - The file contains: project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. + :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists file being edited in Visual Studio."::: + The file contains project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *`CMakeLists.txt`*. @@ -379,12 +382,12 @@ As soon as you save the file, the configuration step automatically runs again an ## CMake configure step -When significant changes are made to the *`CMakeSettings.json`* or to *`CMakeLists.txt`* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. +When significant changes are made to the *`CMakeSettings.json`* or to *`CMakeLists.txt`* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. -Multiple CMake projects might use the same CMake configuration name (for example, x86-Debug). All of them are configured and built (in their own build root folder) when that configuration is selected. You can debug the targets from all of the CMake projects that participate in that CMake configuration. +Multiple CMake projects might use the same CMake configuration name (for example, *x86-Debug*). All of them are configured and built (in their own build root folder) when that configuration is selected. You can debug the targets from all of the CMake projects that participate in that CMake configuration. - :::image type="complex" source="media/cmake-build-only.png" alt-text="Screenshot of Visual Studio's main menu, open to CMake > Build Only."::: - The context menu shows what can be built--in this case hello-cmake-a \ hello-cmake.exe (Project hello-cmake) and hello-cmake-b\hello-cmake.exe (Project hello-cmake). The latter is highlighted. + :::image type="complex" source="media/cmake-build-only.png" alt-text="Screenshot of Visual Studio's main menu, open to C Make Build Only."::: + The context menu shows what can be built. In this case hello-cmake-a \ hello-cmake.exe (Project hello-cmake) and hello-cmake-b\hello-cmake.exe (Project hello-cmake). The latter is highlighted. :::image-end::: You can limit builds and debug sessions to a subset of the projects in the workspace. Create a new configuration with a unique name in the *`CMakeSettings.json`* file. Then, apply the configuration to those projects only. When that configuration is selected, IntelliSense and the build and debug commands only apply to those specified projects. @@ -393,7 +396,7 @@ You can limit builds and debug sessions to a subset of the projects in the works If you need more information about the state of the CMake cache to diagnose a problem, open the **CMake** main menu or the *`CMakeLists.txt`* context menu in **Solution Explorer** to run one of these commands: -- **View Cache** opens the *`CMakeCache.txt`* file from the build root folder in the editor. (Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md).) +- **View Cache** opens the *`CMakeCache.txt`* file from the build root folder in the editor. Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md). - **Open Cache Folder** opens an Explorer window to the build root folder. @@ -407,11 +410,11 @@ Automatic cache generation can be disabled in the **Tools > Options > CMake > Ge To build a single file in a CMake project, right-click on the file in **Solution Explorer**. Choose **Compile** from the pop-up menu. You can also build the currently open file in the editor by using the main **CMake** menu: -:::image type="content" source="media/cmake-single-file-compile.png" alt-text="Screenshot of the CMake > Compile context menu. It contains one entry: Bullet3Collision."::: +:::image type="content" source="media/cmake-single-file-compile.png" alt-text="Screenshot of the C Make Compile context menu. It contains one entry, Bullet 3 Collision."::: ## Run CMake from the command line -If you have installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: +If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: 1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Building on the Command Line](building-on-the-command-line.md). @@ -427,15 +430,15 @@ In Visual Studio 2015, Visual Studio users can use a [CMake generator](https://c ::: moniker-end -## See also - -[Tutorial: Create C++ cross-platform projects in Visual Studio](get-started-linux-cmake.md)\ -[Configure a Linux CMake project](../linux/cmake-linux-project.md)\ -[Connect to your remote Linux computer](../linux/connect-to-your-remote-linux-computer.md)\ -[Customize CMake build settings](customize-cmake-settings.md)\ -[`CMakeSettings.json` schema reference](cmakesettings-reference.md)\ -[Configure CMake debugging sessions](configure-cmake-debugging-sessions.md)\ -[Deploy, run, and debug your Linux project](../linux/deploy-run-and-debug-your-linux-project.md)\ -[CMake predefined configuration reference](cmake-predefined-configuration-reference.md)\ -[vcpkg in CMake projects](/vcpkg/users/buildsystems/cmake-integration)\ -[Install and use packages with CMake in Visual Studio](/vcpkg/get_started/get-started-vs) +## Related content + +- [Tutorial: Create C++ cross-platform projects in Visual Studio](get-started-linux-cmake.md) +- [Configure a Linux CMake project](../linux/cmake-linux-project.md) +- [Connect to your remote Linux computer](../linux/connect-to-your-remote-linux-computer.md) +- [Customize CMake build settings](customize-cmake-settings.md) +- [*CMakeSettings.json* schema reference](cmakesettings-reference.md) +- [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md) +- [Deploy, run, and debug your Linux project](../linux/deploy-run-and-debug-your-linux-project.md) +- [CMake predefined configuration reference](cmake-predefined-configuration-reference.md) +- [vcpkg in CMake projects](/vcpkg/users/buildsystems/cmake-integration) +- [Install and use packages with CMake in Visual Studio](/vcpkg/get_started/get-started-vs) diff --git a/docs/build/media/cmake-build-errors.png b/docs/build/media/cmake-build-errors.png index 089db013a3aebc319e26f1c4e3f4c162ee8e0092..80127fdebdbdfbf4aaff339926357f3215f01b2e 100644 GIT binary patch literal 26094 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 BkxBpn literal 29212 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ÐRzmPrQ!E z7E8H)Wyb;$9Ng%eh+jPtMV@E?_igN=9nE7SL+oy+HQSF-y7H33GX5TN9C_qgtg3nfvTn9u@~o+G`oCF@5h8)lR0mEw+qqY|^ps5=Q{O*ynA@ysG}_-U+8r*| zWM1V#T_o4TUZHg%6=CK}rv`R}NkzHZdV4)YEijzA^Xu)OP1L3lmvDmc;eC^EY(>pF z#!U=8y*j=MNse#c`%`1f1017j@h<)B>`!c%n3yh`yBIti3zn9~9}IF$>z2Ada)M>G z#^RYp^ag^qXp(}?m5G`B@yjlKcrIF*r_0wa0H|TtC9ArMWCr8)mH~v8%dIMw-2mbf zR~T$R+qE%gLqQ}kpCtQK(0a-ILN6~r|I-&vvZT1)dFIBy^m0#n7x@Lj=#Te7jv4Ew zFEgr+tel1MSGeJyLviyH)bX!Jd3Ea6xJ;3IkXR(Gr^x1FI^4*1>= zk$rA5G=AiJBoxPbIJ=mK7tGeR?RUtOpQt~2U*Gh?#rknA9-hH&Z?FX+K~TC4Gg}c{ zvcur%!*8S%-jxg6z7=XCKi_i_IWE~~Iqy_2u8wla`GW4CY&Lf5B@xYmOu3hQ38g;! zfb33xHS&?$%*}&{;p^@UX%L^2_e!(p?xy!Xz@AryzeQf5#rhk$(q}ZPCYwRfmV=<3 z206$cz9sv2t=&Ip$(n^N)w1@VF_{b(Pk~0?Yi9JjI@#5f_#b0t)E){y!&r0+j#& diff --git a/docs/build/media/cmake-cmakelists-error.png b/docs/build/media/cmake-cmakelists-error.png index 6601ecbed3432f79a11921ba63949fcca8264c0d..5c0877845bb281861084952bae7f6e7bfd650de3 100644 GIT binary patch literal 30931 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 literal 35282 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 diff --git a/docs/build/media/cmake-cmakelists.png b/docs/build/media/cmake-cmakelists.png index f957bb6c1d56e6ac22048a43c88c0ad09b5d17ae..58f472977917f3f524099758f646ba04ea3a2931 100644 GIT binary patch literal 9294 zcmZvh1z1$wx9~?45CJ7sy1S)YWst6+M7q-f=|)AmVW^>`OBlLF;6=K-yBlN(Y3{-I zf1i7w`+d(dv(Mgh_UygRS$nVbTWg1?D$C$LA$td5i{>4lO)` zz~zAxMCL81bbx#tXgsofqx1#@Dv!dxHbw{9SPrr}P9V_J*8A^+PWu8g5QuJ74*W*L z-C%#-$5~^1p6mBwQpc5%Pkoa?Ygm_*#kYT2^~^CG3iYM;^eqCJ^Qu&0SNvV_VkUmY zl5qdAsi&!SDIu~jS-zCzky?)loC?Fo<^9CbQq{!HLsGW-6>sw!#u@|Xo5NLwT#mfW z+fN1?sXk}Pym5+MSl*IswlUWO5|)RRn`_qt3tmY=TlomW@FEqz17j%=$kh>_3=n!q zst72tWr;x`qX&h+qp~|d0%{%8>pnG|FlZPkYY-&*UN7bvs8JK@u>g*Uh1<*r#9$w+LbivdZFu(z@z-mjS3p4lm)RPWNB2w zJkJrPQ)wctWRlYjFvD%>Znlzrx{<;|&{PVirn{w~x;#u4*UCS3B&t~+FW%sf5-lo0 z?`^(vt=|v3xV#jcI1K`iBKc5D4whcU*DQpFWSe2V@@Tyqf`inwsPVoRiSgXJP1X9#QB$XJF4vTnhItvk$+e3KEnqQiWH2b zk{tuZ@`IZ6JasTHqYP8xk2J|hWr`G2A&oqFw!52dw_Gk)e=L4oY8B8wNgbt{co9fz zF|yb;NCuw1zK(}}dv#z;5T9Owv4u;ibz%L72GKaNkJ5amaA1wp*+2@L3Wl$!GH6I^ z9f|!yM6a|W2BmbPPKWE_i}NnF6h|kTpf#TZ=7R9`46pZXH^@Mrd1MkC)bY#fcdDRs^& z9&UmU@Pf4k?Nf<`0PXwzh$@99Ok~-Xb`v38A=(?wpSoao4Kc|=J5W)$>O@v@$)ROr zJ5fp_>ch_N9#-S1_NYf744vR3Nq_0{G5o-F$97=dvm;Gc@&u!b58Y-?HbRu_DGgma z!DiT?mrms8X47gxDhcSI6kbl-hak`vwI&Gk89fKEer2CE9)Lj4%YNVjCHG(J5ZO{G zI`tChfbs5s?8LwS2&)eD3ns+GWV)8>^KLkoj#LQ^Rn}V*DrLh2fi}5DHE2fa5Y6c~ z1D&hsgadmLM{fMSli$Lq93qjY4ZMrz9TJ!k=bM#ipnnQh^Pj|Yq}^Ob${=rNT-OkL z0<^TA{|Fyg3f?8I*#8W%djN7+SVd@h-<<9l{`@2OFw+SJ~MULWL#{4qtgx6tAO93GY^45_&5O@d{a?f;<69 zo^wfRG@Jh3yVn3l?Qki6J)r{1J4T*uL43BZ0#<uvyLwX`~x|Tg};YQ~hTT z>t}_jgMC2UyapaTz1*r>m3XO)ZXS#EqqK(sFTrTBXA#rs*ITQr$r6blHy$tf`Ue(f zr)wi|0~$<%PA(%8zOZddh~27Q#I)o`;Yj$H{SK;gUmuINTtoSOPBBeL}wROAvsn-==B$K5IjH_MEc6n@@&fA|Hdq9T?CqK(hyLwis z1j!fmk>ap}QjhxX;}Y6S<;s=~PUz)6@xf9|zaZO}*t=TD&4PeXVHW5zw&d#hoTcX` zg%!LrZJ#I1b|1k}YU?SV&JVvD0}bEKtT356yN^4Y6MRSbl(whFqT19X1k3DqWAjfQ z^18a2Ml|RIe<*zF$`$YXp(AG%5gV&-o|MSjAicaADfr4zO{fSZ zWaAy>jQti#zf*#obl@n=MJ$IakMf)F50-r$Zl8ANw+XR7p-i-II9scP73}+bispCV z!-7(=r$y;amxlAjZma>AaMH*hhT_`uMfM>H7O2pV{vST?Q^oblUG1z*sM$sQY&>Du zlo%gChE`nX{SGViu{|T*M!XNB+x@_xo$2S}B;vzS!{&~l)(u3J1_TFVG);T16koa5 zXRg-vz{c#k7$6%lBBgO(okTgco>(vo{)ucX`_u2l->wXUKm2G~rri)eQ(lmuXV(3HbzSLntzonp7 zHRt3!k1&##pTK2LZ{1fB9x$Z`tx1fr?p^fB`DW#}e^PRwoikmQTj({WaOYriN#}3r zr^iW=`K2app69&h>y&s{;t*Yf7JmHQJ2;sKd)azGoY0us~8pS|xYT~mCSa78(H z96R>4$&78jNmX5Ak$_)pi0@F&lR<$jM*+4?6~Db3uPZ}hv$n_3t;apPRq~$E%C4+j z?%Kp=5#IRjl5JwIt3yjJyt8}xgck$8!C_xAQ?UP}m92{<&XR+aaKI5!jG~fPhvYx( zW`o5Cu4q#E@SmT=v@B_N>)%!T=ZNt%oo>X9tc`D^glvt>80tYzE9v}Is7P=|W)$C% zB;YF$Uqw1m@~uBYdXG1WV^>d4u@4Bk-0bKE2ls4ZY{_z|D=mh=PWaS*)@`MWcS|uM zl-_msG>%X>efk(QeGo{RMkubEJ|-sQ@aNSla+%^oa40NjVkETs8Kne0;-gZ@hk^yV zywXLjWmwerwrZI;?d^=QyN#`6!1Rc1f>n0Dy&fw+mesu3AA=KF8ELawlUm4Gm$(=v zCz>^+B|YVFw&rYXDG5%3YC9loq%U@I3jxuh zUV7@d!ph$b7=R(O7F_!J%HTEcHN$ls{?&sv+gQ1B#YL27V33=cX|dwE!(~yE*=`fM zZE{;*Rh%v(;zN}((J`X*X@lDQQyrz)?0KNeHW5$FZTUp zI@~JwoZm3^+NurG4!Dm4c=YJ-A>82zs82ED$9oo8u&KOnaBoLiy5XeH*ZH2IS@Y=J zit~g$i}8+bsqC;MB+MnAoluIWN_CoUtXi3`6s;LnhyO@uHK60DlyCmzW4zd*w^Nu^ z>w3EH$KrDJ%Ta}x;*eKNXp`cDSR=u6|8>x zCz5<7I$KZF=H9MT~l=*iRH*OFi}dRlD23ddSeT zM{UqJ8Sckwb!AArI&bBgj*$8#M=UMPMClM|nl1KBsFRpD%_tiTW?k)Tt(4jbqh1QeS?>&C({X0Z* z3L*+t#v8sG6^;nsCsVZ0ZD7}HB$h#^y{%YE3^*ryOKErFRfOmxaKjQ2j*@2wbPV+e zrPuc1*2VUEDOU#1q0>LkrcP>$o~|zvuZK;HPFS~xg(Z-?^$tqRq^sfP(r*5mwayS* zUDI>-vgySixK>nlJYlUl!npp<#eD2)^P&t&cal47nS9)|MuWx zm$Wj4dBLzVLRX-gMab1`6m zf36p=RewWA?xB7|2er~_*&+9FtREUcfv*GpQeZSIKvQVC?cC|` zCC)OiuNv}mqXa$a)+$`7KF_wnM1dOJ4LKy z22}k;_j(#rKuf8WDn&wP=YjO|;*!q9NaGV>srf9SZ=&wL->j6T#9?5bvkUm@m-piD zo`Y)4Gc!{0TIh=q%EXNDC$yZK7G98fhXlp33p_B-a+z0h^P z1ql5(z;^8Fqn&7VFwi=B{X?k%yP-xqU%Jq&hig7LEfcEt z)I9GK!J9;9uo}@SePRxHXgR-*{CSEGYG6A!2+grh6t*AL!7yWzZgaC}${2bv%PI}@ z{F38MwLY27c596y84M1NT~3$hp_C1*P0Ss|S1Hm~wP+YK-GRKO-HK+lJJaD?&{5kD zsix5eO^teFu%e-0k(F69aeHb9N?$N8n)Yph`RJ?cRf=dV3uvNQx(PhhcZ6D&wQm(o zvp6<*o?@Za(mOT?s*lVai&lVHM@PrPv0+!W-6ZI&K49?WkGz9}Crte2roKTLE6GI3 zjYk94&{)Vb(9{4h-4mrPIZxUVr+VfOk;G3vezO@2#}0I80}o}y&gK|`pS7)iNwR?P zyp6#89OKrK6ACsJVv!^u6J{$C->E3VD~a;x={qoKl6QF}+p4p%3_kYO7|5h|<$B3^i^r+y*^O?~x&w3l}Z?xoge@?NquUfVoa zd{x}%ey$!$=!5Lp z*~)n8SH=1t*az4%F$o!4#FR%*!ru?5N>Q^=R5q~_aNF%iVw(6C=FWBWemmRWC?p5H zo4&XqQ4RT?T~YzEcLLVBwu;n)r?7tE!nRU^H!?mtHDl~4wdCuF@M9-7<(s@PW; zS=iFFTTz9(`yeApS>lbcyGKh=EcVi*Is>Y1shmH}Vjf?z_Gkkpg=S3{%`F%iSg*R=faWtKv-F)30DvhbdZj&K3tnGC< z4QyI&k-a$9Qg?^$)C(|}Z@s8@Ym_Uh4A|~Q&Qna9W+#4^=)wv)RX{+PJ>XkNJFhwH zGTniavm*zA-i0(mr0*8Qc@1+T*w&Jn0eK#h<%Zrida*WeN~Hr$ve}{ca(~WLi zm$?eZydY3G!R+4{lZ{O2^#jmnahm@LJGn6?SP3#1L?jMX{n(p-&bbA&8!C#r>|oPg zq7X9ExZF62x1(kPk3cUl!tbrpuM4rF^WDkL`#W*+d6hJvI&QtG?9kg1>`sJ-c;b@k z&m*g|Rc_)_dwrp%y6L>y@D8betW+|u?g z#?b`C1Rf8=%XCwi2N(>U#PEtcyU>i*rkFLi^n9j?1o(&$2v(%=&+B-Prh~->)h7!R z=S?4AWNQ$GNG{zv9nZLUi_(x}t(nSqhOve*Gs^qaOQ)LVQBbYj5y}k1_rjz62*OkQ z+gse#-V9l_-5bd7t3mnt#9Cx|)@}b{bEbE3Y)O=aZmG4T%3ssPul86C(YpMEiDko0 zi2P}gR5A@gmI2GsQ20x}H-&nf$lc9UZx{S0f+j`}xFL4&tdZhP#+!Y(qHLG)GuS6I zYi^~77r)I0gP6P|ypg4wzT42Nj_g|g1aU4*%Wm}gH%*fnTJq_8)0!zaH`!bgLq`yacU$mux)ouK^D9YraJBNOJ0R?`$zh+ndG?lmp$4cT5D;3^YYqB=!4siOp3!l!b z*6=D-wTq1tE1z0g7U&X<;y*)Q0qktn6on&!8tvAObu^ku>NRR!V)&(NZ~K}fBhpFU z!sbW8S=&rB8|Ynd38X#8u=KsNQG3=yr=}lML*w003WD`aiQ~u3o7Gxw^HIqjl+d9z zqRGCAt6u2)Qw-#nRpemF-E;h5nEm3e1ogFWb7*jZ%{au`*=6%G-H?NN=kPG|1ywZF zU1D`l?t*)@`35|wId?WL|E~J{ieK_3#<`6}L5d&qn`CdwROptj+a$UBMRoRwL6v}e z{)Uj)fpvqfVAN0wq!a6@pCXoMuNY6WE6kWxS8kI}FxQg@6P^1NpeCZySg-A{TeKf` z%|}}|R6o=xvnr#A9R+jG{!pdwU6fr{lXYw+aX;A{^f^TC-ZDo~!peVj)g3R3cy2$t zIqBfFweJzh=}I1oI{}ZN3aELx9ReEw&%!oK-eAoVIj4a3+IaevW)7x7Q<2#%znzf% z&5d|ZEkd#+ob|TeIYF%2@nkx~4A-J|DdgE=Y05YXUcr9UvdoS=wDzSvokzaFDWoky zUo4d8muPJ&w5}NSSqjOIkh4XNk&HPBRd#T%i{9#R+{x%y1=sXB-&W=cnf8nfg`Xev zBdRC7J8fj&w0UF+ifvx8K9oB~M>niYinL;k!9f;J#ez}M3_&rtAe;~%NWf239;eoU zWc|b%E*7?bR#C9rO!z~UIW5=L^NNDvQh6+>p2ELPN8|B4yEjeQg9&WdUH2>a4p?sB z#mn-FtKL5>#P~5HI?i{PwhO*1%A=t9KeIKQ#s@{Ofe z`xP~713|l1A3ZE|yn06T2N&sGx^QdT4}E4$R2?lZlvIBBlo!o8+VpCZ$U^Nc?RT3R z9tY^drL7E|L}DQp-(dmP{g7&fKa8xc2YC!3vQ~@fI2w@yWMv>u(D~ww5p)nvHj#K+ zE@jZsb=F)RP%t?@N*y_ZG-ttg9!tzk&V_=QUtWc?{sUcbKe>G|z7EA6P*tE`r^-F` z2MOf7|X-c6BqZ7&Gd+$<0Kd6dQ9n)jC``oVOD zYOc+u=h?WTt|aXn!Xl!6%u6#p3s{fDE z`MUqF2N2xz7VGbL05YnYV%N+;vR-l`|F8<+08XO|AiSwngfD)>RbJs=uMrmkk+$q? zIw2qQZ@q)P27#EFXLCZGCmrE8ew+F&e@B^KYhLoHG1s*`QTN$no&3UJeu)S84z!e< zCnbY5cDrI?mcv~7dl(?lOX8a3d-z0FEEfQmJ@o&-U%Z$9KY+UYOPLs8y~m7>STi4J zyKEf*SaPUYmvVCUmDZb^sc%V*fbO?4f*ThK{(1MH1LGvMel@#edeb!Mk`L2s-{S;QmC) zOoqP@hdqUIy!U?m(~%9 zMX@z6l$MEdV#ZHDhDNjDJD>7(VMfF)k`V`c_nU~}9b*!LL%vHA%ee)mUdIB}Ruza+ z7BgI;TvTcvqK@V`eGna|I1n6ca$6(MBD+j_Y}R5Q8v@qtQ`cV}!;BAI0oZl0cQ*+G zc=4F45Rnv7Kc4Y#`_|fXZJmgeFRiC8KApS+|Yj1g@- zPJ#{95B0eBl2}EMqd}#t$&%O2sjUBkY7cK+WnbLf0%vrURSHMfda=f)gfqdL$+Mk= zgM>bIjOLumzSfY~>zwW}sQaV!^cbxyo>UwS(hMJlYew^!)?@pH&aqFxBaOuy(0rge zhON6GsOo22c2#r?gwSg@Bi>{Rwv!Y;m|E!m5{0_y5o;wL@#{$Uv+h6`!jE9HLnK&jdkSKA}`QlUbv#`UARlUrqrjE9o7}foQ3*VhSAT>VtQM@!1f(|p**0 zeh9QaEHy-Nev9}1&DX@oA~UShx62sgN~h){DU_fNB2nenU-X5fIA&^fT7J`iy-jKe zeaf9jt(i1@i;1CGBdDI92tc|JjSkUU+O2#czp@8LUjGJ}FaHM^|2?PpOTSXYp1zH)RwIc5c{Q4Cu`>Xnzh6u9|VS+w0-~X7YPeaG4u64;(CK z|5Cm`Znf(cAXEiL*8X27u>a3l4CiMJ8gS!N8Sa)qY+!53RuO;lpJw>#K~xhY2JhR) zgW@@IlZtbJ8y!C#&p2I2{0DE1)NAC3w>h`{(Z&&-xp(#AJ+GQcrZ3>qYKk&q6D{oj z8n28KabfZXE_)4@#GyM`qA{Y;TaE?! zihug6u+jm^(O_DE4i(I6p!KZ&n};w;#9~MqT9{@ne-Y1T4~fC0CvDZxUp8wEPxV{% z?gzqjO1dzf7JHIg{aP%5duS^(W?4}2E4odB*R1;ar{7jzs zYlH_NyLM;#bxXgLK-S^s$L}Q(_-bDv<7@Oq1p{+BugJ()NT{h|h7{<1vipJxa3e0_ zt?>{S*~M`mXo+0SIpXk-Yc+SSc=4U(^w~oJruG<+!&XDsdbxbqU(<8T*ck90Ot?*Y zXni-Nefg$Fff$_}l7!uLEH?1!G}bl2!^C&hi74uFY3&Kq^vBla^aQEA;E6adQaLxm zeLm?a>8F?%>ad9@`kV{AeFW6PA}^&vgLyxxlu`RE=k3p1A|Q)l)VCbP(_Zp;e>QGs zw3v4cPxj2LB)!)ievul3#l#=&%ip!O{*qHlnsLB*(1|f)YzD|WOdHZkiE08V4Ea-w z*%x*#7KJO$gV_OOkhOM_o#)bOKkQ5~1~KlPpc*A|YS%Xht4h33j0?$}+^6UX9-+_c zj>~~FLY?B%V4(kZG1g0A9=f94ip0@SR9a$3PIvkU?}f`Wf(^W%T!nvQBwaIIEey z5-CH>Ig7=mgy`aLc=vVQJ*&%!`OVItAl2k-GCqq-p-tZ|<_Fn=f@hitBU3WwcJnP`ri!Z)bGI z#L9!y&0t4nsPx?TLig8&uen}lH5j(h?K~xT5zFXq2dN4kp?iZLzt# zkT^(aIH*-By}7D}gND4EfDzo96>`VJ z>SAq!k_G?-MOPwAcFMng)F^9q#wG&F z;*x*aLfr{bn>jex2(Ym^J3F&FbF#wiOxf7^`T5yE9BdpMEGP~ZdsmnP#DxWBPxH41 zaj3nKow<#JIUGiLrx9WZcXSYj-rwo z+yQQH2DhOU6T6EVFXbzBbC@yQ*`DE#jJ&)67-sJPff+%;;zHCYEv)9|#sXZTd>q{3 zoT9wql9KG~61<{fAW1P%5HAl87oQl2kNa;~ak!DAH5BIXx2*BMWySuh>|Huo+n_9q zL+#9+pvIDRaBIpxuPtEy-+kf#uloLyHU96uy#24TY$#{g?k4v?Cj0M4s0_Lr{*$_> zn}3oY3PWYQ9V)e3d@eWv0BRnv_*+$%*_~8u2i1v&+cUy_i(5vP3X5ipd5{Xe$~ro| zlDb3zWqkkB7Q$jIZ2x4E1FeG=oXC?;KSZC!)@AhXKZP@y%1%@LpmIA#_Ot@Jm1UDjbFA}>GJtN003x5)OcY8*)}F?nzufv zFFe&)%grn^VxM!>2MpN@h{t-z4W*UG*E5=@VVx`Z#ib|BA-8Ux8KnJjC95Q|KnfXG z{v{zN%;eSVDSN@k60KcbeOe|MAtU2F6eJQ$z{seobv*tM72E<0G3j3#1tvGIWnV6g zPFJ?`hs08I6tTuTVD0f&JtUZ`_V+n66-L)o*|IyH(X-$Xu7ib&Ka+HmIvUA zH+L>7nmGGyiVt7txpg@pvAbTpYO^{n{QZ7LTXe}H+qHW@cd9BNULKaBC`vpfFr$YB zCppn_Yo3_W$#%Jiferxp;PH9zCre@kaE&%0%Z)2d=Xob9>sJOsLzI+yfXqkHV+!tB5CV9Gm`Dwma9?b2(sb{r;t} z4ntU$V-*p5qbSJM*0)JXP6*sVZ?|IvZruDD(z<+qZg-q0K{J)u*U`96@NwL3(T&k9 zoA=!O_(AiIH$x(Ctlsg%>vzBLH~@g>X=q}w!{S7W6gJK3x;ZrKV4N!C+8#aj4hLJ# zrIlYu5ql1w;nw*fxuuvfw)cxD_p;P_m5Sd+%hzSB+GKMeVbV*DGnNTpyYN2f;~7q3 ziQ}|UcQU&Rj+nn+Ewid>yJ_d2#PjP!O(f8Q>W8K*{->^IM70;0A6q{e!5KIRRbE1) zs0Aem(zUJYym%Q>c3EQ@mgg&fO*a&<)n|D0I!kQEv=e8et#q!Q;m+(+<=hnvAp)EkmF50n8Z?3_*eAC$0 za|oQl+WEV?8{E6xogakCVY%-=w~?1=uT5_8B>?~&*ZueGs1p9sDxL5}|AkZnYWxH> z`G5}?oYLnDjhZ0T+D?HgYQV6{6O*ysIS3|dyoQalnn>sE&w?5!V2T=}E|jSH_!kM_ z51>%FkwU~Vsdrw}9E4@DYTj@dwkMWoD71Yr$N1h^Fx-JRWi8<-i=mJDMewU^KC@pRa@`-0 z_C{ zN_fChpIY&3Ipiu3IAhs1HK2!EtczT!mS0B?Xx6FWV12I(yO?2c%eKH7DD<=!bS$?R zitXE}2q`aroRF8Qad@+uv`R3eAS|s_O+nGHs=?#-sxo`x2xD#mzEg9k7sNdm2Of)N z#vRrGmRUZS2yiQZVYWC?6TSg+wf>~1F=OpjbyAd?&9JM|Uu%RB`z`GfSq|)?U=em* zr8`ABkJ`DsatAH(*{tmai%SHC`kF)w8_>_Kvdo%$8x5TzR*IVHU4G6`dI@l>#syu^ zx6KPOk(?eU;<=4QF6vrWMF%|Vc~*LIZP0E6FrvXt{dUi7k~| zTY@Nrq$f=w^J@$Qzf?<;rxahJqPC1aR20JGkLO^QpO`vBx9>{mIa%6SJ}|JkOXA9l zGe6KHQZPhXmq#D|(aYSmw)c0PEun1BZn9*wTj*ZWOhLl&`Hb9iXHw%F@l zweyOs#l^R9uJEOE7F3_v(nY3nFrQGpT-vnJ+~1R%7zjBlLnoWqxwsr!`yLA-Gv?8& z;zNEp_t^|z6LMcYBYKmC})98l*H=eKgJA}2Wq8*?dhOcPW-YSMfHF(st|M8tskWm8xMCix{oGvMqO!_gQ7qz{ z7M6lurbiXyu})VlpJ+|yh2$l*Zd(W0OnsM^1 zD;zgUKDb44>{Mr(Qju9xeZ(_HWV4SYIXb!!LhP>8GESK#Yq^}RIsJ6}h>e?Ubccc* zek_-wS*;NFenFm;+SaZ(+eca;PPn_xQ~}QPJLORs6K<5DGR@@hj&gDDhU%V$Ex$$$ zpVq*O%c{ojV|sKViptyIHfj@p#MHOYy*Y=Y*h!^;ex_sVUPP>wNYRk+&Lnrz4_R|- zOPg?2ONHOD3J2wF@pbvzgm%RnITmT5TA%GqVvwGW3HEBR$mi>aoipj|x5Qq%^qJwQ z%j91iJEFwG>@zb|KY6vgfhzRFJjO-PGB4ag`lVOUwdw-p2#E6688eeuUV4GvZ#y0h zCqaf1fW4GD@M z#-rT37XGnXU@?b-;`p)CtmI;;o#5!qkxz^L>Ot&cC$04){h3acI}4>kHBZWpdt|0$ z25*_jcu!B-vNZ7MUZ0(qS7fbbM|Xrq91h@+UDvN>E7FGPz5XDWfJZaPT&ic3^(ZOK zM9mpHKjFE;C?5Y}eIDG|WcQP|ali3_;`|viQ5ZuP3+qWG2aoZAH@Co3%{R z(VewjBWddQFn{~#8xIqo8NI|grNI=A+T}%Z7JH4vDWJahFD{6lsr^STJNf}wFgM4B z@@!p_$@3;eOR7v??ip>BmAX7Oo*=pk>}x0vbiSTzy(N|HJ53mTk-Wd#3^@}z^x0w{ zuYqG#*w_jGuuAzdF{#UpDbF;{TVLPYPS7M_DB5aT}-F^YV9hwQp>1ghwZ~cg3`EnH0pN$ds8{gy}7Dx;a-2Z^XoO z2RSJQ>zhOX5|?t=SD%g6inyCE_RP(2iXbPc?W$gvxsDH*9EVTjYG$kFA0?Z2ZHSi7 zvetL(09BERQ8~QM?!SQQUM^HxOca~Z{Nu?CSKE>tZum#buP*t>Utf7%Y#p7(l}3r( z3{~Flqv0w0VLU*R$}Z|+Qxv%9oIDA))h9a2Y`e`o*^b*$@3Da<0)45v_>KoiO+sahe$m_PomslX-ofUMG=7T zge>a%^!fiH%^v4D-Ieu7?r9W~`EY@z!jnTe7RArI^x)_o3QnO>q0s1GG6_`Df=b4v zF0Gy;s?#()w65k~2tSp7urSn5>Nl(7g1@5-pThxQ%JI~EH&Rz=nf%6GN<}B%Ipv%* zCm~uf7@BN5Nsk|tu=H8jmeTMnS_gpPPLohW^5urQ<= z`V6`AwUC$dsqJLId<&xsJ8BpAqrGTINGKD5Zoh4uA$O0yv4b)IVw{)Zi$|<79+l-o zADiM)F>1^cKR`_NHa^2Mta0)@uxT_=08IiCHpzLA7y3+*{M|dspAh%9o31I!o^Q&) zDa!QXncA{ZMGtNpL%@e-9Qu!q#aj=^n5Y~55sc)8Ku0-?kGm;kH5FrO`V_J@{F$sU zAyc7vKk8w^)9Gr`#8JPY9_Amc_=spt_$QWrLWiTCRK120cU)d{^3`58KipbU*&02` z^9l8a6P$4gXhPCf#&bM6#5N<;T_ycxrcnq*2!Zf3;3NaVV=b&HN^QN8qsb^cjMqc} z0A{~I%K%1d!b9d!x3hSL3*Q^fa8(e#m<5fUf%Dl`Q99Tih|o6rSShs(amd78y<=3W&Bup#Z>)&W z#rq@@_jKe;79G3|ewl^A9UxSkD-ws;WIvR?77LOZYx;KoF8&hLoy5PYmh!$Iko=0| zr^tOIa9A-ZY?}AHI7%&YFEE#!%D9|`H}YMBW2P}kZU8T@)&ZZ4$u9&e39E|*nQFQP zKKXT*P6T`vCYGoa;k}<8)o>~2p`jVr1FEz74JYeEG^CSzWf@AR&oHWy<1|IPsh%m{e|K>l?f<7CXc)7^2@HW?9#b7KA7e+iUfQi z0f_m12KoG&h`=iG|Ix6o-QajboeUJjp`+iieYo)T!T7@uU(p_4;8qj15-9EpUp$ni zPZQT^+f|>LvgjJM?L)+l%7&+ifsT`PHcb1@XZ(Uk6aASG88q~m__`=1?|3uuPy zS2tdQ3Bko0Z;3C;*?oghTf_B~QcG_rZ7Hz6L8gg9LaaaHqF@%Il)sH41USE5)OlY* z!iNuLg0d`7KQpWPJ+^MvIi>5tNt#Hb^1O4f#FQ&B)`UPdR>KHcTSw8NMcvTklU{Vd zuyM10_byYKb5_DaZ_||CkCN?1iHo-FZ6uHx#$V_1-AR~2W25X7{-Brnye65Qc0O9H zLJ3j2CE#aE)+*UlVg_rI)@ScIjT@QW)fofA=<|i7CxNgGM#I6<3;Rm@C;8wENN}_I zrIxG0NkF@o4Ef`vYKyw*xN@(P{wlCt+Vl;)DvU+%B^_>rP0;OWFV+Ae50||o#5pa} zMYQLp0I&D}&pTUX%TvRu5fiJHnOPJk#M75%(@q+{#zQi=FVk>PM&w|kIp`h$Ewd+& z+bXbd#YLeEtUu*_+gU7<3N2YubrNbV8iAJ}Ve&VY9*9&A$q8}X5jSwRYh?j6?0Y$P6!MYA1`Cm-Yo*KU;51_%}^Y4HAj$u1Y$b0$1?#cydLVsYHHB zxj9{5kCSU5mvsE09_qK3rC5cv9=u#PuK(OwO_NY9c*>9(-9 zQm)`p&+l%p2~b`A?flmVvcPR^KcUKE3sx#TYF0g(T)vqLD-Yo?1S5YmOI*zBk6}vB zQ8TJFk9=_njE<1IE;P36O8%zG!1omF{MFOjx8X2|B-qL#Nb4)J_Pyn2g)Vb%7WbNJ z4=5`8&(>xm+HWH@#bSOCg#a-h9SgEJBE*S_SQaPFBhcTHpG^=IdLE{gSENqAL>m11 z(N#?fWIkmzuFINzT4Q?JO5=WZ`K>$_u?`AL^D;e zp29Zm>mZ6YO%cG;1g>ejwJ2Gj9N)UP`vgss{w0~1SCFm7`j>6Rj?2XNi;?{aT`$AE z4N5$=3xCGhdV!s)Z+m18ktK?eRo?Zx+KbsHSHaMFCd7UhK6O1oE0QTl+&ojz<{LeA zfIS*23Z(6WzsaNRmv9@3Kh5kNU2V~|_+G3BIUly9i!>hIUl8{+DKr%?fHm37A6~*z z5x*<8GndkZGNo{PNIkzWYaJP_`a-I-e@jg^#V|TntuMZVJIXjaJ!hGLBq zY20c`NfW#8VUkZbHbH*fKg-$E%s-1nsPM@y;QjW+H)SCpk`1US*Tsh_j0kc3l(+{7 z$Zp=p0QFDUT9+|IM3%n$ar%fGXM0D!)~=0Hx7t*hrt7ii zD*CGN?5hmemMW!#PuU7p7}WyNriZgb&z6n^?VYF{K8Sp3x-OlZtZ2H7m?Mn1Z==^; zi&&w$_3L0M@eJYYw(f_>kz#DzAmBy%XCXfj6g&!IMbc`xfr^|!-K)g=SF>JPh&Bq@_g;kr5e)Z1Z=Pcj0CX4iPP*B8 z^|m=yWVHU({^!~72~Mj&?kb^ep#dIz8#+JiV`_MHJ$T#r8>22Z$hpw9phXDB>-K1> zpiy_^O=CkPbgx0Z@k)7(*y5l<%IkgA6;k4an0H`ju8~4x4QV(8O#Zg*`~=l%N%-V$ zheSNj)7u>Pm)vjKL%auXQjZ+WO_DG@U+8ZDtSR=UC6ZU#XUgtmj_K4D18PS?jRXB`WR}s zZ-Cc*-8ZAAfZ)_cZ^lSRioZ*AUX z6Q)P)2Vd_$O}P2l8m=q6a4@mH#v%&T}RcghOO`vtBs>)_m+C0{R-~gVO?9)g}82jLL zvKy3MP>b`v8!L&N>fxaYqR~9pkhV~OmQ)*q_oZyKrZeQ!KeDm{^|O(IwD2sfHZuqC zf*ZFmqQt>snrlXh-tqK@?DbsjR{KN0M}Dk%^oRH=o4`g=K6U`w*vp-TF8^-SQpU@! z+KPW9rQ4ceU{tw^rCBe|{m$rfspI>j*nq$g-8W{ORL+q_B0IJc*QE+35&3b^x?Vc8 zv<|YI=f)>acDlAluCHsXOJ)OKy;V12h?n-juAq}_kkv{g^9?`5?=aCed$kh2&jgip z%rDxjL>?yaQC}mjXKFj!AA0Isa`Y9@{}|I!-o@k*g`ko;0@C<#r+ch_LNNBhmcSy{ zlt11zzR8T-Ok4qdJ{!0zBSQsZ`;bn#lUeDR2`(c0jZn@(98N@F%RqWG2wNkIDGjpD zU8<;zZr>hoNG?>UvY5Gs46I9fLZaC)0sB38X1}dPkYnNcd-J=(kLV5dl#~0Ia^CC^ zLj{T&ht>zc0DEBQIbG*eR&k(jiSm|)4d08$zWkS_;xik{Y61MxS{MKv0Uy^gPA3Ps zLC=QUxt{)0HH`#IziZ)zE6J_oWxv<0ld`H$YGZ>(NTB<9jrGN4tR$xIhI-1g)Y9fA z7_}5~BYg6|(1_6Zck6Bcu;)$<8msWI zpyu?=^P&QXh1b_Td!WZ}b2=}Ts25bYKlRhHWU17@LGNp?C-(L${(h7b1_>Yj4{ZGd`Thl4DIsr!zrEOgHSHYd z%HBCy|H>Q91oc^s64bEX?*5yu%RVVR4MX=H;KSR2H`t$3^M6w=&g^TUs+%ITCZ&mx zESmGk#r^F99a3d+{L8F)a3N1;qwvy+{=v3gmjUX?+(3zAIE|W2mwm4COL3mT%cHjW znIlG6GpY-r;O+|`{q4Hqx{)D@@w@NR3aSbIXV1CoKL3Wbl%Tc`E?>G05B$pJq^FI3 zMe<}NB~+$aIdfx+@y~KA*9D^?S}AWoKaHSGKBggiCG!ot;A7$7cLgz9WmR#-BfOBqasJMet4$cxR8r z)U|9CRbE<6tGzKmqRpwETC&zy_Uafes&{BKqy~u>**7an3w|FqeS$?^;RdE|(SeDI z?u00meE-6Y?;RNFM!j%-VI-H9kbeH`aMQv1aOOg0gHEfNT!vntf;0m=JuIfnFQwxC zH0&|H?7opRm`jpfZUWDoq(&`mgOF5tTE|gac`o|&FWtvqw zwK8Gb!P&^y8V}jf(Z+I8T-Yk7EI3yS497nLLM>k!q__lRMNkk&`HAzitc65=k&RO? z9GlO5d^E#d$!irFg%4x^X7R5^o3l`bW7hHbWBqo`9rAk%3eFdDH_Yx28H-JYbrzs$ zzJNON=V6(G$TtI|Kf>Og7iG=LZzZ3QZh7~8BJ|u`jq}*a0)>o?!;f?-ru69CExr9O0i3_$@&llRt*w79!amedsF~vCsU902o?6k7woA`o;h~{W2pgIYM0Xh`cAF%J)Du zbi=|ILif%H35l*D#3Pg1Pq5;Mz}HaJVoAOkd}a_H+tzO^o>Z$XzmlUvIyR!Md>7FI zzpnPlJeiH5&%Ho}=L`!(;t^Cb=sug+gU&@9L!Lc51Ow-H_|~YlTXcFk80pWFmKotr z0zAQkz+p6>r8$_}Qd-&*&Zk=eXQgzs7OiewEWNv!J%VFKtq^Y5WSg_Ac6O_kyP1kV^&DsyBTTZ4#Opr$)|+* z(ZsEmtfj7wK14KDO#A9E# zmo2$`VcY5FCgr1CEW`R*GUbparuW0( zgyosH`)|0LQ_b-q5!s9)lR?9C!$!1npzq(^wyz|36rbbYN1sidN$i&CfJ87!FA(SU zDLq({;CU+2O@(MJ;qissizUWyb$UdBv++8m0?XqkVAt`lFSE_4{`%n`@_&yV-*ny* a8vwxW>R#m>IO`}@09ZmnyjaxWB%~#!Lum;?P*UK~B@H4W4U&R%D4;aF2$BL)A|)l=tpXw-5{E|V z?&hxJ`@eVm?zs2+e`9=~L-#puHani@S!>NX*W95GRps!nQC&kI5cmr6NDTzyk~sWh z!N!C=Ck>~a@PXqbukV6D5VWKJU3$w&Kn**wToqJgu$Hb6kP8s~{?)ICKrkQ_kdj&+ z@77ZNT}dn&FQ#-YqA6bSFoly>V(#y&?k6^2e+(%hzlqt8!I<$)M?Hhu&<0n}aM14l zqPi|sriKg&shQ;P#J7rUhP;xXhl|(BEM#UL37DP5tmRz&T{|MPUpKYhaB`M);Q3C$ z@{NGXnCiA?YFkE<)qIi_OX`7-c%QPwhX3;V`Z*SM0K>D89ZW9-h9uD$J`TMk(S5A{ zA6vO!xakboC69`(h(%;mhLqYao#K%T+K<86H@}N)v>Wy3sF%12w`*4eEfM`U7hok??J}r&!lqE zbREx!4TEQAO~*avB14c&HluQ%_!)@l=U!sby!!y^Pt zTKM4Qs;0J{Y%~#O^(Sum5}zsg`&Df;o^Y$Ci>JmnruiM)tfHz2t0uiTb&8E5Go*t* z@xw@kQKL5s05dLvWS)%~sqp`;q#A{w%pm2zz_`({W0?*V&!q*ceVLMOELv z=eqi|nEaDoAT;T5g@jc#hyk08gX4`aj~!Pq0j-p}Ix&W1Gu(~S;txijqdy5{7QMZ_ zWqdcOgi=yOT^ETYqFG{bx}s?3PIOKja^#z&WmQ!0;a7eY861^uZ$DE`x+7Dm!b=&% z7Dj||si>&P=kY+weT2_WuaI7&&;1Lru!MX!S67q44{#8k$MI5bEV-Cql=(b~cez95 zz|$E6IOw^@8bLV_7Qyf594-(O=d?PjwhoQ`*GNXf`%7W=b2w!gB@JgfOJITaqNk_PcBE%ioEvRnV%W2aru~+C#kJX zCY3>?sHCLbHNSJT`9qrU$(Mf^ooXIC-J>}?oQp2?*fQnjh=6s98yOktv7DD{QaW(f1@o$n&f^F24>-oDMKuczU+>}f8u=yrlVT!yuzR^Q)UdXe4b zdwS@srLFyBX&@(2#GRWd2AhL}1My(5E^>akpcoV3v)O{>qt8GzJ!c|t_wH8>gH9NH zc(B0JQy+v_roN^oiOZ?PVGH53)4d)K2P8= zjw-k6+pdZ22&c%E*+onT;Qp4*FDPis)66Bh_Ue#l*mEHjE4b}tgZF{y;pWWZ`nv3s zCyaK2)CiOH@fyA}IuWdS2Ja_#l02pcbJe=CqQ$=r8+^7V-rtytj*23PxWUh2$<=hW z=6DG~E#%Oitq_aYef$EKg8TOhI+^)3(MO9PvytC^)PBHk@r@LgMo;oxT!?~=`W=F% zz>SGI3P^Z~{8j`AleX9R)r*occrrC}RiB(4?;TDD5*{|*fB~0;Q0a`O=RwI5 zVT`P~)t?`)z@++|ZTMfDKpGP={oV(6Y`$aI9e=wm;3_U+cl?Xn+SseQjYewNb>#=M z3ET|?U)yJ!!8ddVRa1W9?vtKaS+bD#e8X5s28}*uQRjbR(t!D>Q(MsGk7)HfHGpV0*a;_qrARBbY8~dN_{e5hf#NwuN zuh9i+hw4kWZ{I%r9jiwAsyHtX$E(4JMYNyE^>FhEqM1ZZ^d)PWht#i5Zi1BF*XRd_ zgCWUeJj9lMjrX#{^wJNK88=9aCcNztlI#;=K8L)ub#+h5N6i;LmXr`7hzNo$R{GxE z*W5oEds^HI6tA3@Dp9Ho+Cg9Syon{+!LX3C+Xs2ixScs2v=cR z#5Bxp-E1v|p)2u=jqfs|0WBuVADSDz-?KimuyJ?%)qC}L*NHhbplhVgo#({{H(tCT zWRH$Q5xWsyyc>5gP?h#=jlL(F14=wCkbod-j?_NqY+`#&KpUpS(?ALd_8wHD&W#Tj zd&U=65!JunD3PL|RGKlNtVdo!igcQIKKym;yTk>=Yk-JpJND{$4GFC7cBqP_PBT&w zlzagja>c`QISEE#OUCwgzAtm~?Jl-VD5|fYiLE~^ZXiz)v~P`JmMihU@PkAf9PXf` zgnNG2C1HBJyQDy?Ykbrn?T3LFskEn_?@On5pI92q-C41Iqo{B^0ByB z4sxMts_-rEd(T>~QZ%pZ&Aw6MZdt3EqT|;k>wT+hgfm@d9ow>g+V9>8VH$EV4oS%O zWFMU{VQ%V8FQCRDVfMyQsH3vQufBq>1F;A@X@tD{oZ%2QZf;q4nB|p~{)vg(;jJIk z(xaU2ML0Gdv3wxRQE+kVUmLH{6jbY?vqQ?|KyJxc-8nxyxrC57ogpNP7SZ<-S#NCh z>mr~P4uTT>*nQ$TC4eP7%q!@W9v@HMAs|G8jzo0kfnS8oNy2Z;VX^olJV^W+qcTfH{x-QLC*E3ghY5)DF$CTD{Q;E|D)V{0_j2jJi7Nt5>gj ztW^we!Z9XLCh~~`hHN{6>HR_geW5Ff|JjPMg&NT%ld;b>iT9kDDjg=mV9-rwT3;Qa zrp{kKU}#Q{zbs}mcD%PTvvb7jcj_@Zvfg;&usYR54^hkt)jlR6A-GTCg2vF$P_O2h zMNf5S#EmO;69nmf!El@7-Wv^v$1BBKv*A3ZFm!rl=Am|HFy5l4n{DW-E$BEI0n=)_ zzd9P`qT7&BHK!xJRu^g69zvWb<}C<6#+w#lzwL#r&&vmh z=g*(R0u5Hpm45#GZlyhnMM>tWWHW${P#hALW*EE7%*&7uMTKvOc?kf*j0_9AcFr(+ zw2&UHK=?9^Egyakcyw0Hid7{Uqi!Nf;^L@JufmoLz_=(n_V@PoN=EI_fCFlBiB%sR zWauO|{xpwSoYMvWbJlmNtWd9M2!dy09c7)J`Dh5RAV-CF(fiYgxUaXP^I7>MVCTcZ z0l2jIFsq6ZKym~?lKp+RalezbvNfyTdq!1Au)5RYh%L>$q=T2%X=X08kDQnPlk0SRVY5!#fPh76}T{z=%lZ8 z)#LPV%i7jfqxX)6p^(85>m5=xS|AGmm!rFwy}zZbm4rSEZo5=BA^xL{F~o@fL5y9owp_t{zin`~X&;;=a$*;ZJ`mF2`DI zOg8A%x!D&V$Pghd`?EIz81G*FdxI(!ia6^)W6Z%6?FU2 z>9MI=jXg^6=kTygsc9?J+gC#cy1C|=8rs?&S0nej3wbzU9k?!OOgaKgxBUJtwBqS7 zlY~S%3Rg!kDQJTU=ah2E?FoU2Oh(XXZW2 z`CeGj(R`0gD}yxDh5&dvR|y0#U=m)LuZdyzR+P1}V%^@}))=eI%3_`o?ziDbBzY1^ z5(Oq)@~u|a)_zOef5i*0whC6tK}AA+y{JC2Q~5Faejq?L?Pb*CZq)x?Sm12D&Tl^^ zFuHAzs@yxehaDgwIUI9b$fv2bEcrZ24BcL9$nJg++IjH%Ch3+vx-w(C4f^HjB zZtf>1Q;F{WkS_a!OV0Jc%F4=;;2(yNxD2Um49VX#yLA8G*|3}r?$l_xl{#Dq$fe!; zU@4+@2Bv~nj(@(rg&Jm%&cPU-i7iQV*kr<+*hx$v+G0Yanp-}M3eChW7)pLgoM%?? zsC-+5;W)jJtTDmJ3&*IK0u6yny!Mvkj)6#&=y4Ir#9V{}Ev2*Be^T*C)2&65nG#Q` zcvzZLCQY2Q`V(jjNI&p(d%Std2WJKF(d8CWDv6(+PD7 z$N)^ht&6^jkK*+5j<4ld)AT9?y1IFCc1nX(ljM#2p1>9cM_Ak2|2c6HPA!YmKOS9j z-S!*ti2EKsMj6r)J^yNh(EsqtIY2|RjxaL4Qq!vdIVoCnjeW@|jD4IH&t#d1Nl8hw zT|PROJ}TPu5Ead_q|h@nV>X`O@-PpWKR7A1?4=SA5MZFhVMm=I)vIf=?;%PFg%sof{Nmwod}=|&BA-AqpPB5pvt?J|ASuQnH*y)?L`n})I=?3h zS6ep@t{`X#K+9N8h6PX$ZP2tfe2x{9HJL&j;c>dvwFM-D9$nvr zg@sE@S}qqpt|?RVg^R(hjLNXfB$w$I=_Doc>eUS{Ar%x99y|Y7+4H61dC!&K|GBcV z(_XhOL`FSmaOpRN@JhD{FT?fF-IG_2<)frc)OkeZZ1-qCrc%^Rd>`}3JUwKZu!S-$S8emWx`|^yj)0n#QU0XDAv8V#eXwdE&6ZwQJWN>g#`%D0j=jeV984 zAeVJKq1Q4tr+J`8y}>9N=3>a+keed<%ZoI&f{ctyupsk`6HBaP7{i!O{hGL*#W}3F z)v4?0Q65l^s3_QcB0gL{Z6|362)L~8?TTc*)$eIzZ9T2dm4RQzG;1~vO2pyrpc`K2!#R{$NT9mf8QP59rVVGnetZ*F z3;fK3+Iy36BE4^6ZiT-zHY%|9q?E14PO#0ibhEF2E=)W)<6%g6R@a;YrP#Fq1Qae2 zW3I8cA1($25^kHJ#@5`h1Ddb$7%3LI8NE}@wL8%=DrdyRyhF`|Nt%<}juB&1#xisZ z(k1!7^-S?OPQaJ@Y_sU9#xV2WZGRMQ4h;=ueEb-4QBY8zR8tIPe|4fx$Tu(+(rR3c zA5MTgtx98;uC8t{VAG#Je{Nbpjk=0JCt3x2LIh;wq#N&p0CGVQvhtC@kh~c^&m^u+ zT58cvp0s#LEMRzYQq})Jfe0yeY~KbLI>$Db~RQik=z8+k)JKcmZiby|TW( z{#{i^79d=x6=C+USzKNHolZzE-ZR((_xIR$Z>VfnP)VPVI&B3ZDR?qc2?G6Z#roX4m~g2$--9((^4(+-uqRL0Z| zgA$WVll~WH)xPD+y#uvR`%$+6+CEUbp94Y%9lIiZC1Uyc4t4;g2c}(AF-S?_6g-_E zH=)bnt{cFomX}wsNKua-J>s?ONp!{MvsqqV{xLcl3P1qHl37BcX{zf15po-Eu`Lo9 zxKSt_jE@RvcYq$s{=nu-UtfaE(}ANJsD9I+y+ol7fUu(nP5*OzkK4em0jbRAsw!6R zdl-^MC-V ziyU`@2k-)ucmU;Z>us?{^Y;e}*Z~ivT{gDR=!WcHbW^ATD~{pke~+M~WBqF`AvA}x z1$P7A`m628V+Z`8B8Ah$xR_UL;-ArNDiiCZQ@CLLW|_}A+;#Azh_&=iYO$bm)z zLQHfBx3IRBsz9e`b_I&7bTGl*v1qm;z`yz4l&)xLFA@x|c6-pY!cglVN5ctQ;lgC7 zDenz2kTJ0`*-WPzebG{Ejl9ET{S7Pvn(3~3yV0`Gw1a!Y#?gj#ZhLvrx0K?iK{T|X zQuhJ86V&}XJ=l-1`s6q*{UEHl&OYy;Xn4gevvPjkGO^e4{QmXOFXAc6EPlFIe-9=8 zg*DVK=+w78M9W0DP=fkYR8&8H{CGdoxz9<~vFKY-S;^AC!w$-#EIi}I_|VWR$ZY8B zaJb#g!w1rcpRE(EE+E5fAnBu&YqCE_|0>jM~NHAlXO*`mHfG4Sy#9{Nz|Mxcw^X zLs{ANTeoiIuW1mk-$o0&KtB%`%(|i&B_!zKqXQl)6h8Mja+W}V1K=15{SU_Lq0`17 z6M3Sbf#3|Bzbo4v+7E32hRLq}-szJ_@Rf@I?SwtdNr1~XQphOJH{d!Hlv5g4H@EG$ zrmUEvDU>XqR?D5f>wk)MaZ!;jEwV859Bd`v;mx-sspBO3X6#J zgF;{MsrK5G-^uMy)w9uIQ3u6kUN1hj}J+bx?Uzg zu^8IuwlNt=C~?YbxvmOilSJs1W@diABA=lMV9hH zEUpg#E<6KaakyIE=MmNf9NCXf7tpy?nx|}O6J+=;mwJ%dKw|K30TB(r+$IRZv-t&| zS|LUVLFAAm;&q%9wHy14gV_9&U~CGD3gml;;NpgTD!;98W43ixn7W^Nnqf=N9Q6TG zgGfOLMcMnnVQA`AB()G)hyyL63+6C=pwTOE{#CIT*5-1Zn8cJb{${J1x8J!v?xx>O zu@hdZ$j2V_M#cGyA(|A}(9jSc*1kb>Kg2iabD$A!Td0ZckvcS;xxu0d;3@v}X+E<8 z1_a%s^sy68jViX{r6kR=uB1ER1~O|>@yHoe;j8)Vnd}ar%^ii!y7gKmX9=ze zF}Kx3+s}eNhfb%!d2y7u5PS=O>5cz%_v+O&XQR9yQtL}w&5g^PF` z(|2fIna*`adK}IKGh$x`c=8f>gN!>YGd`jCaPC@pOP6Mc2dnenf zx9=w`YJEl@#O6HX^jFzwo(l?(Il>3S#)GJ)Q9D_E{iMvrLmzQ{FVrs<|K!$z38#Bp zB)z~ufW3UJj9d>#_W&NU1v%Y&=VVlpks-O?J^-|V2)o(*&R3)=X-D?LjkhLC>&bVY znyYU@x7K1dll%#~>j~i>N~|m>_l4;#EbV7c#;cvPOgTJe+i@TbvAk3b~cQYl(`Wt zqCyuduJ!?ezGp^#9KEy>_|rV+Z$!|ECFg#?OI6LK?EUrY z*S7lv!UPmkKDAEhU~gB)%t4VnI!&TNx6q@5HUK}2yHELATU$4`zQWxC9dqZb3804a zf?y8eT}mhvl!A7Y=<*6Drb1UG7^s&EY2E|??<9EjEA4KmIqIX@2qg-=9A2dD?4R!R z%}uyZMczmsvi-vp*ArL@dKW| z-5YYb60-MEzA{-cAL;EWe|9gk;m(`e@?#YK__AduRBW@pLOKQ7f^JLqwM9OFI`rlu z6j>L&PdcJUx@`*+zo7vv4X-*G)0^{wB4;?`HKIQeI+vZazylpT6RuO`{f1j~@PI zb}>8jObKhoiE_p%@j|0ikrU9LU`k{(^XT?2C@}=VS-PlfMGlITIBSv*=2ZaA_Xy_$ zp>s4Lo!1qLT3a8)XQZl|NPFh2EBm2|^;TlEa{cvF_)X}S^%r+6xn{n9{~}$tB1{4> zB{s(8`cLK`uHf7S^mXS?O@^zw`9KOIw8iZNyW$F1e?F1XMrSTQvho~?oLg~32j&z17C_|}bnWu(8HKgdwZo({X6(MQa?3_8Pg`2|o@qSSWt+MI-70*X53e!z^Kic9@6|2}!DXs_z3T|J{ z8;H|QW(OH*Q}Oq}N??-xEf*iqS)c{@k^vh^9Q$y2$e(i+t}*<;7B(KBne12Y zTl1KE#7@vdG%az=!>!Ix=Q01-A61-6i5xa02l>|b(y5JwIklm%SdjZHx>nulw7YuG zt59oDJ5EL3Jfbd{d-yaq)3q_{i4fO&)-cOCvpn`q!%AlC%ODJ?EiuPnk2?rmG(5XU zlfRP%(*`#P;(z^nYvEj~H!?e|3G99Nsj3v33i@FJ&rF*H6p7;)u+i0qJC__EY21?} z@6H?}ubeTsc<1Qr2hP=zafhm9&uhVL<1a!}bN@<(xyy>VuRkLjliw?p>T%^)ru3|a z`Ucz1!F5ELo?IOKVR{>NUq7V_4vy|>lPEvxfpMr(QRG-a&22p(!bp1Z76Mf$;O^63 z?W9u{>A1MKWM>~iM+B$Bk?6;+xtBw>DjdD4LLfRZ@TXA=r>c@$Alovp>WmrMXe8V& zAGJGm_~_OmC@2VKif)Wsv`Y>wCjGSGL9>jJ+@nWNT1l?GdgC|NgO{GTp&&ZaE91ot zf}APoEC^r(Zb>E#OjPW7?>4NBi7N3=&f>%D%04}xanh^&^wm7Ts93kiE=>W}_={a{ zhY}t^FK+g?x-{1rRUES~5ZQZq6m>gF{#z3c?otJcIi+QF-lF{=ag7^D;UsjEkvQkK z;H78cr^Nm9VU}wTW&s-Wd<%msd-=&i3XVQ@B9cU=4q>4|v8kL(jYAp})&L`W%%qlM zuNSL?dMu<&)ZbXO#}pK6VRBpI15ItwRe1gKmr5Xb+V8?b&V5bhAd>!|=m0kk8@kg1 zFgEk6d{nf!ysWrfe@m*|zw86DR!rzIH${4rDVwL(#~iHzzu62yD+|FC;%l#FC-L=0;**G~h#R$Lz z(b?H4-mngA$5g|&Vuw>qRnX1N$9CZXzF;2DL@`yNV{lu`g3Vh$EESem+Z57@o!c_S z!!8o!g7i4M^~Y^UUM~Xm<2q*h@cnmBKAwq#3aQ6M4mxZ7;cR&R!mU*6%3V=N%97at zN!0-tY_g=?w$_2Zj6Bckt>4Ox1;Tp&%2r>JgQ>x6_EoA?jtKc(^8eUoj8Y^ni9shv z;}s|r49}tp$;G$F8L*{7;md7L2YFm076VD?M+UdkR*Wg-dy7__&X?E-T^fiQ?Y72EE7LBNBu2t*b@spkzBmcyEdv_X`50`yxJ;R~3X6EyTIBHCL|pFV8^aCEqUBn!_e zS;LT=*7nrzcv4X+$3(3EL^bv+upS13U^27FgwEVqu#@Gz_nf&>*5<;T+<4f)aid}P zY92PH*r=+m>$@-^49RRM9c=pd_I>!b64Nh*vn65Q7z6B z;)?T>hZBp7y<3W;z>>@km|r-|wjOc`WK5llJ-z`5I4NC{3DR2+s(Hp~m;IXgc~Qio ze8iEoyck=irs3TlOMZ}fdQLIUmjM`m;3*@6*$pKm_#@DwEq=E zzu3+&_u&UH#K9M(;Dy(NOFh;}*?_fi>7jpFTzTJf`zAE?xjDz!|AoHbG@;sA=<5PY z5I_Gk8@k;KXy?wlFtm84I;Dxez8}5ch|F$t$to^6e!j$A=s9YU@Z{qB4DmwO$n)yd z$>aeVs&DUuCGf*@e~cJ=bD4H@at>f9Bk9F8{vaw87qTDok6+Y&Hnf7A>L%c?f=CRw zFbvVHT(AaUNWK_eQL%Z)btVdT2d$Y&ua%-iEj=QP)7@N&$k8a;z(=;VPlvf1znevi zu{^~EmB~hEZl$4uBRHTBZC_(qx0oM52q9IKPLO29($ZMiV}8IY1Amet+y~*{*0Zfac8XYz%5ayJjFT#00^7 z?(2`?8|xF)6++SG12TeOPzbl?QyecN(0bma>~C&}+GX12B$wtszX4_sT$Tf_je-SP zM-z)>+-ujgWYz%`18c5-cM94SpUpsa;vSgGoWV3QZG8U6nAdq0=>v*cHP|E37dt)h zzYs!9&qYgg!Y!u%9FdKtiv;4j=}b;RVFr`~@q+$rQ4ZmSoCkYfE1cW{<@WsfR}7}> zp(fBM^f>|5WDY?1Z+jrB@iJBLNb?dB=ZACk#c08+w2LmB(+BPO^79ji)+i1FicS4b z?aWGWXep-(zdd-HkkFOY_vX#@>ta$TtysGr4yQ*nP8)m82f;aAF4AGDx#6hqVGd=s zy>!uX^9`2}==Rw+wP1MK&8;r_+|Tx9fU||4+$0S}ZZ>TAs#P>pS0~DO_};o6`k;9D zpca3T_%ZnmanSYT^f|L^luICBE>F@d5KIU`sN`$BZkt9LnA*)T{R>9ZA)lzf-LY_@xhN1RX?a!9$fJ8oh*Ocx!@!^zH$MrZ<TG_^ULHhJpR*RD z*JmJm0R3sxR1>@U;J)p^%AOt=^wgNc!^1uE3x-$F#*c3Uf8KKHZoBR~`kzoYy(Fce z*!hE2ioi3u^;1*r$@cHB^-bufi5A+S+5FdUm0js2XUb_B z>J`f-H1QggCF-{poMpb$eH*=I!N&YhePp%*Jz!+wOeaZT5l!Fe?(U9l;3h4OWVoI& z`Zp6oqWIV37qhWfmVFVM=C!N!{OJgu_H)?H0vDytFxPq8*n*!L-v)S%{>NiR6y% zkguwS_@RuH9Xca!H(}yrLc?%2ZEb}rXXwnILEn`}GmRQLfeFHjaNbB1U~CduJ+508 z>=lDcaTTRZxm@;dy?jcZ>w9w9;7eBgjHw9EWLuFCzUn5N>QmFVped@8JBZUX6Fynby5(aTW3mE zO&y;;4P*=BO;Uz1i-BEplF$i7st0wLN`l)I7610_7GEjHP+?JNDWB|!-nZ|+GDwr*`3nZXRyCL>AHhIgGKfz26*t;y4{ogJt$Z&!wDlF#x zUDtdT%a&-SwumNntF4-WIYF6httPx|vMhEvt1mQULScP#B7TDt+fnwsc?pV{Q_Q= z>nmzmo|M~QC-LuQ_;c9=W)OC=uRdyLWN1!HKddGYYg)ia z25nWqkL2O6s=P(%Ce;{-{;6Q6El7^Wk<3PiOmAh=P{pGny>iP)WpgZ8WkeYd*=!hD zLt4TtnHyU;OhzMySKf-PGGG_Ix$EMCJdSD9Wy8JBIN@GAeKW`LynoIXq2 z<6vT_ua9F33qc+~{LMq4Jf7Vlk^{%+?~%)bmWPKaE!%k$i1fa<4Vw+$K;vmg2&glW zsi|^H_Z?uJ_gm9^W>H3ZeZ4l*joF8`20UP32p7ygfz(w`6&~kw53j)}J%-N$7u<7Y z)H>jAuoFyKm7P5}S?b$*h7CYL&;tOiLnpKFGq_2Jmog1?jSakt^ATaYrqKG^UMqPq ztGf^C&p3{POI)&l4`uvTYGvc%ipYC-yXaAG*w?c3QNFTW?PZZn!ShAs2W#H{oc9bo zwejyqX&k@1A#fs$E4^I9w?2@Dt@bpHI!69x-p3-Sxj-#N@7UPcA*H1QS2HV7YoZ$F zJ6;1{_$cu*OH0*Ryat}>Ddy2}N_VU>=cG{$tmzd=RR}K0(Ax*zz~3Q^iElAAqFp@% zObm{$iyj|^%qRN@yL_;=>{vWdTQ1P~G6Wqja9V%|AFLreORmBeb5)OuPDOT)e9ByU zP9v$Qs5~khB#F$Y3|#wl6s!2d=b0PrHphP~x#nLL&yi2mYrMejx!KpBMXLLfOO$ zOu%K;p=LZ}%l61nqW=fY_ua_<$j6A+E9~W2Ixab?;lrydAZ&sah5MP^I?vl9v7DVm zJgzm%%XR`({o~^i@Wa+tDTEkVr9P=@o`dC=Ycp3qZ`45QGygL(v~O`IY5L#k!U{Qfy{yTj%F-ILZMF8;MujW!_W@bGHUmfta92$|!)_zfHVew)@t8OAdRqc!w ziK%}uzfsJ)LGtuh@Ic!QLHEx2?#wfhL@QZ=hOM6=!=3US=rJX@J93`m;>k7Oc8^A3 zkFn#=v#;M%Ko+qnnQ%xr%0+C?@xxkW$8Ip;J*GheLu9Ltp8@ovL z%|d{BE9M1SV$L0) z&xQ29^Tp@`3p`$~>HqPgSxIEnt};$hP@&)`zlB3gsleMjY?A8iV@rPVO-&z0;??@) zz2k@^Ms`{u&X3=|g_UX;HHdw9xyi(Mtg3^J2J**OYz!M7f2!rYy{$l$B>Pu{iS%I0 zY3vurDHIhc_+Cg(Rw8Uyc&C{3t{T=|HQZa#*fyb_I`&C9E(5M=R7ssX#s9>|TGJzystnzk}H#32g)}866C{L!CR9wA0wmp!zSTBcr4wxSz z)S?$&Qw@CUe)-@9#XIvQdZh%tTjn~c`gsmC{J57*@tqTMudHZ}k&9v4B(ENvJQ1Ms zO#a^4bxL>nB?5$mfEEVO<~F+Q1iRZqk93jIDWP~z%m3EqJ4(tn5a&GN6$hp_`Wd2xzFs z)+Vq=icqoKgpOZ&lSdj^j6723T`ZX~G*s%3U5w|)q3Ja3R%hYI9wVPUOvl(hEnCjR ztEAsVc(`+adUECE2B8vqWNgX8M%#$o7+J!&k?OzM6XT$RoOC7eI=o{A@u7gy$cKo# zGfy&Zpv)3m$mEjm8AgjWL|s|7;`#cxaQ#8zHR=!IS}R(MBi7mfXuBt=q^wNZGJ!HZ0WBl2#V z)vK@OVK;mpLlmA*h{!4H9FaPX+YUaI--=+Sa)bf}GSxfnZ1OIwUR{z|;4AaUNvpQ7 zYLX>M$}0;Dg=p#4SFX^j*M$9&thquvpy#nb?YB{l>?3RYl8jzRw=7RI-?#U20EL=W zyGqULUBB&s8bFat1%<1#p;%3lS(c0sFsAQ z@1TntXzVsq{x`3`G%8lJooLij(GhXaWZM?-;Pp%2uK$8SHvlMboj+3kOBJ^d^w)2xx{wD4?5FlPj30}1X+s9ISCFpOfG-v zkMG|2L$J)`bWnq3_S-2-K+E*|tz?D}J66shwQ4*fHNOLWTr{FV>NK(s%1UEM`UKBw zPMq(Ln>3OuvKI?HiambFHsr&}#TA5F(<#ED2t|^f-TZlaJI?3M^~jeD&&Yb^d^GwZ zofGzv9!Wq?VZc2=vrD^^BF|8X_vTFuz5z>-7%Q3TFCqThrgzt~$pS|oGoYf5%x{Wd z27J+mx!TKJkQLCd63A1z$;r-h_lph*t&ZoYY3Y|=Ph=GJoi&yoGptlqRA|o|Fz$U_ z?4`tJ8vfzajm1N60 z3W@HgPowU~4nX|tf=o(DY%vMhdJ*}0l=x0Ift4+idZ~S9U)~ZABc=eo0KNn*$bK#k z{E17B022l}mH(N{@@0z~uU~cZju=KV6<@2wClS5N6KW1lw3;wW+?atWn8p|m;JX0~ zAzELP@1sA>8UK5e;VN#=f0b!svzT))7ybteTx3Q1H{4w3u`(ompqu<^ZqQp}`dsE=8MlDp^Oi5uP8>jN}vl`Pe0GFP|kX1fB;&*Xo4tb2+X~n{O z2ek|+rcTU#eSp-be*TK6O0?rP+6{e(>`orH83TxlCbMr9IY7h&n|IGRt&-KAR|A** z{*jN5>JQ8Euk-7mDqkcW1rTBMOQTDTvWLUXD?1Yq5_Hk5odwLJtmV)jpbq2*aNuZ0 z$cw0ne%<}&ji((HdIuBI2HFP%c1VY;(SaS%Y9X}4EMG-~1gl+U8HN7*zeutF%ChGY ZBX{@uSt7_?;eC39f{ZHilaxuo{{U7ocDDck literal 0 HcmV?d00001 diff --git a/docs/build/media/cmake-targets-view2.png b/docs/build/media/cmake-targets-view2.png index 04ae1e2a13ec85b73fee4a01705fc7eed4a1051f..673ddd555bf96c802da67432d0d7b13403624bbe 100644 GIT binary patch literal 7627 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 VCT=0-88~DEWF-|Ps>BQf{s%zSi|YUY literal 13659 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 fZgP1bb;U+dC{ [!NOTE] -> This topic applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com/) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, auto-completion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). +> This article applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, autocompletion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). -Want to know more about what else is new in this version? See the Visual Studio [release notes](/visualstudio/releases/2022/release-notes/). +To learn about what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2022/release-notes/). -Ready to install? We walk you through it, step-by-step. +Ready to install? Use the following step-by-step guide. -### Step 1 - Make sure your computer is ready for Visual Studio +### Step 1 - Prepare your computer for Visual Studio Before you begin installing Visual Studio: @@ -31,28 +31,24 @@ Before you begin installing Visual Studio: 1. Apply the latest Windows updates. These updates ensure that your computer has both the latest security updates and the required system components for Visual Studio. -1. Reboot. The reboot ensures that any pending installs or updates don't hinder the Visual Studio install. +1. Reboot your computer. The reboot ensures that any pending installs or updates don't hinder the Visual Studio install. -1. Free up space. Remove unneeded files and applications from your %SystemDrive% by, for example, running the Disk Cleanup app. +1. Free up disk space. Remove unneeded files and applications from your %SystemDrive% by, for example, running the Disk Cleanup app. For questions about running previous versions of Visual Studio side by side with Visual Studio 2022, see the [Visual Studio 2022 Platform Targeting and Compatibility](/visualstudio/releases/2022/compatibility/) page. ### Step 2 - Download Visual Studio -Next, download the Visual Studio bootstrapper file. To do so, choose the following button to go to the Visual Studio download page. Select the edition of Visual Studio that you want and choose the **Free trial** or **Free download** button. +Select the following button to go to the Visual Studio download page, and download the Visual Studio bootstrapper file. Select the edition of Visual Studio that you want and choose the **Free trial** or **Free download** button. > [!div class="button"] > [Download Visual Studio](https://visualstudio.microsoft.com/downloads/) -### Step 3 - Install the Visual Studio installer +### Step 3 - Install the Visual Studio Installer Run the bootstrapper file you downloaded to install the Visual Studio Installer. This new lightweight installer includes everything you need to both install and customize Visual Studio. -1. From your **Downloads** folder, double-click the bootstrapper that matches or is similar to one of the following files: - - - **vs_community.exe** for Visual Studio Community - - **vs_professional.exe** for Visual Studio Professional - - **vs_enterprise.exe** for Visual Studio Enterprise +1. From your *Downloads* folder, double-click the bootstrapper file called *VisualStudioSetup.exe*. If you receive a User Account Control notice, choose **Yes** to allow the bootstrapper to run. @@ -60,40 +56,40 @@ Run the bootstrapper file you downloaded to install the Visual Studio Installer. ### Step 4 - Choose workloads -After the installer is installed, you can use it to customize your installation by selecting the *workloads*, or feature sets, that you want. Here's how. +You can use the installer to customize your installation by selecting the *workloads*, or feature sets, that you want. 1. Find the workload you want in the **Installing Visual Studio** screen. - :::image type="content" source="../get-started/media/vs2022-installer-workloads.png" alt-text="Visual Studio installer with the Desktop development with C++ workload selected." lightbox="../get-started/media/vs2022-installer-workloads.png"::: - - For core C and C++ support, choose the "Desktop development with C++" workload. It comes with the default core editor, which includes basic code editing support for over 20 languages, the ability to open and edit code from any folder without requiring a project, and integrated source code control. + :::image type="content" source="../get-started/media/vs2022-installer-workloads.png" alt-text="Screenshot of the Visual Studio 2022 installer with the Desktop development with C plus plus workload selected." lightbox="../get-started/media/vs2022-installer-workloads.png"::: - Other workloads support more kinds of development. For example, choose the "Universal Windows Platform development" workload to create apps that use the Windows Runtime for the Microsoft Store. Choose "Game development with C++" to create games that use DirectX, Unreal, and Cocos2d. Choose "Linux development with C++" to target Linux platforms, including IoT development. + For core C and C++ support, choose the **Desktop development with C++** workload. It comes with the default core editor, which includes basic code editing support for more than 20 languages, the ability to open and edit code from any folder without requiring a project, and integrated source code control. The **Installation details** pane lists the included and optional components installed by each workload. You can select or deselect optional components in this list. For example, to support development by using the Visual Studio 2017 or 2015 compiler toolsets, choose the MSVC v141 or MSVC v140 optional components. You can add support for MFC, the experimental Modules language extension, IncrediBuild, and more. -1. After you choose the workload(s) and optional components you want, choose **Install**. + Other workloads support more kinds of development. For example, choose the **Universal Windows Platform development** workload to create apps that use the Windows Runtime for the Microsoft Store. Choose **Game development with C++** to create games that use DirectX, Unreal, or Cocos2d. Choose **Linux development with C++** to target Linux platforms, including IoT development. + +1. After you choose the workloads and optional components you want, choose **Install**. Next, status screens appear that show the progress of your Visual Studio installation. > [!TIP] > At any time after installation, you can install workloads or components that you didn't install initially. If you have Visual Studio open, go to **Tools** > **Get Tools and Features...** which opens the Visual Studio Installer. Or, open **Visual Studio Installer** from the Start menu. From there, you can choose the workloads or components that you wish to install. Then, choose **Modify**. -### Step 5 - Choose individual components (Optional) +### Step 5 - Choose individual components (optional) If you don't want to use the Workloads feature to customize your Visual Studio installation, or you want to add more components than a workload installs, you can do so by installing or adding individual components from the **Individual components** tab. Choose what you want, and then follow the prompts. -### Step 6 - Install language packs (Optional) +### Step 6 - Install language packs (optional) By default, the installer program tries to match the language of the operating system when it runs for the first time. To install Visual Studio in a language of your choosing, choose the **Language packs** tab from the Visual Studio Installer, and then follow the prompts. - :::image type="content" source="../get-started/media/vs-installer-language-packs.png" alt-text="Screenshot of the Visual Studio Installer, showing the Install language packs tab view and the languages you can choose from like English, Spanish, Chinese (simplified or traditional), and more." lightbox="../get-started/media/vs-installer-language-packs.png"::: + :::image type="content" source="../get-started/media/vs-installer-language-packs.png" alt-text="Screenshot of the Visual Studio Installer, showing the Install language packs tab view and the languages you can choose from like English, Spanish, Chinese (simplified or traditional)." lightbox="../get-started/media/vs-installer-language-packs.png"::: #### Change the installer language from the command line -Another way that you can change the default language is by running the installer from the command line. For example, you can force the installer to run in English by using the following command: `vs_installer.exe --locale en-US`. The installer will remember this setting when it's run the next time. The installer supports the following language tokens: zh-cn, zh-tw, cs-cz, en-us, es-es, fr-fr, de-de, it-it, ja-jp, ko-kr, pl-pl, pt-br, ru-ru, and tr-tr. +Another way that you can change the default language is by running the installer from the command line. For example, you can force the installer to run in English by using the following command: `vs_installer.exe --locale en-US`. The installer remembers this setting when it's run the next time. The installer supports the following language tokens: zh-cn, zh-tw, cs-cz, en-us, es-es, fr-fr, de-de, it-it, ja-jp, ko-kr, pl-pl, pt-br, ru-ru, and tr-tr. -### Step 7 - Change the installation location (Optional) +### Step 7 - Change the installation location (optional) You can reduce the installation footprint of Visual Studio on your system drive. You can choose to move the download cache, shared components, SDKs, and tools to different drives, and keep Visual Studio on the drive that runs it the fastest. @@ -106,9 +102,9 @@ You can reduce the installation footprint of Visual Studio on your system drive. 1. On the start window, choose **Create a new project**. -1. In the search box, enter the type of app you want to create to see a list of available templates. The list of templates depends on the workload(s) that you chose during installation. To see different templates, choose different workloads. +1. In the search box, enter the type of app you want to create to see a list of available templates. The list of templates depends on the workloads that you chose during installation. To see different templates, choose different workloads. - You can also filter your search for a specific programming language by using the **Language** drop-down list. You can filter by using the **Platform** list and the **Project type** list, too. + You can also filter your search for a specific programming language by using the **Language** dropdown list. You can filter by using the **Platform** list and the **Project type** list, too. 1. Visual Studio opens your new project, and you're ready to code! @@ -116,18 +112,18 @@ You can reduce the installation footprint of Visual Studio on your system drive. ::: moniker range="msvc-160" -## Visual Studio 2019 Installation +## Visual Studio 2019 installation -Welcome to Visual Studio 2019! In this version, it's easy to choose and install just the features you need. And because of its reduced minimum footprint, it installs quickly and with less system impact. +Welcome to Visual Studio 2019! In this version, it's easy to choose and install just the features you need. Because of its reduced minimum footprint, Visual Studio installs quickly and with less system impact. > [!NOTE] -> This topic applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com/) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, auto-completion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). +> This article applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, autocompletion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). -Want to know more about what else is new in this version? See the Visual Studio [release notes](/visualstudio/releases/2019/release-notes/). +To learn about what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2019/release-notes/). -Ready to install? We walk you through it, step-by-step. +Ready to install? Use the following step-by-step guide. -### Step 1 - Make sure your computer is ready for Visual Studio +### Step 1 - Prepare your computer for Visual Studio Before you begin installing Visual Studio: @@ -135,28 +131,24 @@ Before you begin installing Visual Studio: 1. Apply the latest Windows updates. These updates ensure that your computer has both the latest security updates and the required system components for Visual Studio. -1. Reboot. The reboot ensures that any pending installs or updates don't hinder the Visual Studio install. +1. Reboot your computer. The reboot ensures that any pending installs or updates don't hinder the Visual Studio install. -1. Free up space. Remove unneeded files and applications from your %SystemDrive% by, for example, running the Disk Cleanup app. +1. Free up disk space. Remove unneeded files and applications from your %SystemDrive% by, for example, running the Disk Cleanup app. For questions about running previous versions of Visual Studio side by side with Visual Studio 2019, see the [Visual Studio 2019 Platform Targeting and Compatibility](/visualstudio/releases/2019/compatibility/) page. ### Step 2 - Download Visual Studio -Next, download the Visual Studio bootstrapper file. To do so, choose the following button to go to the Visual Studio download page. Choose the Download button, then you can select the edition of Visual Studio that you want. +Select the following button to go to the Visual Studio older downloads page, and download the Visual Studio 2019 bootstrapper file. > [!div class="button"] > [Download Visual Studio 2019](https://visualstudio.microsoft.com/vs/older-downloads/#visual-studio-2019-and-other-products) -### Step 3 - Install the Visual Studio installer +### Step 3 - Install the Visual Studio Installer Run the bootstrapper file you downloaded to install the Visual Studio Installer. This new lightweight installer includes everything you need to both install and customize Visual Studio. -1. From your **Downloads** folder, double-click the bootstrapper that matches or is similar to one of the following files: - - - **vs_community.exe** for Visual Studio Community - - **vs_professional.exe** for Visual Studio Professional - - **vs_enterprise.exe** for Visual Studio Enterprise +1. From your *Downloads* folder, double-click the bootstrapper file. If you receive a User Account Control notice, choose **Yes** to allow the bootstrapper to run. @@ -164,46 +156,46 @@ Run the bootstrapper file you downloaded to install the Visual Studio Installer. ### Step 4 - Choose workloads -After the installer is installed, you can use it to customize your installation by selecting the *workloads*, or feature sets, that you want. Here's how. +You can use the installer to customize your installation by selecting the *workloads*, or feature sets, that you want. 1. Find the workload you want in the **Installing Visual Studio** screen. - ![Visual Studio 2019: Install a workload.](../get-started/media/vs-installer-workloads.png) + :::image type="content" source="../get-started/media/vs-installer-workloads.png" alt-text="Screenshot of the Visual Studio 2019 installer." lightbox="../get-started/media/vs-installer-workloads.png"::: - For core C and C++ support, choose the "Desktop development with C++" workload. It comes with the default core editor, which includes basic code editing support for over 20 languages, the ability to open and edit code from any folder without requiring a project, and integrated source code control. - - Other workloads support more kinds of development. For example, choose the "Universal Windows Platform development" workload to create apps that use the Windows Runtime for the Microsoft Store. Choose "Game development with C++" to create games that use DirectX, Unreal, and Cocos2d. Choose "Linux development with C++" to target Linux platforms, including IoT development. + For core C and C++ support, choose the **Desktop development with C++** workload. It comes with the default core editor, which includes basic code editing support for over 20 languages, the ability to open and edit code from any folder without requiring a project, and integrated source code control. The **Installation details** pane lists the included and optional components installed by each workload. You can select or deselect optional components in this list. For example, to support development by using the Visual Studio 2017 or 2015 compiler toolsets, choose the MSVC v141 or MSVC v140 optional components. You can add support for MFC, the experimental Modules language extension, IncrediBuild, and more. -1. After you choose the workload(s) and optional components you want, choose **Install**. + Other workloads support more kinds of development. For example, choose the **Universal Windows Platform development** workload to create apps that use the Windows Runtime for the Microsoft Store. Choose **Game development with C++** to create games that use DirectX, Unreal, and Cocos2d. Choose **Linux development with C++** to target Linux platforms, including IoT development. + +1. After you choose the workloads and optional components you want, choose **Install**. Next, status screens appear that show the progress of your Visual Studio installation. > [!TIP] > At any time after installation, you can install workloads or components that you didn't install initially. If you have Visual Studio open, go to **Tools** > **Get Tools and Features...** which opens the Visual Studio Installer. Or, open **Visual Studio Installer** from the Start menu. From there, you can choose the workloads or components that you wish to install. Then, choose **Modify**. -### Step 5 - Choose individual components (Optional) +### Step 5 - Choose individual components (optional) -If you don't want to use the Workloads feature to customize your Visual Studio installation, or you want to add more components than a workload installs, you can do so by installing or adding individual components from the **Individual components** tab. Choose what you want, and then follow the prompts. +If you don't want to use the Workloads feature to customize your Visual Studio installation, or if you want to add more components than a workload installs, you can do so by installing or adding individual components from the **Individual components** tab. Choose what you want, and then follow the prompts. - ![Screenshot of the Visual Studio Installer, showing the Install individual components tab view.](../get-started/media/vs-installer-individual-components.png "Install Visual Studio individual components") +:::image type="content" source="../get-started/media/vs-installer-individual-components.png" alt-text="Screenshot of the Visual Studio Installer, showing the Install individual components tab view." lightbox="../get-started/media/vs-installer-individual-components.png"::: -### Step 6 - Install language packs (Optional) +### Step 6 - Install language packs (optional) By default, the installer program tries to match the language of the operating system when it runs for the first time. To install Visual Studio in a language of your choosing, choose the **Language packs** tab from the Visual Studio Installer, and then follow the prompts. - ![Screenshot of the Visual Studio Installer, showing the Install language packs tab view.](../get-started/media/vs-installer-language-packs.png "Install Visual Studio language packs") +:::image type="content" source="../get-started/media/vs-installer-language-packs.png" alt-text="Screenshot of the Visual Studio Installer, showing the Install language packs tab view." lightbox="../get-started/media/vs-installer-language-packs.png"::: #### Change the installer language from the command line Another way that you can change the default language is by running the installer from the command line. For example, you can force the installer to run in English by using the following command: `vs_installer.exe --locale en-US`. The installer will remember this setting when it's run the next time. The installer supports the following language tokens: zh-cn, zh-tw, cs-cz, en-us, es-es, fr-fr, de-de, it-it, ja-jp, ko-kr, pl-pl, pt-br, ru-ru, and tr-tr. -### Step 7 - Change the installation location (Optional) +### Step 7 - Change the installation location (optional) You can reduce the installation footprint of Visual Studio on your system drive. You can choose to move the download cache, shared components, SDKs, and tools to different drives, and keep Visual Studio on the drive that runs it the fastest. - ![Screenshot of the Visual Studio Installer, showing the installation locations tab view.](../get-started/media/vs-installer-installation-locations.png "Change the installation location") +:::image type="content" source="../get-started/media/vs-installer-installation-locations.png" alt-text="Screenshot of the Visual Studio Installer, showing the installation locations tab view." lightbox="../get-started/media/vs-installer-installation-locations.png"::: > [!IMPORTANT] > You can select a different drive only when you first install Visual Studio. If you've already installed it and want to change drives, you must uninstall Visual Studio and then reinstall it. @@ -214,9 +206,9 @@ You can reduce the installation footprint of Visual Studio on your system drive. 1. On the start window, choose **Create a new project**. -1. In the search box, enter the type of app you want to create to see a list of available templates. The list of templates depends on the workload(s) that you chose during installation. To see different templates, choose different workloads. +1. In the search box, enter the type of app you want to create to see a list of available templates. The list of templates depends on the workloads that you chose during installation. To see different templates, choose different workloads. - You can also filter your search for a specific programming language by using the **Language** drop-down list. You can filter by using the **Platform** list and the **Project type** list, too. + You can also filter your search for a specific programming language by using the **Language** dropdown list. You can filter by using the **Platform** list and the **Project type** list, too. 1. Visual Studio opens your new project, and you're ready to code! @@ -224,14 +216,12 @@ You can reduce the installation footprint of Visual Studio on your system drive. ::: moniker range="msvc-150" -## Visual Studio 2017 Installation +## Visual Studio 2017 installation -In Visual Studio 2017, it's easy to choose and install just the features you need. And because of its reduced minimum footprint, it installs quickly and with less system impact. +In Visual Studio 2017, it's easy to choose and install just the features you need. Because of its reduced minimum footprint, it installs quickly and with less system impact. ### Prerequisites -- A broadband internet connection. The Visual Studio installer can download several gigabytes of data. - - A computer that runs Microsoft Windows 7 or later versions. We recommend the latest version of Windows for the best development experience. Make sure that the latest updates are applied to your system before you install Visual Studio. - Enough free disk space. Visual Studio requires at least 7 GB of disk space, and can take 50 GB or more if many common options are installed. We recommend you install it on your C: drive. @@ -240,22 +230,19 @@ For details on the disk space and operating system requirements, see [Visual Stu ### Download and install -1. To download the latest Visual Studio 2017 installer for Windows, go to the Microsoft Visual Studio [Older downloads](https://visualstudio.microsoft.com/vs/older-downloads/#visual-studio-2017-and-other-products) page. Expand the **2017** section, and choose the **Download** button. - - >[!Tip] - > The Community edition is for individual developers, classroom learning, academic research, and open source development. For other uses, install Visual Studio 2017 Professional or Visual Studio 2017 Enterprise. +1. To download the Visual Studio 2017 installer for Windows, go to the Visual Studio [older downloads](https://visualstudio.microsoft.com/vs/older-downloads/#visual-studio-2017-and-other-products) page. Expand the **2017** section, and choose the **Download** button. -1. Find the installer file you downloaded and run it. The downloaded file might be displayed in your browser, or you might find it in your Downloads folder. The installer needs Administrator privileges to run. You might see a **User Account Control** dialog asking you to give permission to let the installer make changes to your system; choose **Yes**. If you're having trouble, find the downloaded file in File Explorer, right-click on the installer icon, and choose **Run as Administrator** from the context menu. +1. Find the installer file you downloaded and run it. The downloaded file might be displayed in your browser, or you might find it in your *Downloads* folder. The installer needs Administrator privileges to run. You might see a **User Account Control** dialog asking you to give permission to let the installer make changes to your system; choose **Yes**. If you're having trouble, find the downloaded file in File Explorer, right-click on the installer icon, and choose **Run as Administrator** from the context menu. - ![What you see when you download and install the Visual Studio Installer.](media/vscpp-concierge-run-installer.gif "Download and install the Visual Studio Installer") + :::image type="content" source="media/vscpp-concierge-run-installer.gif" alt-text="Animation that shows the Visual Studio Installer."::: 1. The installer presents you with a list of workloads, which are groups of related options for specific development areas. Support for C++ is now part of optional workloads that aren't installed by default. - ![Detail showing the Desktop development with C++ workload.](media/desktop-development-with-cpp.png "Desktop development with C++") + :::image type="content" source="media/desktop-development-with-cpp.png" alt-text="Screenshot showing the Desktop development with C plus plus workload."::: For C and C++, select the **Desktop development with C++** workload and then choose **Install**. - ![What you see when you select the Desktop development with C++ workload then choose the Install button.](media/vscpp-concierge-choose-workload.gif "Install the Desktop development with C++ workload") + :::image type="content" source="media/vscpp-concierge-choose-workload.gif" alt-text="Animation that shows the Desktop development with C plus plus workload then choose the Install button."::: 1. When the installation completes, choose the **Launch** button to start Visual Studio. @@ -265,7 +252,7 @@ For details on the disk space and operating system requirements, see [Visual Stu 1. When Visual Studio opens, check to see if the flag icon in the title bar is highlighted: - ![Visual Studio notification flag.](media/vscpp-first-start-page-flag.png "Visual Studio 2017 notification flag") + :::image type="content" source="media/vscpp-first-start-page-flag.png" alt-text="Screenshot of the Visual Studio notification flag."::: If it's highlighted, select it to open the **Notifications** window. If there are any updates available for Visual Studio, we recommend you install them now. Once the installation is complete, restart Visual Studio. @@ -273,9 +260,9 @@ For details on the disk space and operating system requirements, see [Visual Stu ::: moniker range=" [!div class="nextstepaction"] -> [Create a C++ project](vscpp-step-1-create.md) +> [Create a C++ console app project](vscpp-step-1-create.md) From e2e1bbd5745033b36b44c5871e16bee7b2f4cd22 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 16 Mar 2025 18:25:06 +0800 Subject: [PATCH 045/981] Remove more stray trailing escapes --- docs/assembler/masm/dot-code.md | 2 +- docs/build/reference/arch-arm64.md | 2 +- ...le-generate-profiling-instrumented-build.md | 2 +- docs/build/reference/zc-tlsguards.md | 2 +- .../reference/log-logf-log10-log10f.md | 2 +- .../strrchr-wcsrchr-mbsrchr-mbsrchr-l.md | 2 +- docs/code-quality/c28196.md | 2 +- docs/mfc/reference/cdockablepane-class.md | 2 +- .../reference/cmfcpropertygridctrl-class.md | 16 ++++++++-------- .../cmfcpropertygridproperty-class.md | 6 +++--- docs/mfc/reference/cmfcribbonbar-class.md | 6 +++--- docs/mfc/reference/cmfctoolbar-class.md | 18 +++++++++--------- docs/mfc/reference/cwinappex-class.md | 2 +- docs/standard-library/unordered-map-class.md | 2 +- 14 files changed, 33 insertions(+), 33 deletions(-) diff --git a/docs/assembler/masm/dot-code.md b/docs/assembler/masm/dot-code.md index 0a87ecdd4c..00d75a8d7c 100644 --- a/docs/assembler/masm/dot-code.md +++ b/docs/assembler/masm/dot-code.md @@ -16,7 +16,7 @@ When using 32-bit MASM, this should be used along with [.MODEL](dot-model.md). > **.CODE** ⟦*name*⟧\ > ⟦ *segmentItem* ⟧...\ -> ⟦ *codesegmentnameId* **ENDS**;;⟧\ +> ⟦ *codesegmentnameId* **ENDS**;;⟧ ### Parameters diff --git a/docs/build/reference/arch-arm64.md b/docs/build/reference/arch-arm64.md index dd54dee205..d3eef64f57 100644 --- a/docs/build/reference/arch-arm64.md +++ b/docs/build/reference/arch-arm64.md @@ -27,7 +27,7 @@ You can specify an ARM64 extension from Armv8.0-A through Armv8.9-A, and Armv9.0 > [!NOTE] > Depending on your version of Visual Studio, the compiler may not yet generate instructions from all feature sets required by the extension level you specify. For example, **`/arch:armv8.1`** allows the `*Interlocked*` intrinsic functions to use the appropriate atomic instruction introduced with the Armv8.1-A extension feature `FEAT_LSE`, but compiler support requires Visual Studio 2022 version 17.2 or later. -The `_M_ARM64` macro is defined by default when compiling for an ARM64 target. For more information, see [Predefined macros](../../preprocessor/predefined-macros.md)\ +The `_M_ARM64` macro is defined by default when compiling for an ARM64 target. For more information, see [Predefined macros](../../preprocessor/predefined-macros.md). The `__ARM_ARCH` macro is defined for `/arch:ARMv8.0` and higher. It indicates the ARM architecture extension level that the compiler is targeting. For more information, see [Predefined macros](../../preprocessor/predefined-macros.md). diff --git a/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md b/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md index e77bc2bfd9..0f0c9175a7 100644 --- a/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md +++ b/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md @@ -12,7 +12,7 @@ Specifies generation of a *`.pgd`* file by the linker to support profile-guided ## Syntax > **`/GENPROFILE`**\[**`:`**_`profile-argument`_\[**`,`**_`profile-argument`_ ...]]\ -> **`/FASTGENPROFILE`**\[**`:`**_`profile-argument`_\[**`,`**_`profile-argument`_ ...]]\ +> **`/FASTGENPROFILE`**\[**`:`**_`profile-argument`_\[**`,`**_`profile-argument`_ ...]] > *`profile-argument`*\ >  { **`COUNTER32`** | **`COUNTER64`** }\ diff --git a/docs/build/reference/zc-tlsguards.md b/docs/build/reference/zc-tlsguards.md index dfaf7ff2d0..60d7174224 100644 --- a/docs/build/reference/zc-tlsguards.md +++ b/docs/build/reference/zc-tlsguards.md @@ -29,4 +29,4 @@ The **`/Zc:tlsGuards`** option is new in Visual Studio 2019 version 16.5. This o ## See also -[`/Zc` (Conformance)](zc-conformance.md)\ +[`/Zc` (Conformance)](zc-conformance.md) diff --git a/docs/c-runtime-library/reference/log-logf-log10-log10f.md b/docs/c-runtime-library/reference/log-logf-log10-log10f.md index 475f466870..812a0c3f58 100644 --- a/docs/c-runtime-library/reference/log-logf-log10-log10f.md +++ b/docs/c-runtime-library/reference/log-logf-log10-log10f.md @@ -127,4 +127,4 @@ Log base 2 of 65536.000000 is 16.000000 [`_matherr`](matherr.md) \ [`pow`, `powf`, `powl`](pow-powf-powl.md) \ [`_CIlog`](../cilog.md) \ -[`_CIlog10`](../cilog10.md)\ +[`_CIlog10`](../cilog10.md) diff --git a/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md b/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md index 90ada77650..1909542e81 100644 --- a/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md +++ b/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md @@ -131,4 +131,4 @@ For an example of using **`strrchr`**, see [`strchr`](strchr-wcschr-mbschr-mbsch [`strcspn`, `wcscspn`, `_mbscspn`, `_mbscspn_l`](strcspn-wcscspn-mbscspn-mbscspn-l.md)\ [`_strnicmp`, `_wcsnicmp`, `_mbsnicmp`, `_strnicmp_l`, `_wcsnicmp_l`, `_mbsnicmp_l`](strnicmp-wcsnicmp-mbsnicmp-strnicmp-l-wcsnicmp-l-mbsnicmp-l.md)\ [`strpbrk`, `wcspbrk`, `_mbspbrk`, `_mbspbrk_l`](strpbrk-wcspbrk-mbspbrk-mbspbrk-l.md)\ -[`strspn`, `wcsspn`, `_mbsspn`, `_mbsspn_l`](strspn-wcsspn-mbsspn-mbsspn-l.md)\ +[`strspn`, `wcsspn`, `_mbsspn`, `_mbsspn_l`](strspn-wcsspn-mbsspn-mbsspn-l.md) diff --git a/docs/code-quality/c28196.md b/docs/code-quality/c28196.md index 4bd26b4162..cfe6b8789d 100644 --- a/docs/code-quality/c28196.md +++ b/docs/code-quality/c28196.md @@ -51,4 +51,4 @@ Item *get_item(_In_reads_(len) Item *items, size_t len, size_t index) { ## See also [Annotating function parameters and return values](./annotating-function-parameters-and-return-values.md)\ -[Specifying When and Where an Annotation Applies](./specifying-when-and-where-an-annotation-applies.md)\ +[Specifying When and Where an Annotation Applies](./specifying-when-and-where-an-annotation-applies.md) diff --git a/docs/mfc/reference/cdockablepane-class.md b/docs/mfc/reference/cdockablepane-class.md index de861c46d4..7b65d85589 100644 --- a/docs/mfc/reference/cdockablepane-class.md +++ b/docs/mfc/reference/cdockablepane-class.md @@ -1201,7 +1201,7 @@ virtual void OnAfterChangeParent(CWnd* pWndOldParent); ### Parameters -[in] *`pWndOldParent`*\ +[in] *`pWndOldParent`* ### Remarks diff --git a/docs/mfc/reference/cmfcpropertygridctrl-class.md b/docs/mfc/reference/cmfcpropertygridctrl-class.md index 319ba89f9d..26f2a30642 100644 --- a/docs/mfc/reference/cmfcpropertygridctrl-class.md +++ b/docs/mfc/reference/cmfcpropertygridctrl-class.md @@ -179,7 +179,7 @@ virtual HRESULT accSelect( ### Parameters [in] *`flagsSelect`*\ -[in] *`varChild`*\ +[in] *`varChild`* ### Return Value @@ -235,7 +235,7 @@ void AlwaysShowUserToolTip(BOOL bShow = TRUE); ### Parameters -[in] *`bShow`*\ +[in] *`bShow`* ### Remarks @@ -524,7 +524,7 @@ virtual HRESULT get_accChildCount(long* pcountChildren); ### Parameters -[in] *`pcountChildren`*\ +[in] *`pcountChildren`* ### Return Value @@ -538,7 +538,7 @@ virtual HRESULT get_accFocus(VARIANT* pvarChild); ### Parameters -[in] *`pvarChild`*\ +[in] *`pvarChild`* ### Return Value @@ -555,7 +555,7 @@ virtual HRESULT get_accHelp( ### Parameters [in] *`varChild`*\ -[in] *`pszHelp`*\ +[in] *`pszHelp`* ### Return Value @@ -574,7 +574,7 @@ virtual HRESULT get_accHelpTopic( [in] *`pszHelpFile`*\ [in] *`varChild`*\ -[in] *`pidTopic`*\ +[in] *`pidTopic`* ### Return Value @@ -591,7 +591,7 @@ virtual HRESULT get_accKeyboardShortcut( ### Parameters [in] *`varChild`*\ -[in] *`pszKeyboardShortcut`*\ +[in] *`pszKeyboardShortcut`* ### Return Value @@ -605,7 +605,7 @@ virtual HRESULT get_accSelection(VARIANT* pvarChildren); ### Parameters -[in] *`pvarChildren`*\ +[in] *`pvarChildren`* ### Return Value diff --git a/docs/mfc/reference/cmfcpropertygridproperty-class.md b/docs/mfc/reference/cmfcpropertygridproperty-class.md index 31a00e36f8..e5f8a837ed 100644 --- a/docs/mfc/reference/cmfcpropertygridproperty-class.md +++ b/docs/mfc/reference/cmfcpropertygridproperty-class.md @@ -1169,7 +1169,7 @@ virtual void OnKillSelection(CMFCPropertyGridProperty*); ### Parameters -[in] *`CMFCPropertyGridProperty*`*\ +[in] *`CMFCPropertyGridProperty*`* ### Remarks @@ -1183,7 +1183,7 @@ virtual void OnPosSizeChanged(CRect); ### Parameters -[in] *`CRect`*\ +[in] *`CRect`* ### Remarks @@ -1264,7 +1264,7 @@ virtual void OnSetSelection CMFCPropertyGridProperty*); ### Parameters -[in] *`CMFCPropertyGridProperty*`*\ +[in] *`CMFCPropertyGridProperty*`* ### Remarks diff --git a/docs/mfc/reference/cmfcribbonbar-class.md b/docs/mfc/reference/cmfcribbonbar-class.md index f3a5d7895e..b3ec1757ee 100644 --- a/docs/mfc/reference/cmfcribbonbar-class.md +++ b/docs/mfc/reference/cmfcribbonbar-class.md @@ -1304,7 +1304,7 @@ virtual void OnEditContextMenu( ### Parameters [in] *`pEdit`*\ -[in] *`point`*\ +[in] *`point`* ### Remarks @@ -1359,7 +1359,7 @@ virtual BOOL OnShowRibbonContextMenu( [in] *`pWnd`*\ [in] *`x`*\ [in] *`y`*\ -[in] *`pHit`*\ +[in] *`pHit`* ### Return Value @@ -1380,7 +1380,7 @@ virtual BOOL OnShowRibbonQATMenu( [in] *`pWnd`*\ [in] *`x`*\ [in] *`y`*\ -[in] *`pHit`*\ +[in] *`pHit`* ### Return Value diff --git a/docs/mfc/reference/cmfctoolbar-class.md b/docs/mfc/reference/cmfctoolbar-class.md index 236254137a..bfba798f1d 100644 --- a/docs/mfc/reference/cmfctoolbar-class.md +++ b/docs/mfc/reference/cmfctoolbar-class.md @@ -2303,7 +2303,7 @@ virtual BOOL LoadBitmapEx( ### Parameters [in] *`params`*\ -[in] *`bLocked`*\ +[in] *`bLocked`* ### Return Value @@ -2317,7 +2317,7 @@ static BOOL __stdcall LoadLargeIconsState(LPCTSTR lpszProfileName = NULL); ### Parameters -[in] *`lpszProfileName`*\ +[in] *`lpszProfileName`* ### Return Value @@ -2577,7 +2577,7 @@ virtual BOOL OnSetAccData(long lVal); ### Parameters -[in] *`lVal`*\ +[in] *`lVal`* ### Return Value @@ -2837,7 +2837,7 @@ static BOOL __stdcall SaveParameters(LPCTSTR lpszProfileName = NULL); ### Parameters -[in] *`lpszProfileName`*\ +[in] *`lpszProfileName`* ### Return Value @@ -3099,7 +3099,7 @@ static void __stdcall SetHelpMode(BOOL bOn = TRUE); ### Parameters -[in] *`bOn`*\ +[in] *`bOn`* ### Remarks @@ -3111,7 +3111,7 @@ BOOL SetHot(CMFCToolBarButton* pMenuButton); ### Parameters -[in] *`pMenuButton`*\ +[in] *`pMenuButton`* ### Return Value @@ -3161,7 +3161,7 @@ void SetIgnoreSetText(BOOL bValue); ### Parameters -[in] *`bValue`*\ +[in] *`bValue`* ### Remarks @@ -3222,7 +3222,7 @@ void SetMaskMode(BOOL bMasked); ### Parameters -[in] *`bMasked`*\ +[in] *`bMasked`* ### Remarks @@ -3295,7 +3295,7 @@ void SetOrigButtons(const CObList& lstOrigButtons); ### Parameters -[in] *`lstOrigButtons`*\ +[in] *`lstOrigButtons`* ### Remarks diff --git a/docs/mfc/reference/cwinappex-class.md b/docs/mfc/reference/cwinappex-class.md index d9c7ac4fad..85b0987718 100644 --- a/docs/mfc/reference/cwinappex-class.md +++ b/docs/mfc/reference/cwinappex-class.md @@ -970,7 +970,7 @@ virtual BOOL OnWorkspaceIdle(CWnd*); ### Parameters -[in] *`CWnd*`*\ +[in] *`CWnd*`* ### Return Value diff --git a/docs/standard-library/unordered-map-class.md b/docs/standard-library/unordered-map-class.md index 90f5e8ac49..09b5dab2fe 100644 --- a/docs/standard-library/unordered-map-class.md +++ b/docs/standard-library/unordered-map-class.md @@ -2781,4 +2781,4 @@ int main() ## See also [``](../standard-library/unordered-map.md)\ -[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)\ +[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md) From 15002b6ca1cdcede241d19d3bf267b6523ee4c82 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 16 Mar 2025 18:28:57 +0800 Subject: [PATCH 046/981] Clean up a bunch of articles --- docs/assembler/masm/dot-code.md | 3 +-- docs/build/reference/arch-arm64.md | 2 +- ...genprofile-generate-profiling-instrumented-build.md | 2 +- docs/build/reference/zc-tlsguards.md | 2 +- .../reference/log-logf-log10-log10f.md | 10 +++++----- .../reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md | 2 +- docs/code-quality/c28196.md | 3 +-- docs/mfc/reference/cmfcpropertygridctrl-class.md | 3 +-- docs/mfc/reference/cmfcpropertygridproperty-class.md | 2 +- docs/mfc/reference/cmfctoolbar-class.md | 2 +- docs/standard-library/unordered-map-class.md | 1 - 11 files changed, 14 insertions(+), 18 deletions(-) diff --git a/docs/assembler/masm/dot-code.md b/docs/assembler/masm/dot-code.md index 00d75a8d7c..9bf447e91b 100644 --- a/docs/assembler/masm/dot-code.md +++ b/docs/assembler/masm/dot-code.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: .CODE" title: ".CODE" +description: "Learn more about: .CODE" ms.date: "12/17/2019" f1_keywords: [".CODE"] helpviewer_keywords: [".CODE directive"] -ms.assetid: 2b8c882c-c0d2-4fa3-8335-e6b12717a4f4 --- # .CODE diff --git a/docs/build/reference/arch-arm64.md b/docs/build/reference/arch-arm64.md index d3eef64f57..fa55e9e7aa 100644 --- a/docs/build/reference/arch-arm64.md +++ b/docs/build/reference/arch-arm64.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: /arch (ARM64)" title: "/arch (ARM64)" +description: "Learn more about: /arch (ARM64)" ms.date: 05/24/2024 --- # `/arch` (ARM64) diff --git a/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md b/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md index 0f0c9175a7..de78ee85a7 100644 --- a/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md +++ b/docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: /GENPROFILE, /FASTGENPROFILE (Generate Profiling Instrumented Build)" title: "/GENPROFILE, /FASTGENPROFILE (Generate Profiling Instrumented Build)" +description: "Learn more about: /GENPROFILE, /FASTGENPROFILE (Generate Profiling Instrumented Build)" ms.date: 04/14/2021 f1_keywords: ["GENPROFILE", "FASTGENPROFILE", "/GENPROFILE", "/FASTGENPROFILE"] helpviewer_keywords: ["GENPROFILE", "FASTGENPROFILE"] diff --git a/docs/build/reference/zc-tlsguards.md b/docs/build/reference/zc-tlsguards.md index 60d7174224..15c36abf13 100644 --- a/docs/build/reference/zc-tlsguards.md +++ b/docs/build/reference/zc-tlsguards.md @@ -1,6 +1,6 @@ --- -description: "Learn more about the /Zc:tlsGuards (Check TLS initialization) compiler option." title: "/Zc:tlsGuards (Check TLS initialization)" +description: "Learn more about the /Zc:tlsGuards (Check TLS initialization) compiler option." ms.date: 11/08/2022 f1_keywords: ["/Zc:tlsGuards"] helpviewer_keywords: ["-Zc:tlsGuards compiler option (C++)", "/Zc:tlsGuards compiler option (C++)"] diff --git a/docs/c-runtime-library/reference/log-logf-log10-log10f.md b/docs/c-runtime-library/reference/log-logf-log10-log10f.md index 812a0c3f58..4ff277f7b0 100644 --- a/docs/c-runtime-library/reference/log-logf-log10-log10f.md +++ b/docs/c-runtime-library/reference/log-logf-log10-log10f.md @@ -122,9 +122,9 @@ Log base 2 of 65536.000000 is 16.000000 ## See also -[Math and floating-point support](../floating-point-support.md) \ -[`exp`, `expf`, `expl`](exp-expf.md) \ -[`_matherr`](matherr.md) \ -[`pow`, `powf`, `powl`](pow-powf-powl.md) \ -[`_CIlog`](../cilog.md) \ +[Math and floating-point support](../floating-point-support.md)\ +[`exp`, `expf`, `expl`](exp-expf.md)\ +[`_matherr`](matherr.md)\ +[`pow`, `powf`, `powl`](pow-powf-powl.md)\ +[`_CIlog`](../cilog.md)\ [`_CIlog10`](../cilog10.md) diff --git a/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md b/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md index 1909542e81..9c8d760c68 100644 --- a/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md +++ b/docs/c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: strrchr, wcsrchr, _mbsrchr, _mbsrchr_l" title: "strrchr, wcsrchr, _mbsrchr, _mbsrchr_l" +description: "Learn more about: strrchr, wcsrchr, _mbsrchr, _mbsrchr_l" ms.date: "4/2/2020" api_name: ["strrchr", "wcsrchr", "_mbsrchr", "_mbsrchr_l", "_o__mbsrchr", "_o__mbsrchr_l"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ntdll.dll", "ucrtbase.dll", "api-ms-win-crt-multibyte-l1-1-0.dll", "ntoskrnl.exe"] diff --git a/docs/code-quality/c28196.md b/docs/code-quality/c28196.md index cfe6b8789d..388766230a 100644 --- a/docs/code-quality/c28196.md +++ b/docs/code-quality/c28196.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Warning C28196" title: Warning C28196 +description: "Learn more about: Warning C28196" ms.date: 11/04/2016 f1_keywords: ["C28196", "RETURNING_BAD_RESULT", "__WARNING_RETURNING_BAD_RESULT"] helpviewer_keywords: ["C28196"] -ms.assetid: 5ee89e96-2796-4316-a64c-702463ca1374 --- # Warning C28196 diff --git a/docs/mfc/reference/cmfcpropertygridctrl-class.md b/docs/mfc/reference/cmfcpropertygridctrl-class.md index 26f2a30642..585e3e775f 100644 --- a/docs/mfc/reference/cmfcpropertygridctrl-class.md +++ b/docs/mfc/reference/cmfcpropertygridctrl-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CMFCPropertyGridCtrl Class" title: "CMFCPropertyGridCtrl Class" +description: "Learn more about: CMFCPropertyGridCtrl Class" ms.date: "11/19/2018" f1_keywords: ["CMFCPropertyGridCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::CMFCPropertyGridCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::accSelect", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::AddProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::AlwaysShowUserToolTip", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::CloseColorPopup", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::Create", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::DeleteProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::DrawControlBarColors", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::EnableDescriptionArea", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::EnableHeaderCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::EnsureVisible", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::ExpandAll", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::FindItemByData", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accChildCount", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accFocus", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accHelp", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accHelpTopic", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accKeyboardShortcut", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::get_accSelection", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetBkColor", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetBoldFont", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetCurSel", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetCustomColors", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetDescriptionHeight", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetDescriptionRows", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetHeaderCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetHeaderHeight", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetLeftColumnWidth", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetListRect", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetPropertyColumnWidth", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetPropertyCount", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetRowHeight", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetScrollBarCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::GetTextColor", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::HitTest", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::InitHeader", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsAlphabeticMode", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsAlwaysShowUserToolTip", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsDescriptionArea", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsGroupNameFullWidth", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsHeaderCtrl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsMarkModifiedProperties", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsShowDragContext", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::IsVSDotNetLook", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::MarkModifiedProperties", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::RemoveAll", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::ResetOriginalValues", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetAlphabeticMode", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetBoolLabels", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetCurSel", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetCustomColors", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetDescriptionRows", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetGroupNameFullWidth", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetListDelimiter", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetShowDragContext", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::SetVSDotNetLook", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::UpdateColor", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::AdjustLayout", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::CompareProps", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::EditItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::EndEditItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::Init", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnChangeSelection", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnClickButton", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnDrawBorder", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnDrawDescription", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnDrawList", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnDrawProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnPropertyChanged", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::OnSelectCombo", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridCtrl::ValidateItemData"] helpviewer_keywords: ["CMFCPropertyGridCtrl [MFC], CMFCPropertyGridCtrl", "CMFCPropertyGridCtrl [MFC], accSelect", "CMFCPropertyGridCtrl [MFC], AddProperty", "CMFCPropertyGridCtrl [MFC], AlwaysShowUserToolTip", "CMFCPropertyGridCtrl [MFC], CloseColorPopup", "CMFCPropertyGridCtrl [MFC], Create", "CMFCPropertyGridCtrl [MFC], DeleteProperty", "CMFCPropertyGridCtrl [MFC], DrawControlBarColors", "CMFCPropertyGridCtrl [MFC], EnableDescriptionArea", "CMFCPropertyGridCtrl [MFC], EnableHeaderCtrl", "CMFCPropertyGridCtrl [MFC], EnsureVisible", "CMFCPropertyGridCtrl [MFC], ExpandAll", "CMFCPropertyGridCtrl [MFC], FindItemByData", "CMFCPropertyGridCtrl [MFC], get_accChildCount", "CMFCPropertyGridCtrl [MFC], get_accFocus", "CMFCPropertyGridCtrl [MFC], get_accHelp", "CMFCPropertyGridCtrl [MFC], get_accHelpTopic", "CMFCPropertyGridCtrl [MFC], get_accKeyboardShortcut", "CMFCPropertyGridCtrl [MFC], get_accSelection", "CMFCPropertyGridCtrl [MFC], GetBkColor", "CMFCPropertyGridCtrl [MFC], GetBoldFont", "CMFCPropertyGridCtrl [MFC], GetCurSel", "CMFCPropertyGridCtrl [MFC], GetCustomColors", "CMFCPropertyGridCtrl [MFC], GetDescriptionHeight", "CMFCPropertyGridCtrl [MFC], GetDescriptionRows", "CMFCPropertyGridCtrl [MFC], GetHeaderCtrl", "CMFCPropertyGridCtrl [MFC], GetHeaderHeight", "CMFCPropertyGridCtrl [MFC], GetLeftColumnWidth", "CMFCPropertyGridCtrl [MFC], GetListRect", "CMFCPropertyGridCtrl [MFC], GetProperty", "CMFCPropertyGridCtrl [MFC], GetPropertyColumnWidth", "CMFCPropertyGridCtrl [MFC], GetPropertyCount", "CMFCPropertyGridCtrl [MFC], GetRowHeight", "CMFCPropertyGridCtrl [MFC], GetScrollBarCtrl", "CMFCPropertyGridCtrl [MFC], GetTextColor", "CMFCPropertyGridCtrl [MFC], HitTest", "CMFCPropertyGridCtrl [MFC], InitHeader", "CMFCPropertyGridCtrl [MFC], IsAlphabeticMode", "CMFCPropertyGridCtrl [MFC], IsAlwaysShowUserToolTip", "CMFCPropertyGridCtrl [MFC], IsDescriptionArea", "CMFCPropertyGridCtrl [MFC], IsGroupNameFullWidth", "CMFCPropertyGridCtrl [MFC], IsHeaderCtrl", "CMFCPropertyGridCtrl [MFC], IsMarkModifiedProperties", "CMFCPropertyGridCtrl [MFC], IsShowDragContext", "CMFCPropertyGridCtrl [MFC], IsVSDotNetLook", "CMFCPropertyGridCtrl [MFC], MarkModifiedProperties", "CMFCPropertyGridCtrl [MFC], RemoveAll", "CMFCPropertyGridCtrl [MFC], ResetOriginalValues", "CMFCPropertyGridCtrl [MFC], SetAlphabeticMode", "CMFCPropertyGridCtrl [MFC], SetBoolLabels", "CMFCPropertyGridCtrl [MFC], SetCurSel", "CMFCPropertyGridCtrl [MFC], SetCustomColors", "CMFCPropertyGridCtrl [MFC], SetDescriptionRows", "CMFCPropertyGridCtrl [MFC], SetGroupNameFullWidth", "CMFCPropertyGridCtrl [MFC], SetListDelimiter", "CMFCPropertyGridCtrl [MFC], SetShowDragContext", "CMFCPropertyGridCtrl [MFC], SetVSDotNetLook", "CMFCPropertyGridCtrl [MFC], UpdateColor", "CMFCPropertyGridCtrl [MFC], AdjustLayout", "CMFCPropertyGridCtrl [MFC], CompareProps", "CMFCPropertyGridCtrl [MFC], EditItem", "CMFCPropertyGridCtrl [MFC], EndEditItem", "CMFCPropertyGridCtrl [MFC], Init", "CMFCPropertyGridCtrl [MFC], OnChangeSelection", "CMFCPropertyGridCtrl [MFC], OnClickButton", "CMFCPropertyGridCtrl [MFC], OnDrawBorder", "CMFCPropertyGridCtrl [MFC], OnDrawDescription", "CMFCPropertyGridCtrl [MFC], OnDrawList", "CMFCPropertyGridCtrl [MFC], OnDrawProperty", "CMFCPropertyGridCtrl [MFC], OnPropertyChanged", "CMFCPropertyGridCtrl [MFC], OnSelectCombo", "CMFCPropertyGridCtrl [MFC], ValidateItemData"] -ms.assetid: 95877cae-2311-4a2a-9031-0c8c3cf0a5f9 --- # CMFCPropertyGridCtrl Class diff --git a/docs/mfc/reference/cmfcpropertygridproperty-class.md b/docs/mfc/reference/cmfcpropertygridproperty-class.md index e5f8a837ed..968b051e6d 100644 --- a/docs/mfc/reference/cmfcpropertygridproperty-class.md +++ b/docs/mfc/reference/cmfcpropertygridproperty-class.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: CMFCPropertyGridProperty class" title: "CMFCPropertyGridProperty class" +description: "Learn more about: CMFCPropertyGridProperty class" ms.date: "10/12/2022" f1_keywords: ["CMFCPropertyGridProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::CMFCPropertyGridProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::AddOption", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::AddSubItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::AdjustButtonRect", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::AdjustInPlaceEditRect", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::AllowEdit", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::CreateInPlaceEdit", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::CreateSpinControl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::Enable", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::EnableSpinControl", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::Expand", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::FormatProperty", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetData", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetDescription", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetExpandedSubItems", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetHierarchyLevel", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetName", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetNameTooltip", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetOption", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetOptionCount", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetOriginalValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetParent", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetRect", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetSubItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetSubItemsCount", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::GetValueTooltip", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::HitTest", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsAllowEdit", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsEnabled", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsExpanded", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsGroup", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsInPlaceEditing", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsModified", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsParentExpanded", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsSelected", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsVisible", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnClickButton", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnClickName", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnClickValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnCloseCombo", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDblClk", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDrawButton", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDrawDescription", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDrawExpandBox", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDrawName", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDrawValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnEdit", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnEndEdit", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnKillSelection", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnPosSizeChanged", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnRClickName", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnRClickValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnSelectCombo", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnSetCursor", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnSetSelection", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnUpdateValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::PushChar", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::Redraw", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::RemoveAllOptions", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::RemoveSubItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::ResetOriginalValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::SetData", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::SetDescription", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::SetName", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::SetOriginalValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::SetValue", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::Show", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::CreateCombo", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::HasButton", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::Init", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsSubItem", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::IsValueChanged", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnCtlColor", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnDestroyWindow", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::OnKillFocus", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::m_strFormatDouble", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::m_strFormatFloat", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::m_strFormatLong", "AFXPROPERTYGRIDCTRL/CMFCPropertyGridProperty::m_strFormatShort"] helpviewer_keywords: ["CMFCPropertyGridProperty [MFC], CMFCPropertyGridProperty", "CMFCPropertyGridProperty [MFC], AddOption", "CMFCPropertyGridProperty [MFC], AddSubItem", "CMFCPropertyGridProperty [MFC], AdjustButtonRect", "CMFCPropertyGridProperty [MFC], AdjustInPlaceEditRect", "CMFCPropertyGridProperty [MFC], AllowEdit", "CMFCPropertyGridProperty [MFC], CreateInPlaceEdit", "CMFCPropertyGridProperty [MFC], CreateSpinControl", "CMFCPropertyGridProperty [MFC], Enable", "CMFCPropertyGridProperty [MFC], EnableSpinControl", "CMFCPropertyGridProperty [MFC], Expand", "CMFCPropertyGridProperty [MFC], FormatProperty", "CMFCPropertyGridProperty [MFC], GetData", "CMFCPropertyGridProperty [MFC], GetDescription", "CMFCPropertyGridProperty [MFC], GetExpandedSubItems", "CMFCPropertyGridProperty [MFC], GetHierarchyLevel", "CMFCPropertyGridProperty [MFC], GetName", "CMFCPropertyGridProperty [MFC], GetNameTooltip", "CMFCPropertyGridProperty [MFC], GetOption", "CMFCPropertyGridProperty [MFC], GetOptionCount", "CMFCPropertyGridProperty [MFC], GetOriginalValue", "CMFCPropertyGridProperty [MFC], GetParent", "CMFCPropertyGridProperty [MFC], GetRect", "CMFCPropertyGridProperty [MFC], GetSubItem", "CMFCPropertyGridProperty [MFC], GetSubItemsCount", "CMFCPropertyGridProperty [MFC], GetValue", "CMFCPropertyGridProperty [MFC], GetValueTooltip", "CMFCPropertyGridProperty [MFC], HitTest", "CMFCPropertyGridProperty [MFC], IsAllowEdit", "CMFCPropertyGridProperty [MFC], IsEnabled", "CMFCPropertyGridProperty [MFC], IsExpanded", "CMFCPropertyGridProperty [MFC], IsGroup", "CMFCPropertyGridProperty [MFC], IsInPlaceEditing", "CMFCPropertyGridProperty [MFC], IsModified", "CMFCPropertyGridProperty [MFC], IsParentExpanded", "CMFCPropertyGridProperty [MFC], IsSelected", "CMFCPropertyGridProperty [MFC], IsVisible", "CMFCPropertyGridProperty [MFC], OnClickButton", "CMFCPropertyGridProperty [MFC], OnClickName", "CMFCPropertyGridProperty [MFC], OnClickValue", "CMFCPropertyGridProperty [MFC], OnCloseCombo", "CMFCPropertyGridProperty [MFC], OnDblClk", "CMFCPropertyGridProperty [MFC], OnDrawButton", "CMFCPropertyGridProperty [MFC], OnDrawDescription", "CMFCPropertyGridProperty [MFC], OnDrawExpandBox", "CMFCPropertyGridProperty [MFC], OnDrawName", "CMFCPropertyGridProperty [MFC], OnDrawValue", "CMFCPropertyGridProperty [MFC], OnEdit", "CMFCPropertyGridProperty [MFC], OnEndEdit", "CMFCPropertyGridProperty [MFC], OnKillSelection", "CMFCPropertyGridProperty [MFC], OnPosSizeChanged", "CMFCPropertyGridProperty [MFC], OnRClickName", "CMFCPropertyGridProperty [MFC], OnRClickValue", "CMFCPropertyGridProperty [MFC], OnSelectCombo", "CMFCPropertyGridProperty [MFC], OnSetCursor", "CMFCPropertyGridProperty [MFC], OnSetSelection", "CMFCPropertyGridProperty [MFC], OnUpdateValue", "CMFCPropertyGridProperty [MFC], PushChar", "CMFCPropertyGridProperty [MFC], Redraw", "CMFCPropertyGridProperty [MFC], RemoveAllOptions", "CMFCPropertyGridProperty [MFC], RemoveSubItem", "CMFCPropertyGridProperty [MFC], ResetOriginalValue", "CMFCPropertyGridProperty [MFC], SetData", "CMFCPropertyGridProperty [MFC], SetDescription", "CMFCPropertyGridProperty [MFC], SetName", "CMFCPropertyGridProperty [MFC], SetOriginalValue", "CMFCPropertyGridProperty [MFC], SetValue", "CMFCPropertyGridProperty [MFC], Show", "CMFCPropertyGridProperty [MFC], CreateCombo", "CMFCPropertyGridProperty [MFC], HasButton", "CMFCPropertyGridProperty [MFC], Init", "CMFCPropertyGridProperty [MFC], IsSubItem", "CMFCPropertyGridProperty [MFC], IsValueChanged", "CMFCPropertyGridProperty [MFC], OnCtlColor", "CMFCPropertyGridProperty [MFC], OnDestroyWindow", "CMFCPropertyGridProperty [MFC], OnKillFocus", "CMFCPropertyGridProperty [MFC], m_strFormatDouble", "CMFCPropertyGridProperty [MFC], m_strFormatFloat", "CMFCPropertyGridProperty [MFC], m_strFormatLong", "CMFCPropertyGridProperty [MFC], m_strFormatShort"] diff --git a/docs/mfc/reference/cmfctoolbar-class.md b/docs/mfc/reference/cmfctoolbar-class.md index bfba798f1d..5890fdd11c 100644 --- a/docs/mfc/reference/cmfctoolbar-class.md +++ b/docs/mfc/reference/cmfctoolbar-class.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: CMFCToolBar Class" title: "CMFCToolBar Class" +description: "Learn more about: CMFCToolBar Class" ms.date: "11/04/2016" f1_keywords: ["CMFCToolBar", "AFXTOOLBAR/CMFCToolBar", "AFXTOOLBAR/CMFCToolBar::AddBasicCommand", "AFXTOOLBAR/CMFCToolBar::AddCommandUsage", "AFXTOOLBAR/CMFCToolBar::AddToolBarForImageCollection", "AFXTOOLBAR/CMFCToolBar::AdjustLayout", "AFXTOOLBAR/CMFCToolBar::AdjustSize", "AFXTOOLBAR/CMFCToolBar::AllowChangeTextLabels", "AFXTOOLBAR/CMFCToolBar::AreTextLabels", "AFXTOOLBAR/CMFCToolBar::AutoGrayInactiveImages", "AFXTOOLBAR/CMFCToolBar::ButtonToIndex", "AFXTOOLBAR/CMFCToolBar::CalcFixedLayout", "AFXTOOLBAR/CMFCToolBar::CalcSize", "AFXTOOLBAR/CMFCToolBar::CanHandleSiblings", "AFXTOOLBAR/CMFCToolBar::CleanUpImages", "AFXTOOLBAR/CMFCToolBar::CleanUpLockedImages", "AFXTOOLBAR/CMFCToolBar::CanBeClosed", "AFXTOOLBAR/CMFCToolBar::CanBeRestored", "AFXTOOLBAR/CMFCToolBar::CanFocus", "AFXTOOLBAR/CMFCToolBar::CommandToIndex", "AFXTOOLBAR/CMFCToolBar::Create", "AFXTOOLBAR/CMFCToolBar::CreateEx", "AFXTOOLBAR/CMFCToolBar::Deactivate", "AFXTOOLBAR/CMFCToolBar::EnableCustomizeButton", "AFXTOOLBAR/CMFCToolBar::EnableDocking", "AFXTOOLBAR/CMFCToolBar::EnableLargeIcons", "AFXTOOLBAR/CMFCToolBar::EnableQuickCustomization", "AFXTOOLBAR/CMFCToolBar::EnableReflections", "AFXTOOLBAR/CMFCToolBar::EnableTextLabels", "AFXTOOLBAR/CMFCToolBar::FromHandlePermanent", "AFXTOOLBAR/CMFCToolBar::GetAllButtons", "AFXTOOLBAR/CMFCToolBar::GetAllToolbars", "AFXTOOLBAR/CMFCToolBar::GetBasicCommands", "AFXTOOLBAR/CMFCToolBar::GetButton", "AFXTOOLBAR/CMFCToolBar::GetButtonInfo", "AFXTOOLBAR/CMFCToolBar::GetButtonSize", "AFXTOOLBAR/CMFCToolBar::GetButtonStyle", "AFXTOOLBAR/CMFCToolBar::GetButtonText", "AFXTOOLBAR/CMFCToolBar::GetColdImages", "AFXTOOLBAR/CMFCToolBar::GetColumnWidth", "AFXTOOLBAR/CMFCToolBar::GetCommandButtons", "AFXTOOLBAR/CMFCToolBar::GetCount", "AFXTOOLBAR/CMFCToolBar::GetCustomizeButton", "AFXTOOLBAR/CMFCToolBar::GetDefaultImage", "AFXTOOLBAR/CMFCToolBar::GetDisabledImages", "AFXTOOLBAR/CMFCToolBar::GetDisabledMenuImages", "AFXTOOLBAR/CMFCToolBar::GetDroppedDownMenu", "AFXTOOLBAR/CMFCToolBar::GetGrayDisabledButtons", "AFXTOOLBAR/CMFCToolBar::GetHighlightedButton", "AFXTOOLBAR/CMFCToolBar::GetHotBorder", "AFXTOOLBAR/CMFCToolBar::GetHotTextColor", "AFXTOOLBAR/CMFCToolBar::GetHwndLastFocus", "AFXTOOLBAR/CMFCToolBar::GetOVERWRITESetText", "AFXTOOLBAR/CMFCToolBar::GetImageSize", "AFXTOOLBAR/CMFCToolBar::GetImages", "AFXTOOLBAR/CMFCToolBar::GetImagesOffset", "AFXTOOLBAR/CMFCToolBar::GetInvalidateItemRect", "AFXTOOLBAR/CMFCToolBar::GetItemID", "AFXTOOLBAR/CMFCToolBar::GetItemRect", "AFXTOOLBAR/CMFCToolBar::GetLargeColdImages", "AFXTOOLBAR/CMFCToolBar::GetLargeDisabledImages", "AFXTOOLBAR/CMFCToolBar::GetLargeImages", "AFXTOOLBAR/CMFCToolBar::GetLockedColdImages", "AFXTOOLBAR/CMFCToolBar::GetLockedDisabledImages", "AFXTOOLBAR/CMFCToolBar::GetLockedImages", "AFXTOOLBAR/CMFCToolBar::GetLockedImageSize", "AFXTOOLBAR/CMFCToolBar::GetLockedMenuImages", "AFXTOOLBAR/CMFCToolBar::GetMenuButtonSize", "AFXTOOLBAR/CMFCToolBar::GetMenuImageSize", "AFXTOOLBAR/CMFCToolBar::GetMenuImages", "AFXTOOLBAR/CMFCToolBar::GetOrigButtons", "AFXTOOLBAR/CMFCToolBar::GetOrigResetButtons", "AFXTOOLBAR/CMFCToolBar::GetResourceID", "AFXTOOLBAR/CMFCToolBar::GetRouteCommandsViaFrame", "AFXTOOLBAR/CMFCToolBar::GetRowHeight", "AFXTOOLBAR/CMFCToolBar::GetShowTooltips", "AFXTOOLBAR/CMFCToolBar::GetSiblingToolBar", "AFXTOOLBAR/CMFCToolBar::GetUserImages", "AFXTOOLBAR/CMFCToolBar::HitTest", "AFXTOOLBAR/CMFCToolBar::InsertButton", "AFXTOOLBAR/CMFCToolBar::InsertSeparator", "AFXTOOLBAR/CMFCToolBar::InvalidateButton", "AFXTOOLBAR/CMFCToolBar::IsAddRemoveQuickCustomize", "AFXTOOLBAR/CMFCToolBar::IsAltCustomizeMode", "AFXTOOLBAR/CMFCToolBar::IsAutoGrayInactiveImages", "AFXTOOLBAR/CMFCToolBar::IsBasicCommand", "AFXTOOLBAR/CMFCToolBar::IsButtonExtraSizeAvailable", "AFXTOOLBAR/CMFCToolBar::IsButtonHighlighted", "AFXTOOLBAR/CMFCToolBar::IsCommandPermitted", "AFXTOOLBAR/CMFCToolBar::IsCommandRarelyUsed", "AFXTOOLBAR/CMFCToolBar::IsCustomizeMode", "AFXTOOLBAR/CMFCToolBar::IsDragButton", "AFXTOOLBAR/CMFCToolBar::IsExistCustomizeButton", "AFXTOOLBAR/CMFCToolBar::IsFloating", "AFXTOOLBAR/CMFCToolBar::IsLargeIcons", "AFXTOOLBAR/CMFCToolBar::IsLastCommandFromButton", "AFXTOOLBAR/CMFCToolBar::IsLocked", "AFXTOOLBAR/CMFCToolBar::IsOneRowWithSibling", "AFXTOOLBAR/CMFCToolBar::IsUserDefined", "AFXTOOLBAR/CMFCToolBar::LoadBitmap", "AFXTOOLBAR/CMFCToolBar::LoadBitmapEx", "AFXTOOLBAR/CMFCToolBar::LoadParameters", "AFXTOOLBAR/CMFCToolBar::LoadState", "AFXTOOLBAR/CMFCToolBar::LoadToolBar", "AFXTOOLBAR/CMFCToolBar::LoadToolBarEx", "AFXTOOLBAR/CMFCToolBar::OnChangeHot", "AFXTOOLBAR/CMFCToolBar::OnFillBackground", "AFXTOOLBAR/CMFCToolBar::OnReset", "AFXTOOLBAR/CMFCToolBar::OnSetAccData", "AFXTOOLBAR/CMFCToolBar::OnSetDefaultButtonText", "AFXTOOLBAR/CMFCToolBar::RemoveAllButtons", "AFXTOOLBAR/CMFCToolBar::RemoveButton", "AFXTOOLBAR/CMFCToolBar::RemoveStateFromRegistry", "AFXTOOLBAR/CMFCToolBar::ReplaceButton", "AFXTOOLBAR/CMFCToolBar::ResetAll", "AFXTOOLBAR/CMFCToolBar::ResetAllImages", "AFXTOOLBAR/CMFCToolBar::RestoreOriginalState", "AFXTOOLBAR/CMFCToolBar::SaveState", "AFXTOOLBAR/CMFCToolBar::SetBasicCommands", "AFXTOOLBAR/CMFCToolBar::SetButtonInfo", "AFXTOOLBAR/CMFCToolBar::SetButtonStyle", "AFXTOOLBAR/CMFCToolBar::SetButtonText", "AFXTOOLBAR/CMFCToolBar::SetButtons", "AFXTOOLBAR/CMFCToolBar::SetCommandUsageOptions", "AFXTOOLBAR/CMFCToolBar::SetCustomizeMode", "AFXTOOLBAR/CMFCToolBar::SetGrayDisabledButtons", "AFXTOOLBAR/CMFCToolBar::SetHeight", "AFXTOOLBAR/CMFCToolBar::SetHotBorder", "AFXTOOLBAR/CMFCToolBar::SetHotTextColor", "AFXTOOLBAR/CMFCToolBar::SetLargeIcons", "AFXTOOLBAR/CMFCToolBar::SetLockedSizes", "AFXTOOLBAR/CMFCToolBar::SetMenuSizes", "AFXTOOLBAR/CMFCToolBar::SetNonPermittedCommands", "AFXTOOLBAR/CMFCToolBar::SetOneRowWithSibling", "AFXTOOLBAR/CMFCToolBar::SetPermament", "AFXTOOLBAR/CMFCToolBar::SetRouteCommandsViaFrame", "AFXTOOLBAR/CMFCToolBar::SetShowTooltips", "AFXTOOLBAR/CMFCToolBar::SetSiblingToolBar", "AFXTOOLBAR/CMFCToolBar::SetSizes", "AFXTOOLBAR/CMFCToolBar::SetToolBarBtnText", "AFXTOOLBAR/CMFCToolBar::SetTwoRowsWithSibling", "AFXTOOLBAR/CMFCToolBar::SetUserImages", "AFXTOOLBAR/CMFCToolBar::StretchPane", "AFXTOOLBAR/CMFCToolBar::TranslateChar", "AFXTOOLBAR/CMFCToolBar::UpdateButton", "AFXTOOLBAR/CMFCToolBar::WrapToolBar", "AFXTOOLBAR/CMFCToolBar::AllowShowOnList", "AFXTOOLBAR/CMFCToolBar::CalcMaxButtonHeight", "AFXTOOLBAR/CMFCToolBar::DoPaint", "AFXTOOLBAR/CMFCToolBar::DrawButton", "AFXTOOLBAR/CMFCToolBar::DrawSeparator", "AFXTOOLBAR/CMFCToolBar::OnUserToolTip", "AFXTOOLBAR/CMFCToolBar::m_bDontScaleImages", "AFXTOOLBAR/CMFCToolBar::m_dblLargeImageRatio"] helpviewer_keywords: ["CMFCToolBar [MFC], AddBasicCommand", "CMFCToolBar [MFC], AddCommandUsage", "CMFCToolBar [MFC], AddToolBarForImageCollection", "CMFCToolBar [MFC], AdjustLayout", "CMFCToolBar [MFC], AdjustSize", "CMFCToolBar [MFC], AllowChangeTextLabels", "CMFCToolBar [MFC], AreTextLabels", "CMFCToolBar [MFC], AutoGrayInactiveImages", "CMFCToolBar [MFC], ButtonToIndex", "CMFCToolBar [MFC], CalcFixedLayout", "CMFCToolBar [MFC], CalcSize", "CMFCToolBar [MFC], CanHandleSiblings", "CMFCToolBar [MFC], CleanUpImages", "CMFCToolBar [MFC], CleanUpLockedImages", "CMFCToolBar [MFC], CanBeClosed", "CMFCToolBar [MFC], CanBeRestored", "CMFCToolBar [MFC], CanFocus", "CMFCToolBar [MFC], CanHandleSiblings", "CMFCToolBar [MFC], CommandToIndex", "CMFCToolBar [MFC], Create", "CMFCToolBar [MFC], CreateEx", "CMFCToolBar [MFC], Deactivate", "CMFCToolBar [MFC], EnableCustomizeButton", "CMFCToolBar [MFC], EnableDocking", "CMFCToolBar [MFC], EnableLargeIcons", "CMFCToolBar [MFC], EnableQuickCustomization", "CMFCToolBar [MFC], EnableReflections", "CMFCToolBar [MFC], EnableTextLabels", "CMFCToolBar [MFC], FromHandlePermanent", "CMFCToolBar [MFC], GetAllButtons", "CMFCToolBar [MFC], GetAllToolbars", "CMFCToolBar [MFC], GetBasicCommands", "CMFCToolBar [MFC], GetButton", "CMFCToolBar [MFC], GetButtonInfo", "CMFCToolBar [MFC], GetButtonSize", "CMFCToolBar [MFC], GetButtonStyle", "CMFCToolBar [MFC], GetButtonText", "CMFCToolBar [MFC], GetColdImages", "CMFCToolBar [MFC], GetColumnWidth", "CMFCToolBar [MFC], GetCommandButtons", "CMFCToolBar [MFC], GetCount", "CMFCToolBar [MFC], GetCustomizeButton", "CMFCToolBar [MFC], GetDefaultImage", "CMFCToolBar [MFC], GetDisabledImages", "CMFCToolBar [MFC], GetDisabledMenuImages", "CMFCToolBar [MFC], GetDroppedDownMenu", "CMFCToolBar [MFC], GetGrayDisabledButtons", "CMFCToolBar [MFC], GetHighlightedButton", "CMFCToolBar [MFC], GetHotBorder", "CMFCToolBar [MFC], GetHotTextColor", "CMFCToolBar [MFC], GetHwndLastFocus", "CMFCToolBar [MFC], GetIgnoreSetText", "CMFCToolBar [MFC], GetImageSize", "CMFCToolBar [MFC], GetImages", "CMFCToolBar [MFC], GetImagesOffset", "CMFCToolBar [MFC], GetInvalidateItemRect", "CMFCToolBar [MFC], GetItemID", "CMFCToolBar [MFC], GetItemRect", "CMFCToolBar [MFC], GetLargeColdImages", "CMFCToolBar [MFC], GetLargeDisabledImages", "CMFCToolBar [MFC], GetLargeImages", "CMFCToolBar [MFC], GetLockedColdImages", "CMFCToolBar [MFC], GetLockedDisabledImages", "CMFCToolBar [MFC], GetLockedImages", "CMFCToolBar [MFC], GetLockedImageSize", "CMFCToolBar [MFC], GetLockedMenuImages", "CMFCToolBar [MFC], GetMenuButtonSize", "CMFCToolBar [MFC], GetMenuImageSize", "CMFCToolBar [MFC], GetMenuImages", "CMFCToolBar [MFC], GetOrigButtons", "CMFCToolBar [MFC], GetOrigResetButtons", "CMFCToolBar [MFC], GetResourceID", "CMFCToolBar [MFC], GetRouteCommandsViaFrame", "CMFCToolBar [MFC], GetRowHeight", "CMFCToolBar [MFC], GetShowTooltips", "CMFCToolBar [MFC], GetSiblingToolBar", "CMFCToolBar [MFC], GetUserImages", "CMFCToolBar [MFC], HitTest", "CMFCToolBar [MFC], InsertButton", "CMFCToolBar [MFC], InsertSeparator", "CMFCToolBar [MFC], InvalidateButton", "CMFCToolBar [MFC], IsAddRemoveQuickCustomize", "CMFCToolBar [MFC], IsAltCustomizeMode", "CMFCToolBar [MFC], IsAutoGrayInactiveImages", "CMFCToolBar [MFC], IsBasicCommand", "CMFCToolBar [MFC], IsButtonExtraSizeAvailable", "CMFCToolBar [MFC], IsButtonHighlighted", "CMFCToolBar [MFC], IsCommandPermitted", "CMFCToolBar [MFC], IsCommandRarelyUsed", "CMFCToolBar [MFC], IsCustomizeMode", "CMFCToolBar [MFC], IsDragButton", "CMFCToolBar [MFC], IsExistCustomizeButton", "CMFCToolBar [MFC], IsFloating", "CMFCToolBar [MFC], IsLargeIcons", "CMFCToolBar [MFC], IsLastCommandFromButton", "CMFCToolBar [MFC], IsLocked", "CMFCToolBar [MFC], IsOneRowWithSibling", "CMFCToolBar [MFC], IsUserDefined", "CMFCToolBar [MFC], LoadBitmap", "CMFCToolBar [MFC], LoadBitmapEx", "CMFCToolBar [MFC], LoadParameters", "CMFCToolBar [MFC], LoadState", "CMFCToolBar [MFC], LoadToolBar", "CMFCToolBar [MFC], LoadToolBarEx", "CMFCToolBar [MFC], OnChangeHot", "CMFCToolBar [MFC], OnFillBackground", "CMFCToolBar [MFC], OnReset", "CMFCToolBar [MFC], OnSetAccData", "CMFCToolBar [MFC], OnSetDefaultButtonText", "CMFCToolBar [MFC], RemoveAllButtons", "CMFCToolBar [MFC], RemoveButton", "CMFCToolBar [MFC], RemoveStateFromRegistry", "CMFCToolBar [MFC], ReplaceButton", "CMFCToolBar [MFC], ResetAll", "CMFCToolBar [MFC], ResetAllImages", "CMFCToolBar [MFC], RestoreOriginalState", "CMFCToolBar [MFC], SaveState", "CMFCToolBar [MFC], SetBasicCommands", "CMFCToolBar [MFC], SetButtonInfo", "CMFCToolBar [MFC], SetButtonStyle", "CMFCToolBar [MFC], SetButtonText", "CMFCToolBar [MFC], SetButtons", "CMFCToolBar [MFC], SetCommandUsageOptions", "CMFCToolBar [MFC], SetCustomizeMode", "CMFCToolBar [MFC], SetGrayDisabledButtons", "CMFCToolBar [MFC], SetHeight", "CMFCToolBar [MFC], SetHotBorder", "CMFCToolBar [MFC], SetHotTextColor", "CMFCToolBar [MFC], SetLargeIcons", "CMFCToolBar [MFC], SetLockedSizes", "CMFCToolBar [MFC], SetMenuSizes", "CMFCToolBar [MFC], SetNonPermittedCommands", "CMFCToolBar [MFC], SetOneRowWithSibling", "CMFCToolBar [MFC], SetPermament", "CMFCToolBar [MFC], SetRouteCommandsViaFrame", "CMFCToolBar [MFC], SetShowTooltips", "CMFCToolBar [MFC], SetSiblingToolBar", "CMFCToolBar [MFC], SetSizes", "CMFCToolBar [MFC], SetToolBarBtnText", "CMFCToolBar [MFC], SetTwoRowsWithSibling", "CMFCToolBar [MFC], SetUserImages", "CMFCToolBar [MFC], StretchPane", "CMFCToolBar [MFC], TranslateChar", "CMFCToolBar [MFC], UpdateButton", "CMFCToolBar [MFC], WrapToolBar", "CMFCToolBar [MFC], AllowShowOnList", "CMFCToolBar [MFC], CalcMaxButtonHeight", "CMFCToolBar [MFC], DoPaint", "CMFCToolBar [MFC], DrawButton", "CMFCToolBar [MFC], DrawSeparator", "CMFCToolBar [MFC], OnUserToolTip", "CMFCToolBar [MFC], m_bDontScaleImages", "CMFCToolBar [MFC], m_dblLargeImageRatio"] diff --git a/docs/standard-library/unordered-map-class.md b/docs/standard-library/unordered-map-class.md index 09b5dab2fe..efdd7659ce 100644 --- a/docs/standard-library/unordered-map-class.md +++ b/docs/standard-library/unordered-map-class.md @@ -4,7 +4,6 @@ description: "API reference for the C++ Standard Library container class `unorde ms.date: 06/20/2022 f1_keywords: ["unordered_map/std::unordered_map", "unordered_map/std::unordered_map::allocator_type", "unordered_map/std::unordered_map::const_iterator", "unordered_map/std::unordered_map::const_local_iterator", "unordered_map/std::unordered_map::const_pointer", "unordered_map/std::unordered_map::const_reference", "unordered_map/std::unordered_map::difference_type", "unordered_map/std::unordered_map::hasher", "unordered_map/std::unordered_map::iterator", "unordered_map/std::unordered_map::key_equal", "unordered_map/std::unordered_map::key_type", "unordered_map/std::unordered_map::local_iterator", "unordered_map/std::unordered_map::mapped_type", "unordered_map/std::unordered_map::pointer", "unordered_map/std::unordered_map::reference", "unordered_map/std::unordered_map::size_type", "unordered_map/std::unordered_map::value_type", "unordered_map/std::unordered_map::at", "unordered_map/std::unordered_map::begin", "unordered_map/std::unordered_map::bucket", "unordered_map/std::unordered_map::bucket_count", "unordered_map/std::unordered_map::bucket_size", "unordered_map/std::unordered_map::cbegin", "unordered_map/std::unordered_map::cend", "unordered_map/std::unordered_map::clear", "unordered_map/std::unordered_map::contains", "unordered_map/std::unordered_map::count", "unordered_map/std::unordered_map::emplace", "unordered_map/std::unordered_map::emplace_hint", "unordered_map/std::unordered_map::empty", "unordered_map/std::unordered_map::end", "unordered_map/std::unordered_map::equal_range", "unordered_map/std::unordered_map::erase", "unordered_map/std::unordered_map::find", "unordered_map/std::unordered_map::get_allocator", "unordered_map/std::unordered_map::hash", "unordered_map/std::unordered_map::insert", "unordered_map/std::unordered_map::key_eq", "unordered_map/std::unordered_map::load_factor", "unordered_map/std::unordered_map::max_bucket_count", "unordered_map/std::unordered_map::max_load_factor", "unordered_map/std::unordered_map::max_size", "unordered_map/std::unordered_map::rehash", "unordered_map/std::unordered_map::size", "unordered_map/std::unordered_map::swap", "unordered_map/std::unordered_map::unordered_map", "unordered_map/std::unordered_map::hash_function"] helpviewer_keywords: ["std::unordered_map", "std::unordered_map::allocator_type", "std::unordered_map::const_iterator", "std::unordered_map::const_local_iterator", "std::unordered_map::const_pointer", "std::unordered_map::const_reference", "std::unordered_map::difference_type", "std::unordered_map::hasher", "std::unordered_map::iterator", "std::unordered_map::key_equal", "std::unordered_map::key_type", "std::unordered_map::local_iterator", "std::unordered_map::mapped_type", "std::unordered_map::pointer", "std::unordered_map::reference", "std::unordered_map::size_type", "std::unordered_map::value_type", "std::unordered_map::at", "std::unordered_map::begin", "std::unordered_map::bucket", "std::unordered_map::bucket_count", "std::unordered_map::bucket_size", "std::unordered_map::cbegin", "std::unordered_map::cend", "std::unordered_map::clear", "std::unordered_map::contains", "std::unordered_map::count", "std::unordered_map::emplace", "std::unordered_map::emplace_hint", "std::unordered_map::empty", "std::unordered_map::end", "std::unordered_map::equal_range", "std::unordered_map::erase", "std::unordered_map::find", "std::unordered_map::get_allocator", "std::unordered_map::hash", "std::unordered_map::insert", "std::unordered_map::key_eq", "std::unordered_map::load_factor", "std::unordered_map::max_bucket_count", "std::unordered_map::max_load_factor", "std::unordered_map::max_size", "std::unordered_map::rehash", "std::unordered_map::size", "std::unordered_map::swap", "std::unordered_map::unordered_map", "std::unordered_map::allocator_type", "std::unordered_map::const_iterator", "std::unordered_map::const_local_iterator", "std::unordered_map::const_pointer", "std::unordered_map::const_reference", "std::unordered_map::difference_type", "std::unordered_map::hasher", "std::unordered_map::iterator", "std::unordered_map::key_equal", "std::unordered_map::key_type", "std::unordered_map::local_iterator", "std::unordered_map::mapped_type", "std::unordered_map::pointer", "std::unordered_map::reference", "std::unordered_map::size_type", "std::unordered_map::value_type", "std::unordered_map::at", "std::unordered_map::begin", "std::unordered_map::bucket", "std::unordered_map::bucket_count", "std::unordered_map::bucket_size", "std::unordered_map::cbegin", "std::unordered_map::cend", "std::unordered_map::clear", "std::unordered_map::count", "std::unordered_map::emplace", "std::unordered_map::emplace_hint", "std::unordered_map::empty", "std::unordered_map::end", "std::unordered_map::equal_range", "std::unordered_map::erase", "std::unordered_map::find", "std::unordered_map::get_allocator", "std::unordered_map::hash_function", "std::unordered_map::insert", "std::unordered_map::key_eq", "std::unordered_map::load_factor", "std::unordered_map::max_bucket_count", "std::unordered_map::max_load_factor", "std::unordered_map::max_size", "std::unordered_map::rehash", "std::unordered_map::size", "std::unordered_map::swap"] -ms.assetid: 7cf7cfa1-16e7-461c-a9b2-3b8d8ec24e0d ms.custom: devdivchpfy22 --- From 8ac274f1a7c94f5af15311987e5ed73562cfd28f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 16 Mar 2025 19:13:39 +0800 Subject: [PATCH 047/981] Improve `` operators reference --- .../system-error-operators.md | 44 ++++++++++++++++--- 1 file changed, 39 insertions(+), 5 deletions(-) diff --git a/docs/standard-library/system-error-operators.md b/docs/standard-library/system-error-operators.md index ad43985bc5..78db2a7c4a 100644 --- a/docs/standard-library/system-error-operators.md +++ b/docs/standard-library/system-error-operators.md @@ -1,13 +1,12 @@ --- -description: "Learn more about: operators" title: " operators" +description: "Learn more about: operators" ms.date: "11/04/2016" f1_keywords: ["system_error/std::operator!=", "system_error/std::operator=="] -ms.assetid: c14edefb-bd8a-4e90-88d3-c59c98e6f73c --- # `` operators -## operator== +## `operator==` Tests if the object on the left side of the operator is equal to the object on the right side. @@ -38,7 +37,7 @@ The object to be tested for equality. This function returns `left.category() == right.category() && left.value() == right.value()`. -## operator!= +## `operator!=` Tests if the object on the left side of the operator is not equal to the object on the right side. @@ -111,7 +110,42 @@ This function tests the error order. ## `operator<<` +Inserts an [`error_code`](error-code-class.md) object into the output stream. + ```cpp template - basic_ostream& operator<<(basic_ostream& os, const error_code& ec); +basic_ostream& operator<<(basic_ostream& os, const error_code& ec); +``` + +### Parameters + +*os*\ +The target output stream. + +*ec*\ +The `error_code` object to be output. + +### Return Value + +A reference to the modified output stream. + +### Remarks + +This operator does the equivalent of `os << ec.category().name() << ':' << ec.value()`. + +### Example + +```cpp +#include +#include + +int main() +{ + std::error_code ec(1234, std::generic_category()); + std::cout << ec; +} +``` + +```Output +generic:1234 ``` From 7986cd2f95d65daa861b32bd740988bd6b44fa8f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 17 Mar 2025 23:47:24 +0800 Subject: [PATCH 048/981] Normalize C++ code block language to `cpp` --- docs/c-runtime-library/reference/floating-point-ordering.md | 4 ++-- docs/cpp/com-ptr-t-extractors.md | 3 +-- docs/overview/cpp-conformance-improvements.md | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/c-runtime-library/reference/floating-point-ordering.md b/docs/c-runtime-library/reference/floating-point-ordering.md index ece44b97be..acdf45961d 100644 --- a/docs/c-runtime-library/reference/floating-point-ordering.md +++ b/docs/c-runtime-library/reference/floating-point-ordering.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: isgreater, isgreaterequal, isless, islessequal, islessgreater, isunordered" title: "isgreater, isgreaterequal, isless, islessequal, islessgreater, isunordered" +description: "Learn more about: isgreater, isgreaterequal, isless, islessequal, islessgreater, isunordered" ms.date: "01/31/2019" f1_keywords: ["isgreater", "math/isgreater", "isgreaterequal", "math/isgreaterequal", "isless", "math/isless", "islessequal", "math/islessequal", "islessgreater", "math/islessgreater", "isunordered", "math/isunordered"] helpviewer_keywords: ["isgreater function", "isgreaterequal function", "isless function", "islessequal function", "islessgreater function", "isunordered function"] @@ -43,7 +43,7 @@ int isunordered( ); /* C-only macro */ ``` -```C++ +```cpp template inline bool isgreater( FloatingType1 x, diff --git a/docs/cpp/com-ptr-t-extractors.md b/docs/cpp/com-ptr-t-extractors.md index 416c396712..305a593e87 100644 --- a/docs/cpp/com-ptr-t-extractors.md +++ b/docs/cpp/com-ptr-t-extractors.md @@ -4,7 +4,6 @@ description: "Describes the extraction operators for the _com_ptr_t class." ms.date: 07/07/2020 f1_keywords: ["_com_ptr_t::operatorInterface&", "_com_ptr_t::operatorbool", "_com_ptr_t::operator->", "_com_ptr_t::operator*"] helpviewer_keywords: ["operator Interface& [C++]", "* operator [C++], with specific objects", "operator& [C++]", "operator* [C++]", "-> operator [C++], with specific objects", "& operator [C++], with specific objects", "operator Interface* [C++]", "operator * [C++]", "operator->", "operator bool", "extractors, _com_ptr_t class", "extractors [C++]"] -ms.assetid: 194b9e0e-123c-49ff-a187-0a7fcd68145a --- # `_com_ptr_t` Extractors @@ -14,7 +13,7 @@ Extract the encapsulated COM interface pointer. ## Syntax -```c++ +```cpp operator Interface*( ) const throw( ); operator Interface&( ) const; Interface& operator*( ) const; diff --git a/docs/overview/cpp-conformance-improvements.md b/docs/overview/cpp-conformance-improvements.md index 7de36922bb..76bbefd6f6 100644 --- a/docs/overview/cpp-conformance-improvements.md +++ b/docs/overview/cpp-conformance-improvements.md @@ -525,7 +525,7 @@ bool b = S{} != S{}; The compiler accepts this code, which means that the compiler is more strict with code such as: -```c++ +```cpp struct S { operator bool() const; From dba96f97ffd26e0de9a680c7ec8dab6951bccb2e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 18 Mar 2025 00:53:08 +0800 Subject: [PATCH 049/981] Update C2640 error reference --- .../compiler-errors-2/compiler-error-c2640.md | 18 ++++++++++-------- .../compiler-errors-c2600-through-c2699.md | 4 ++-- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2640.md b/docs/error-messages/compiler-errors-2/compiler-error-c2640.md index c1467898ef..5014adb77d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2640.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2640.md @@ -1,23 +1,25 @@ --- -description: "Learn more about: Compiler Error C2640" title: "Compiler Error C2640" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2640" +ms.date: "03/17/2025" f1_keywords: ["C2640"] helpviewer_keywords: ["C2640"] -ms.assetid: e4d137ab-ed1d-457c-9eec-b70d97f1b0b4 --- # Compiler Error C2640 -'identifier' : __based modifier illegal on reference +> 'abstract declarator': __based modifier illegal on reference -The **`__based`** modifier can be used on pointers only. +The [**`__based`**](../../cpp/based-pointers-cpp.md) modifier can be used on pointers only. The following sample generates C2640: ```cpp // C2640.cpp -void f(int i) { - void *vp; - int _based(vp) &vr = I; // C2640 +int* ptr; + +int main() +{ + int __based(ptr)& based_ref; // C2640 + int __based(ptr)* based_ptr; // OK } ``` diff --git a/docs/error-messages/compiler-errors-2/compiler-errors-c2600-through-c2699.md b/docs/error-messages/compiler-errors-2/compiler-errors-c2600-through-c2699.md index b4876ccc6a..e8cbf106a7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-errors-c2600-through-c2699.md +++ b/docs/error-messages/compiler-errors-2/compiler-errors-c2600-through-c2699.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler errors C2600 Through C2699" title: "Compiler errors C2600 Through C2699" +description: "Learn more about: Compiler errors C2600 Through C2699" ms.date: "04/21/2019" f1_keywords: ["C2604", "C2606", "C2607", "C2608", "C2609", "C2610", "C2615", "C2618", "C2620", "C2621", "C2622", "C2623", "C2625", "C2629", "C2631", "C2639", "C2641", "C2642", "C2643", "C2644", "C2684", "C2685", "C2686", "C2697"] helpviewer_keywords: ["C2604", "C2606", "C2607", "C2608", "C2609", "C2610", "C2615", "C2618", "C2620", "C2621", "C2622", "C2623", "C2625", "C2629", "C2631", "C2639", "C2641", "C2642", "C2643", "C2644", "C2684", "C2685", "C2686", "C2697"] @@ -55,7 +55,7 @@ The articles in this section of the documentation explain a subset of the error |[Compiler error C2637](compiler-error-c2637.md)|'*identifier*': cannot modify pointers to data members| |[Compiler error C2638](compiler-error-c2638.md)|'*identifier*': __based modifier illegal on pointer to member| |Compiler error C2639|trailing return type '*type*' of deduction guide should be a specialization of '*class template*'| -|[Compiler error C2640](compiler-error-c2640.md)|'*identifier*': __based modifier illegal on reference| +|[Compiler error C2640](compiler-error-c2640.md)|'abstract declarator': __based modifier illegal on reference| |Compiler error C2641|cannot deduce template arguments for '*template name*'| |Compiler error C2642|two deduction guide declarations for the same class template cannot have equivalent parameter list and template head| |Compiler error C2643|deduction guide should be declared in the same scope as the corresponding class template '*template name*'| From 469ab7cbb56da7630b89fee006b23cf257461fb5 Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Mon, 17 Mar 2025 10:21:53 -0700 Subject: [PATCH 050/981] code escape params to avoid machine translation --- .../system-error-operators.md | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/standard-library/system-error-operators.md b/docs/standard-library/system-error-operators.md index 78db2a7c4a..58a4e804c3 100644 --- a/docs/standard-library/system-error-operators.md +++ b/docs/standard-library/system-error-operators.md @@ -1,7 +1,7 @@ --- title: " operators" description: "Learn more about: operators" -ms.date: "11/04/2016" +ms.date: "3/17/2025" f1_keywords: ["system_error/std::operator!=", "system_error/std::operator=="] --- # `` operators @@ -23,11 +23,11 @@ bool operator==(const error_condition& left, ### Parameters -*left*\ -The object to be tested for equality. +*`left`*\ +The object to test for equality. -*right*\ -The object to be tested for equality. +*`right`*\ +The object to test for equality. ### Return Value @@ -50,15 +50,15 @@ bool operator!=(const error_condition& left, const error_condition& right); ### Parameters -*left*\ -The object to be tested for inequality. +*`left`*\ +The object to test for inequality. -*right*\ -The object to be tested for inequality. +*`right`*\ +The object to test for inequality. ### Return Value -**`true`** if the object passed in *left* is not equal to the object passed in *right*; otherwise **`false`**. +**`true`** if the object passed in *left* is not equal to the object passed in *`right`*; otherwise **`false`**. ### Remarks @@ -94,15 +94,15 @@ inline bool operator<( ### Parameters -*left*\ -The object to be compared. +*`left`*\ +The object to compare. -*right*\ -The object to be compared. +*`right`*\ +The object to compare. ### Return Value -**`true`** if the object passed in *left* is less than the object passed in *right*; Otherwise, **`false`**. +**`true`** if the object passed in *`left`* is less than the object passed in *`right`*; Otherwise, **`false`**. ### Remarks @@ -119,11 +119,11 @@ basic_ostream& operator<<(basic_ostream& os, const ### Parameters -*os*\ +*`os`*\ The target output stream. -*ec*\ -The `error_code` object to be output. +*`ec`*\ +The `error_code` object to output. ### Return Value From b3e24884b83a58b9bd401c77792b64603d14b769 Mon Sep 17 00:00:00 2001 From: Pedro Miguel Justo <40605312+pmsjt@users.noreply.github.com> Date: Mon, 17 Mar 2025 12:04:17 -0700 Subject: [PATCH 051/981] sve_uwop_part1 --- docs/build/arm64-exception-handling.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/build/arm64-exception-handling.md b/docs/build/arm64-exception-handling.md index 0b2ebe6c68..8c7bcc7bbb 100644 --- a/docs/build/arm64-exception-handling.md +++ b/docs/build/arm64-exception-handling.md @@ -299,6 +299,7 @@ The unwind codes are encoded according to the table below. All unwind codes are | `save_fregp_x` | 1101101x'xxzzzzzz: save pair `d(8+#X)` at `[sp-(#Z+1)*8]!`, pre-indexed offset >= -512 | | `save_freg` | 1101110x'xxzzzzzz: save reg `d(8+#X)` at `[sp+#Z*8]`, offset \<= 504 | | `save_freg_x` | 11011110'xxxzzzzz: save reg `d(8+#X)` at `[sp-(#Z+1)*8]!`, pre-indexed offset >= -256 | +| `alloc_z` | 11011111'zzzzzzzz: allocate stack with size `z * SVE-VL` | | `alloc_l` | 11100000'xxxxxxxx'xxxxxxxx'xxxxxxxx: allocate large stack with size \< 256M (2^24 * 16) | | `set_fp` | 11100001: set up `x29` with `mov x29,sp` | | `add_fp` | 11100010'xxxxxxxx: set up `x29` with `add x29,sp,#x*8` | @@ -306,6 +307,11 @@ The unwind codes are encoded according to the table below. All unwind codes are | `end` | 11100100: end of unwind code. Implies `ret` in epilog. | | `end_c` | 11100101: end of unwind code in current chained scope. | | `save_next` | 11100110: save next non-volatile Int or FP register pair. | +| `save_any_xreg` | 11100111'0pxrrrrr'00oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 for x=1 or p=1 / else offset * 8 | +| `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 for x=1 or p=1 / else offset * 8 | +| `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 | +| `save_zreg` | 11100111'0oo0rrrr'11oooooo +| `save_preg` | 11100111'0oo1rrrr'11oooooo | | 11100111: reserved | | | 11101xxx: reserved for custom stack cases below only generated for asm routines | | | 11101000: Custom stack for `MSFT_OP_TRAP_FRAME` | From 91031acfc5adb7b3de4434da251166905764e359 Mon Sep 17 00:00:00 2001 From: Pedro Miguel Justo <40605312+pmsjt@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:41:31 -0700 Subject: [PATCH 052/981] Update arm64-exception-handling.md --- docs/build/arm64-exception-handling.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/build/arm64-exception-handling.md b/docs/build/arm64-exception-handling.md index 8c7bcc7bbb..7b7ef7b07d 100644 --- a/docs/build/arm64-exception-handling.md +++ b/docs/build/arm64-exception-handling.md @@ -307,12 +307,12 @@ The unwind codes are encoded according to the table below. All unwind codes are | `end` | 11100100: end of unwind code. Implies `ret` in epilog. | | `end_c` | 11100101: end of unwind code in current chained scope. | | `save_next` | 11100110: save next non-volatile Int or FP register pair. | -| `save_any_xreg` | 11100111'0pxrrrrr'00oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 for x=1 or p=1 / else offset * 8 | -| `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 for x=1 or p=1 / else offset * 8 | -| `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: `p` = 0/1 => single/pair, `x` = 0/1 => positive / negative pre-indexed, offset = `o` * 16 | -| `save_zreg` | 11100111'0oo0rrrr'11oooooo -| `save_preg` | 11100111'0oo1rrrr'11oooooo -| | 11100111: reserved | +| `save_any_xreg` | 11100111'0pxrrrrr'00oooooo: save register(s)
  • `p`: 0/1 => single `X(#r)` vs pair `X(#r)` + `X(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8

| +| `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: save register(s)
  • `p`: 0/1 => single `D(#r)` vs pair `D(#r)` + `D(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8

| +| `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: save register(s)
  • `p`: 0/1 => single `Q(#r)` vs pair `Q(#r)` + `Q(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16

| +| `save_zreg` | 11100111'0oo0rrrr'11oooooo: save reg `Z(#r+8)` at `[sp + #o * VL]`, (`Z8` through `Z23`) +| `save_preg` | 11100111'0oo1rrrr'11oooooo: save reg `P(#r+8)` at `[sp + #o * VL]`, (`P4` through `P15`; `r` values `[0, 3]` are reserved) +| | 11100111'1yyyyyyy': reserved | | | 11101xxx: reserved for custom stack cases below only generated for asm routines | | | 11101000: Custom stack for `MSFT_OP_TRAP_FRAME` | | | 11101001: Custom stack for `MSFT_OP_MACHINE_FRAME` | From e79b1aa0b74e96c97b349bba7072de72296b0c8c Mon Sep 17 00:00:00 2001 From: Pedro Miguel Justo <40605312+pmsjt@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:59:42 -0700 Subject: [PATCH 053/981] Update arm64-exception-handling.md --- docs/build/arm64-exception-handling.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/build/arm64-exception-handling.md b/docs/build/arm64-exception-handling.md index 7b7ef7b07d..d626cc2b09 100644 --- a/docs/build/arm64-exception-handling.md +++ b/docs/build/arm64-exception-handling.md @@ -306,10 +306,10 @@ The unwind codes are encoded according to the table below. All unwind codes are | `nop` | 11100011: no unwind operation is required. | | `end` | 11100100: end of unwind code. Implies `ret` in epilog. | | `end_c` | 11100101: end of unwind code in current chained scope. | -| `save_next` | 11100110: save next non-volatile Int or FP register pair. | -| `save_any_xreg` | 11100111'0pxrrrrr'00oooooo: save register(s)
  • `p`: 0/1 => single `X(#r)` vs pair `X(#r)` + `X(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8

| -| `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: save register(s)
  • `p`: 0/1 => single `D(#r)` vs pair `D(#r)` + `D(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8

| -| `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: save register(s)
  • `p`: 0/1 => single `Q(#r)` vs pair `Q(#r)` + `Q(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16

| +| `save_next` | 11100110: save next register pair. | +| `save_any_xreg` | 11100111'0pxrrrrr'00oooooo: save register(s)
  • `p`: 0/1 => single `X(#r)` vs pair `X(#r)` + `X(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8
(Windows >= 11 required) | +| `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: save register(s)
  • `p`: 0/1 => single `D(#r)` vs pair `D(#r)` + `D(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8
(Windows >= 11 required) | +| `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: save register(s)
  • `p`: 0/1 => single `Q(#r)` vs pair `Q(#r)` + `Q(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16
(Windows >= 11 required) | | `save_zreg` | 11100111'0oo0rrrr'11oooooo: save reg `Z(#r+8)` at `[sp + #o * VL]`, (`Z8` through `Z23`) | `save_preg` | 11100111'0oo1rrrr'11oooooo: save reg `P(#r+8)` at `[sp + #o * VL]`, (`P4` through `P15`; `r` values `[0, 3]` are reserved) | | 11100111'1yyyyyyy': reserved | @@ -336,7 +336,7 @@ In instructions with large values covering multiple bytes, the most significant Post-indexed offset addressing isn't allowed in a prolog. All offset ranges (#Z) match the encoding of `stp`/`str` addressing except `save_r19r20_x`, in which 248 is sufficient for all save areas (10 Int registers + 8 FP registers + 8 input registers). -`save_next` must follow a save for Int or FP volatile register pair: `save_regp`, `save_regp_x`, `save_fregp`, `save_fregp_x`, `save_r19r20_x`, or another `save_next`. It saves the next register pair at the next 16-byte slot in "growing up" order. A `save_next` refers to the first FP register pair when it follows the `save-next` that denotes the last Int register pair. +`save_next` must follow a save for a register pair: `save_regp`, `save_regp_x`, `save_fregp`, `save_fregp_x`, `save_r19r20_x`, or another `save_next`. It can also be used in conjunction with `save_any_xreg`, `save_any_dreg` or `save_any_qreg` but only when `p = 1`. It saves the next register pair in numerically increasing order to the next stack space. `save_next` must not be used beyond the last register of the same kind. Since the sizes of regular return and jump instructions are the same, there's no need for a separated `end` unwind code in tail-call scenarios. From 2ea6c3d10a22d2e2b564f88e579186cf025a1c2c Mon Sep 17 00:00:00 2001 From: Pedro Miguel Justo <40605312+pmsjt@users.noreply.github.com> Date: Mon, 17 Mar 2025 14:07:34 -0700 Subject: [PATCH 054/981] Update arm64-exception-handling.md --- docs/build/arm64-exception-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/arm64-exception-handling.md b/docs/build/arm64-exception-handling.md index d626cc2b09..26cabebc7d 100644 --- a/docs/build/arm64-exception-handling.md +++ b/docs/build/arm64-exception-handling.md @@ -311,7 +311,7 @@ The unwind codes are encoded according to the table below. All unwind codes are | `save_any_dreg` | 11100111'0pxrrrrr'01oooooo: save register(s)
  • `p`: 0/1 => single `D(#r)` vs pair `D(#r)` + `D(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16, if x=1 or p=1, else `o` * 8
(Windows >= 11 required) | | `save_any_qreg` | 11100111'0pxrrrrr'10oooooo: save register(s)
  • `p`: 0/1 => single `Q(#r)` vs pair `Q(#r)` + `Q(#r+1)`
  • `x`: 0/1 => positive vs negative pre-indexed stack offset
  • `o`: offset = `o` * 16
(Windows >= 11 required) | | `save_zreg` | 11100111'0oo0rrrr'11oooooo: save reg `Z(#r+8)` at `[sp + #o * VL]`, (`Z8` through `Z23`) -| `save_preg` | 11100111'0oo1rrrr'11oooooo: save reg `P(#r+8)` at `[sp + #o * VL]`, (`P4` through `P15`; `r` values `[0, 3]` are reserved) +| `save_preg` | 11100111'0oo1rrrr'11oooooo: save reg `P(#r+8)` at `[sp + #o * (VL / 8)]`, (`P4` through `P15`; `r` values `[0, 3]` are reserved) | | 11100111'1yyyyyyy': reserved | | | 11101xxx: reserved for custom stack cases below only generated for asm routines | | | 11101000: Custom stack for `MSFT_OP_TRAP_FRAME` | From 0c383f241a3b05016c50922ca394aa1fdf7bdaec Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Mon, 17 Mar 2025 17:27:28 -0700 Subject: [PATCH 055/981] Refresh articles --- ...compile-a-c-program-on-the-command-line.md | 71 ++++++------ ...ng-and-using-a-dynamic-link-library-cpp.md | 102 +++++++++--------- ...eating-windows-desktop-applications-cpp.md | 63 +++++------ 3 files changed, 116 insertions(+), 120 deletions(-) diff --git a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md index 1edfba8ac3..4be70be979 100644 --- a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md +++ b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md @@ -1,8 +1,8 @@ --- -title: "Walkthrough: Compile a C program on the command line" -description: "Walkthrough that shows how to create a Hello World C program." -ms.custom: "conceptual" -ms.date: 05/09/2022 +title: "Compile a C program on the command line" +description: "Learn how to create a basic, C program by using a text editor, and then compile it by using the command line." +ms.custom: tutorial +ms.date: 03/17/2025 helpviewer_keywords: ["command-line applications [C++], C programs", "Visual C, compiling", "compiling programs [C++]", "C program compiling [C++]"] ms.assetid: 7e74cc2d-54b1-49de-b7ad-d3ae6b39ab8d --- @@ -10,28 +10,27 @@ ms.assetid: 7e74cc2d-54b1-49de-b7ad-d3ae6b39ab8d The Visual Studio build tools include a C compiler that you can use to create everything from basic console programs to full Windows Desktop applications, mobile apps, and more. Microsoft C/C++ (MSVC) is a C and C++ compiler that, in its latest versions, conforms to some of the latest C language standards, including C11 and C17. -This walkthrough shows how to create a basic, "Hello, World"-style C program by using a text editor, and then compile it on the command line. If you'd rather work in C++ on the command line, see [Walkthrough: Compiling a Native C++ Program on the Command Line](walkthrough-compiling-a-native-cpp-program-on-the-command-line.md). If you'd like to try the Visual Studio IDE instead of using the command line, see [Walkthrough: Working with Projects and Solutions (C++)](../ide/walkthrough-working-with-projects-and-solutions-cpp.md) or [Using the Visual Studio IDE for C++ Desktop Development](../ide/using-the-visual-studio-ide-for-cpp-desktop-development.md). +This guide shows how to create a basic, *Hello, World*-style C program by using a text editor, and then compile it on the command line. If you'd rather work in C++ on the command line, see [Walkthrough: Compiling a Native C++ Program on the Command Line](walkthrough-compiling-a-native-cpp-program-on-the-command-line.md). If you'd like to try the Visual Studio IDE instead of using the command line, see [Walkthrough: Working with Projects and Solutions (C++)](../ide/walkthrough-working-with-projects-and-solutions-cpp.md) or [Using the Visual Studio IDE for C++ Desktop Development](../ide/using-the-visual-studio-ide-for-cpp-desktop-development.md). ## Prerequisites -To complete this walkthrough, you must have installed either Visual Studio or the Build Tools for Visual Studio and the optional Desktop development with C++ workload. +- Either Visual Studio or the Build Tools for Visual Studio, and the optional Desktop development with C++ workload + - Visual Studio is a powerful integrated development environment that supports a full-featured editor, resource managers, debuggers, and compilers for many languages and platforms. For information on these features and how to download and install Visual Studio, including the free Visual Studio Community edition, see [Install Visual Studio](/visualstudio/install/install-visual-studio). + - The Build Tools for Visual Studio installs only the command-line toolset, the compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line toolset, download Build Tools for Visual Studio from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) page and run the installer. In the Visual Studio installer, select the **Desktop development with C++** workload (in older versions of Visual Studio, select the **C++ build tools** workload), and choose **Install**. -Visual Studio is a powerful integrated development environment that supports a full-featured editor, resource managers, debuggers, and compilers for many languages and platforms. For information on these features and how to download and install Visual Studio, including the free Visual Studio Community edition, see [Install Visual Studio](/visualstudio/install/install-visual-studio). - -The Build Tools for Visual Studio version of Visual Studio installs only the command-line toolset, the compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line toolset, download Build Tools for Visual Studio from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) page and run the installer. In the Visual Studio installer, select the **Desktop development with C++** workload (in older versions of Visual Studio, select the **C++ build tools** workload), and choose **Install**. - -When you've installed the tools, there's another tool you'll use to build a C or C++ program on the command line. MSVC has complex requirements for the command-line environment to find the tools, headers, and libraries it uses. **You can't use MSVC in a plain command prompt window** without some preparation. You need a *developer command prompt* window, which is a regular command prompt window that has all the required environment variables set. Fortunately, Visual Studio installs shortcuts for you to launch developer command prompts that have the environment set up for command line builds. Unfortunately, the names of the developer command prompt shortcuts and where they're located are different in almost every version of Visual Studio and on different versions of Windows. Your first walkthrough task is to find the right shortcut to use. +- MSVC compiler + - MSVC has complex requirements for the command-line environment to find the tools, headers, and libraries it uses. **You can't use MSVC in a plain command prompt window** without some preparation. You need a *developer command prompt* window, which is a regular command prompt window that has all the required environment variables set. Fortunately, Visual Studio installs shortcuts for you to launch developer command prompts that have the environment set up for command line builds. Unfortunately, the names of the developer command prompt shortcuts and where they're located are different in almost every version of Visual Studio and on different versions of Windows. Your first walkthrough task is to find the right shortcut to use. > [!NOTE] > A developer command prompt shortcut automatically sets the correct paths for the compiler and tools, and for any required headers and libraries. Some of these values are different for each build configuration. You must set these environment values yourself if you don't use one of the shortcuts. For more information, see [Use the MSVC toolset from the command line](./building-on-the-command-line.md). Because the build environment is complex, we strongly recommend you use a developer command prompt shortcut instead of building your own. -These instructions vary depending on which version of Visual Studio you're using. To see the documentation for your preferred version of Visual Studio, use the **Version** selector control. It's found at the top of the table of contents on this page. +These instructions vary depending on which version of Visual Studio you're using. To see the documentation for your preferred version of Visual Studio, use the **Version** selector located at the top of the table of contents on this page. ::: moniker range="msvc-170" ## Open a developer command prompt in Visual Studio 2022 -If you've installed Visual Studio 2022 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2022** folder (not the Visual Studio 2022 app). Choose **Developer Command Prompt for VS 2022** to open the command prompt window. +If you installed Visual Studio 2022 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2022** folder (not the Visual Studio 2022 app). Choose **Developer Command Prompt for VS 2022** to open the command prompt window. ::: moniker-end @@ -39,7 +38,7 @@ If you've installed Visual Studio 2022 on Windows 10 or later, open the Start me ## Open a developer command prompt in Visual Studio 2019 -If you've installed Visual Studio 2019 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2019** folder (not the Visual Studio 2019 app). Choose **Developer Command Prompt for VS 2019** to open the command prompt window. +If you installed Visual Studio 2019 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2019** folder (not the Visual Studio 2019 app). Choose **Developer Command Prompt for VS 2019** to open the command prompt window. ::: moniker-end @@ -47,7 +46,7 @@ If you've installed Visual Studio 2019 on Windows 10 or later, open the Start me ## Open a developer command prompt in Visual Studio 2017 -If you've installed Visual Studio 2017 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2017** folder (not the Visual Studio 2017 app). Choose **Developer Command Prompt for VS 2017** to open the command prompt window. +If you installed Visual Studio 2017 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual Studio 2017** folder (not the Visual Studio 2017 app). Choose **Developer Command Prompt for VS 2017** to open the command prompt window. ::: moniker-end @@ -55,11 +54,11 @@ If you've installed Visual Studio 2017 on Windows 10 or later, open the Start me ## Open a developer command prompt in Visual Studio 2015 -If you've installed Microsoft Visual C++ Build Tools 2015 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual C++ Build Tools** folder. Choose **Visual C++ 2015 x86 Native Tools Command Prompt** to open the command prompt window. +If you installed Microsoft Visual C++ Build Tools 2015 on Windows 10 or later, open the Start menu, and choose **All apps**. Then, scroll down and open the **Visual C++ Build Tools** folder. Choose **Visual C++ 2015 x86 Native Tools Command Prompt** to open the command prompt window. ::: moniker-end -If you're using a different version of Windows, look in your Start menu or Start page for a Visual Studio tools folder that contains a developer command prompt shortcut. You can also use the Windows search function to search for "developer command prompt" and choose one that matches your installed version of Visual Studio. Use the shortcut to open the command prompt window. +If you're using a different version of Windows, look in your Start menu or Start page for a Visual Studio tools folder that contains a developer command prompt shortcut. You can also use the Windows search function to search for *developer command prompt* and choose one that matches your installed version of Visual Studio. Use the shortcut to open the command prompt window. Next, verify that the developer command prompt is set up correctly. In the command prompt window, enter `cl` (or `CL`, case doesn't matter for the compiler name, but it does matter for compiler options). The output should look something like this: @@ -71,19 +70,19 @@ Copyright (C) Microsoft Corporation. All rights reserved. usage: cl [ option... ] filename... [ /link linkoption... ] ``` -There may be differences in the current directory or version numbers, depending on the version of Visual Studio and any updates installed. If the above output is similar to what you see, then you're ready to build C or C++ programs at the command line. +There might be differences in the current directory or version numbers, depending on the version of Visual Studio and any updates installed. If the preceding output is similar to what you see, then you're ready to build C or C++ programs at the command line. > [!NOTE] -> If you get an error such as "'cl' is not recognized as an internal or external command, operable program or batch file," error C1034, or error LNK1104 when you run the **cl** command, then either you are not using a developer command prompt, or something is wrong with your installation of Visual Studio. You must fix this issue before you can continue. +> If you get an error such as **'cl' is not recognized as an internal or external command, operable program or batch file**, error C1034, or error LNK1104 when you run the `cl` command, then either you're not using a developer command prompt, or something is wrong with your installation of Visual Studio. You must fix this issue before you can continue. -If you can't find the developer command prompt shortcut, or if you get an error message when you enter `cl`, then your Visual Studio installation may have a problem. If you're using Visual Studio 2017 or later, try reinstalling the **Desktop development with C++** workload in the Visual Studio installer. For details, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). Or, reinstall the Build Tools from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page. Don't go on to the next section until the `cl` command works. For more information about installing and troubleshooting Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). +If you can't find the developer command prompt shortcut, or if you get an error message when you enter `cl`, then your Visual Studio installation might have a problem. If you're using Visual Studio 2017 or later, try reinstalling the **Desktop development with C++** workload in the Visual Studio installer. For details, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). Or, reinstall the Build Tools from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page. Don't go on to the next section until the `cl` command works. For more information about installing and troubleshooting Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). > [!NOTE] -> Depending on the version of Windows on the computer and the system security configuration, you might have to right-click to open the shortcut menu for the developer command prompt shortcut and then choose **Run as Administrator** to successfully build and run the program that you create by following this walkthrough. +> Depending on the version of Windows on the computer and the system security configuration, you might need to right-click to open the shortcut menu for the developer command prompt shortcut and then choose **Run as Administrator** to successfully build and run the program that you create by following this walkthrough. ## Create a C source file and compile it on the command line -1. In the developer command prompt window, enter `cd c:\` to change the current working directory to the root of your C: drive. Next, enter `md c:\hello` to create a directory, and then enter `cd c:\hello` to change to that directory. This directory will hold your source file and the compiled program. +1. In the developer command prompt window, enter `cd c:\` to change the current working directory to the root of your C: drive. Next, enter `md c:\hello` to create a directory, and then enter `cd c:\hello` to change to that directory. This directory holds your source file and the compiled program. 1. Enter `notepad hello.c` at the developer command prompt. In the Notepad alert dialog that pops up, choose **Yes** to create a new *`hello.c`* file in your working directory. @@ -122,7 +121,7 @@ If you can't find the developer command prompt shortcut, or if you get an error 1. To compile your program, enter `cl hello.c` at the developer command prompt. - You can see the executable program name, hello.exe, in the lines of output information that the compiler displays: + You can see the executable program name, *`hello.exe`*, in the lines of output information that the compiler displays: ```Output c:\hello>cl hello.c @@ -138,11 +137,11 @@ If you can't find the developer command prompt shortcut, or if you get an error ``` > [!NOTE] - > If you get an error such as "'cl' is not recognized as an internal or external command, operable program or batch file," error C1034, or error LNK1104, your developer command prompt is not set up correctly. For information on how to fix this issue, go back to the **Open a developer command prompt** section. + > If you get an error such as **'cl' is not recognized as an internal or external command, operable program or batch file,** error C1034, or error LNK1104, your developer command prompt isn't set up correctly. For information on how to fix this issue, go back to the **Open a developer command prompt** section. > > If you get a different compiler or linker error or warning, review your source code to correct any errors, then save it and run the compiler again. For information about specific errors, use the search box at the top of this page to look for the error number. -1. To run your program, enter `hello` at the command prompt. +1. To run your program, enter *hello* at the command prompt. The program displays this text and then exits: @@ -152,9 +151,9 @@ If you can't find the developer command prompt shortcut, or if you get an error Congratulations, you've compiled and run a C program by using the command line. -## Next steps +## Advanced steps -This "Hello, World" example is about as basic as a C program can get. Real world programs have header files and more source files, link in libraries, and do useful work. +This *Hello, World* example is about as basic as a C program can get. Real world programs have header files and more source files, link in libraries, and do useful work. You can use the steps in this walkthrough to build your own C code instead of typing the sample code shown. You can also build many C code sample programs that you find elsewhere. To compile a program that has more source code files, enter them all on the command line: @@ -164,23 +163,23 @@ The compiler outputs a program called *`file1.exe`*. To change the name to *`pro `cl file1.c file2.c file3.c /link /out:program1.exe` -And to catch more programming mistakes automatically, we recommend you compile by using either the [/W3](reference/compiler-option-warning-level.md) or [/W4](reference/compiler-option-warning-level.md) warning level option: +And to catch more programming mistakes automatically, we recommend you compile by using either the [/W3 or /W4](reference/compiler-option-warning-level.md) warning level option: `cl /W4 file1.c file2.c file3.c /link /out:program1.exe` -The compiler, cl.exe, has many more options you can apply to build, optimize, debug, and analyze your code. For a quick list, enter `cl /?` at the developer command prompt. You can also compile and link separately and apply linker options in more complex build scenarios. For more information on compiler and linker options and usage, see [C/C++ Building Reference](reference/c-cpp-building-reference.md). +The compiler, *`cl.exe`*, has many more options you can apply to build, optimize, debug, and analyze your code. For a quick list, enter `cl /?` at the developer command prompt. You can also compile and link separately and apply linker options in more complex build scenarios. For more information on compiler and linker options and usage, see [C/C++ Building Reference](reference/c-cpp-building-reference.md). You can use NMAKE and makefiles, or MSBuild and project files to configure and build more complex projects on the command line. For more information on using these tools, see [NMAKE Reference](reference/nmake-reference.md) and [MSBuild](msbuild-visual-cpp.md). -The C and C++ languages are similar, but not the same. The Microsoft C/C++ compiler (MSVC) uses a basic rule to determine which language to use when it compiles your code. By default, the MSVC compiler treats all files that end in *`.c`* as C source code, and all files that end in *`.cpp`* as C++ source code. To force the compiler to treat all files as C no matter the file name extension, use the [/TC](reference/tc-tp-tc-tp-specify-source-file-type.md) compiler option. +The C and C++ languages are similar, but not the same. The MSVC compiler uses a basic rule to determine which language to use when it compiles your code. By default, the MSVC compiler treats all files that end in *`.c`* as C source code, and all files that end in *`.cpp`* as C++ source code. To force the compiler to treat all files as C no matter the file name extension, use the [/TC](reference/tc-tp-tc-tp-specify-source-file-type.md) compiler option. -By default, MSVC is compatible with the ANSI C89 and ISO C99 standards, but not strictly conforming. In most cases, portable C code will compile and run as expected. The compiler provides optional support for the changes in ISO C11/C17. To compile with C11/C17 support, use the compiler flag **`/std:c11`** or **`/std:c17`**. C11/C17 support requires Windows SDK 10.0.20201.0 or later. Windows SDK 10.0.22000.0 or later is recommended. You can download the latest SDK from the [Windows SDK](https://developer.microsoft.com/windows/downloads/windows-sdk/) page. For more information, and instructions on how to install and use this SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md). +By default, MSVC is compatible with the ANSI C89 and ISO C99 standards, but not strictly conforming. In most cases, portable C code compiles and runs as expected. The compiler provides optional support for the changes in ISO C11/C17. To compile with C11/C17 support, use the compiler flag `/std:c11` or `/std:c17`. C11/C17 support requires Windows SDK 10.0.20201.0 or later. Windows SDK 10.0.22000.0 or later is recommended. You can download the latest SDK from the [Windows SDK](https://developer.microsoft.com/windows/downloads/windows-sdk/) page. For more information, and instructions on how to install and use this SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md). Certain library functions and POSIX function names are deprecated by MSVC. The functions are supported, but the preferred names have changed. For more information, see [Security Features in the CRT](../c-runtime-library/security-features-in-the-crt.md) and [Compiler Warning (level 3) C4996](../error-messages/compiler-warnings/compiler-warning-level-3-c4996.md). -## See also +## Related content -[Walkthrough: Creating a Standard C++ Program (C++)](../windows/walkthrough-creating-a-standard-cpp-program-cpp.md)\ -[C Language Reference](../c-language/c-language-reference.md)\ -[Projects and build systems](projects-and-build-systems-cpp.md)\ -[Compatibility](../c-runtime-library/compatibility.md) +- [Walkthrough: Create a Standard C++ Program](../windows/walkthrough-creating-a-standard-cpp-program-cpp.md)\ +- [C Language Reference](../c-language/c-language-reference.md)\ +- [C/C++ projects and build systems](projects-and-build-systems-cpp.md)\ +- [Compatibility](../c-runtime-library/compatibility.md) diff --git a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md index ed1941b880..1602a78fc5 100644 --- a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md +++ b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md @@ -1,59 +1,55 @@ --- -title: "Walkthrough: Create and use your own Dynamic Link Library (C++)" -description: "Use C++ to create a Windows dynamic-link library (DLL) in Visual Studio." +title: "Create and use your own dynamic-link library (C++)" +description: "Learn how to use C++ to create a Windows dynamic-link library (DLL) in Visual Studio." ms.topic: tutorial -ms.date: 12/09/2021 +ms.date: 03/17/2025 helpviewer_keywords: ["libraries [C++], DLLs", "DLLs [C++], walkthroughs"] --- -# Walkthrough: Create and use your own Dynamic Link Library (C++) +# Walkthrough: Create and use your own dynamic-link library (C++) -This step-by-step walkthrough shows how to use the Visual Studio IDE to create your own dynamic link library (DLL) written in Microsoft C++ (MSVC). Then it shows how to use the DLL from another C++ app. DLLs (also known as *shared libraries* in UNIX-based operating systems) are one of the most useful kinds of Windows components. You can use them as a way to share code and resources, and to shrink the size of your apps. DLLs can even make it easier to service and extend your apps. +This step-by-step walkthrough explains how to use the Visual Studio IDE to create your own dynamic-link library (DLL) written in Microsoft C++ (MSVC), and how to use the DLL from another C++ app. DLLs, also known as *shared libraries* in UNIX-based operating systems, are one of the most useful kinds of Windows components. You can use them to share code and resources, and to shrink the size of your apps. DLLs can even make it easier to service and extend your apps. -In this walkthrough, you'll create a DLL that implements some math functions. Then you'll create a console app that uses the functions from the DLL. You'll also get an introduction to some of the programming techniques and conventions used in Windows DLLs. +In this walkthrough, you create a DLL that implements some math functions. Then you create a console app that uses the functions from the DLL. You also get an introduction to some of the programming techniques and conventions used in Windows DLLs. -This walkthrough covers these tasks: +This guide covers the following steps: - Create a DLL project in Visual Studio. - - Add exported functions and variables to the DLL. - - Create a console app project in Visual Studio. - - Use the functions and variables imported from the DLL in the console app. - - Run the completed app. Like a statically linked library, a DLL _exports_ variables, functions, and resources by name. A client app _imports_ the names to use those variables, functions, and resources. Unlike a statically linked library, Windows connects the imports in your app to the exports in a DLL at load time or at run time, instead of connecting them at link time. Windows requires extra information that isn't part of the standard C++ compilation model to make these connections. The MSVC compiler implements some Microsoft-specific extensions to C++ to provide this extra information. We explain these extensions as we go. -This walkthrough creates two Visual Studio solutions; one that builds the DLL, and one that builds the client app. The DLL uses the C calling convention. It can be called from apps written in other programming languages, as long as the platform, calling conventions, and linking conventions match. The client app uses _implicit linking_, where Windows links the app to the DLL at load-time. This linking lets the app call the DLL-supplied functions just like the functions in a statically linked library. +This walkthrough creates two Visual Studio solutions: one that builds the DLL, and one that builds the client app. The DLL uses the C calling convention. It can be called from apps written in other programming languages, as long as the platform, calling conventions, and linking conventions match. The client app uses _implicit linking_, where Windows links the app to the DLL at load time. This linking lets the app call the DLL-supplied functions just like the functions in a statically linked library. -This walkthrough doesn't cover some common situations. The code doesn't show the use of C++ DLLs by other programming languages. It doesn't show how to [create a resource-only DLL](creating-a-resource-only-dll.md), or how to use [explicit linking](linking-an-executable-to-a-dll.md#linking-explicitly) to load DLLs at run-time rather than at load-time. Rest assured, you can use MSVC and Visual Studio to do all these things. +This walkthrough doesn't cover some common situations. The code doesn't show the use of C++ DLLs by other programming languages. It doesn't show how to [create a resource-only DLL](creating-a-resource-only-dll.md), or how to use [explicit linking](linking-an-executable-to-a-dll.md#linking-explicitly) to load DLLs at run time rather than at load time. Rest assured, you can use MSVC and Visual Studio to do all these things. -Even though the code of the DLL is written in C++, we've used C-style interfaces for the exported functions. There are two main reasons for this: First, many other languages support imports of C-style functions. The client app doesn't have to be written in C++. Second, it avoids some common pitfalls related to exported classes and member functions. It's easy to make hard-to-diagnose errors when exporting classes, since everything referred to within a class declaration has to have an instantiation that's also exported. This restriction applies to DLLs, but not static libraries. If your classes are plain-old-data style, you shouldn't run into this issue. +Even though the code of the DLL is written in C++, we use C-style interfaces for the exported functions. There are two main reasons for this: First, many other languages support imports of C-style functions. The client app doesn't have to be written in C++. Second, it avoids some common pitfalls related to exported classes and member functions. It's easy to make hard-to-diagnose errors when exporting classes, since everything referred to within a class declaration has to have an instantiation that's also exported. This restriction applies to DLLs, but not static libraries. If your classes are plain-old-data style, you shouldn't run into this issue. For links to more information about DLLs, see [Create C/C++ DLLs in Visual Studio](dlls-in-visual-cpp.md). For more information about implicit linking and explicit linking, see [Determine which linking method to use](linking-an-executable-to-a-dll.md#determining-which-linking-method-to-use). For information about creating C++ DLLs for use with programming languages that use C-language linkage conventions, see [Exporting C++ functions for use in C-language executables](exporting-cpp-functions-for-use-in-c-language-executables.md). For information about how to create DLLs for use with .NET languages, see [Calling DLL Functions from Visual Basic Applications](calling-dll-functions-from-visual-basic-applications.md). ## Prerequisites -- A computer that runs Microsoft Windows 7 or later versions. We recommend the latest version of Windows for the best development experience. +- Microsoft Windows 7 or later. We recommend the latest version of Windows for the best development experience. ::: moniker range=">=msvc-150" -- A copy of Visual Studio. For information on how to download and install Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). When you run the installer, make sure that the **Desktop development with C++** workload is checked. Don't worry if you didn't install this workload when you installed Visual Studio. You can run the installer again and install it now. +- Visual Studio. To learn how to download and install Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). When you run the installer, make sure that the **Desktop development with C++** workload is checked. Don't worry if you didn't install this workload when you installed Visual Studio. You can run the installer again and install it now. - ![Visual Studio Installer, Desktop development with C++ workload.](media/desktop-development-with-cpp.png "Desktop development with C++") + :::image type="content" source="media/desktop-development-with-cpp.png" alt-text="Screenshot of the Visual Studio Installer, Desktop development with C++ workload."::: ::: moniker-end ::: moniker range="msvc-140" -- A copy of Visual Studio. For information on how to download and install Visual Studio 2015, see [Install Visual Studio 2015](/visualstudio/install/install-visual-studio-2015?view=vs-2015&preserve-view=true). Use a **Custom** installation to install the C++ compiler and tools, since they're not installed by default. +- Visual Studio. For information on how to download and install Visual Studio 2015, see [Install Visual Studio 2015](/visualstudio/install/install-visual-studio-2015?view=vs-2015&preserve-view=true). Use a **Custom** installation to install the C++ compiler and tools, since they're not installed by default. ::: moniker-end - An understanding of the basics of using the Visual Studio IDE. If you've used Windows desktop apps before, you can probably keep up. For an introduction, see [Visual Studio IDE feature tour](/visualstudio/ide/visual-studio-ide). -- An understanding of enough of the fundamentals of the C++ language to follow along. Don't worry, we don't do anything too complicated. +- Some familiarity with the C++ language. Don't worry, we don't do anything too complicated. ::: moniker range="msvc-150" @@ -64,15 +60,15 @@ For links to more information about DLLs, see [Create C/C++ DLLs in Visual Studi ## Create the DLL project -In this set of tasks, you create a project for your DLL, add code, and build it. To begin, start the Visual Studio IDE, and sign in if you need to. The instructions vary slightly depending on which version of Visual Studio you're using. Make sure you have the correct version selected in the control in the upper left of this page. +In the following steps, you create a project for your DLL, add code, and build it. To begin, start the Visual Studio IDE, and sign in if you need to. The instructions vary slightly depending on which version of Visual Studio you're using. To see the steps for your preferred version of Visual Studio, use the **Version** selector located at the top of the table of contents on this page. ::: moniker range=">=msvc-160" -### To create a DLL project in Visual Studio 2019 +### To create a DLL project in Visual Studio 1. On the menu bar, choose **File** > **New** > **Project** to open the **Create a New Project** dialog box. - ![Screenshot of the Create a new project dialog with the Dynamic Link Library template highlighted.](media/create-new-dll-project-2019.png "Create the MathLibrary project") + :::image type="content" source="media/create-new-dll-project-2019.png" alt-text="Screenshot of the Create a new project dialog box with the dynamic-link library template highlighted."::: 1. At the top of the dialog, set **Language** to **C++**, set **Platform** to **Windows**, and set **Project type** to **Library**. @@ -84,7 +80,7 @@ In this set of tasks, you create a project for your DLL, add code, and build it. When the solution is created, you can see the generated project and source files in the **Solution Explorer** window in Visual Studio. -![Screenshot of the Solution Explorer window with the Math Library project highlighted.](media/mathlibrary-solution-explorer-162.png "Generated solution in Visual Studio") + :::image type="content" source="media/mathlibrary-solution-explorer-162.png" alt-text="Screenshot of the Solution Explorer window with the MathLibrary project highlighted."::: ::: moniker-end @@ -96,13 +92,13 @@ When the solution is created, you can see the generated project and source files 1. In the left pane of the **New Project** dialog box, select **Installed** > **Visual C++** > **Windows Desktop**. In the center pane, select **Dynamic-Link Library (DLL)**. Enter *MathLibrary* in the **Name** box to specify a name for the project. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. - ![Screenshot of the New Project dialog box showing Math Library in the Name text box.](media/mathlibrary-new-project-name-159.png "Name the MathLibrary project") + :::image type="content" source="media/mathlibrary-new-project-name-159.png" alt-text="Screenshot of the New Project dialog box in Visual Studio 2017 showing Math Library in the Name text box."::: 1. Choose the **OK** button to create the project. When the solution is created, you can see the generated project and source files in the **Solution Explorer** window in Visual Studio. -![Screenshot of the Solution Explorer window with the Math Library highlighted.](media/mathlibrary-solution-explorer-159.png "Generated solution in Visual Studio") +:::image type="content" source="media/mathlibrary-solution-explorer-159.png" alt-text="Screenshot of the Solution Explorer window in Visual Studio 2017 with the Math Library highlighted."::: ::: moniker-end @@ -114,21 +110,21 @@ When the solution is created, you can see the generated project and source files 1. In the left pane of the **New Project** dialog box, expand **Installed** > **Templates**, and select **Visual C++**, and then in the center pane, select **Win32 Console Application**. Enter *MathLibrary* in the **Name** edit box to specify a name for the project. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. - ![Screenshot of the New Project dialog box showing Math Library in the Name text box.](media/mathlibrary-project-name.png "Name the MathLibrary project") + :::image type="content" source="media/mathlibrary-project-name.png" alt-text="Screenshot of the New Project dialog box in Visual Studio 2015 showing MathLibrary in the Name text box."::: 1. Choose the **OK** button to dismiss the **New Project** dialog and start the **Win32 Application Wizard**. - ![Screenshot of the Win32 Application Wizard Overview page.](media/mathlibrary-project-wizard-1.png "Win32 Application Wizard Overview") + :::image type="content" source="media/mathlibrary-project-wizard-1.png" alt-text="Screenshot of the Win32 Application Wizard Overview page."::: 1. Choose the **Next** button. On the **Application Settings** page, under **Application type**, select **DLL**. - ![Screenshot of the Win32 Application Wizard Application Settings Page.](media/mathlibrary-project-wizard-2.png "Create DLL in Win32 Application Wizard") + :::image type="content" source="media/mathlibrary-project-wizard-2.png" alt-text="Screenshot of the Win32 Application Wizard Application Settings Page."::: 1. Choose the **Finish** button to create the project. When the wizard completes the solution, you can see the generated project and source files in the **Solution Explorer** window in Visual Studio. -![Screenshot of the Solution Explorer window with the Math Library highlighted.](media/mathlibrary-solution-explorer-153.png "Generated solution in Visual Studio") +:::image type="content" source="media/mathlibrary-solution-explorer-153.png" alt-text="Screenshot of the Solution Explorer window in Visual Studio 2015 with the MathLibrary highlighted."::: ::: moniker-end @@ -140,11 +136,11 @@ Right now, this DLL doesn't do very much. Next, you'll create a header file to d 1. In the **Add New Item** dialog box, in the left pane, select **Visual C++**. In the center pane, select **Header File (.h)**. Specify *MathLibrary.h* as the name for the header file. - ![Screenshot of the Add New Item dialog with the C plus plus Header File template selected, and MathLibrary.h entered in the Name textbox.](media/mathlibrary-add-new-item-header-file.png "Add header file in Add New Item dialog") + :::image type="content" source="media/mathlibrary-add-new-item-header-file.png" alt-text="Screenshot of the Add New Item dialog with the C plus plus Header File template selected, and MathLibrary.h entered in the Name textbox."::: 1. Choose the **Add** button to generate a blank header file, which is displayed in a new editor window. - ![Screenshot of the empty MathLibrary.h file in the editor.](media/edit-empty-mathlibrary-header.png "Empty MathLibrary.h file in editor") + :::image type="content" source="media/edit-empty-mathlibrary-header.png" alt-text="Screenshot of the empty MathLibrary.h file in the editor."::: 1. Replace the contents of the header file with this code: @@ -329,7 +325,7 @@ When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro set ::: moniker-end -To verify that everything works so far, compile the dynamic link library. To compile, choose **Build** > **Build Solution** on the menu bar. The DLL and related compiler output are placed in a folder called *Debug* directly below the solution folder. If you create a Release build, the output is placed in a folder called *Release*. The output should look something like this: +To verify that everything works so far, compile the DLL. To compile, choose **Build** > **Build Solution** on the menu bar. The DLL and related compiler output are placed in a folder called *Debug* directly below the solution folder. If you create a Release build, the output is placed in a folder called *Release*. The output should look something like this: ::: moniker range=">=msvc-160" @@ -380,9 +376,9 @@ Congratulations, you've created a DLL using Visual Studio! Next, you'll create a ## Create a client app that uses the DLL -When you create a DLL, think about how client apps may use it. To call the functions or access the data exported by a DLL, client source code must have the declarations available at compile time. At link time, the linker requires information to resolve the function calls or data accesses. A DLL supplies this information in an *import library*, a file that contains information about how to find the functions and data, instead of the actual code. And at run time, the DLL must be available to the client, in a location that the operating system can find. +When you create a DLL, think about how client apps might use it. To call the functions or access the data exported by a DLL, client source code must have the declarations available at compile time. At link time, the linker requires information to resolve the function calls or data accesses. A DLL supplies this information in an *import library*, a file that contains information about how to find the functions and data, instead of the actual code. And at run time, the DLL must be available to the client, in a location that the operating system can find. -Whether it's your own or from a third-party, your client app project needs several pieces of information to use a DLL. It needs to find the headers that declare the DLL exports, the import libraries for the linker, and the DLL itself. One solution is to copy all of these files into your client project. For third-party DLLs that are unlikely to change while your client is in development, this method may be the best way to use them. However, when you also build the DLL, it's better to avoid duplication. If you make a local copy of DLL files that are under development, you may accidentally change a header file in one copy but not the other, or use an out-of-date library. +Whether it's your own or from a third-party, your client app project needs several pieces of information to use a DLL. It needs to find the headers that declare the DLL exports, the import libraries for the linker, and the DLL itself. One solution is to copy all of these files into your client project. For third-party DLLs that are unlikely to change while your client is in development, this method might be the best way to use them. However, when you also build the DLL, it's better to avoid duplication. If you make a local copy of DLL files that are under development, you might accidentally change a header file in one copy but not the other, or use an out-of-date library. To avoid out-of-sync code, we recommend you set the include path in your client project to include the DLL header files directly from your DLL project. Also, set the library path in your client project to include the DLL import libraries from the DLL project. And finally, copy the built DLL from the DLL project into your client build output directory. This step allows your client app to use the same DLL code you build. @@ -412,7 +408,7 @@ A minimal console application project is created for you. The name for the main 1. To create a C++ app that uses the DLL that you created, on the menu bar, choose **File** > **New** > **Project**. -1. In the left pane of the **New Project** dialog, select **Windows Desktop** under **Installed** > **Visual C++**. In the center pane, select **Windows Console Application**. Specify the name for the project, *MathClient*, in the **Name** edit box. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. +1. In the left pane of the **New Project** dialog, select **Windows Desktop** under **Installed** > **Visual C++**. In the center pane, select **Windows Console Application**. Specify the name for the project, *MathClient*, in the **Name** edit box. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. ![Screenshot of the New Project dialog box with Installed > Visual C plus plus > Windows Desktop selected, Windows Console Application highlighted, and Math Client typed in the Name text box.](media/mathclient-new-project-name-159.png "Name the client project") @@ -448,13 +444,13 @@ Next, to call the MathLibrary functions in your source code, your project must i 1. Right-click on the **MathClient** node in **Solution Explorer** to open the **Property Pages** dialog. -1. In the **Configuration** drop-down box, select **All Configurations** if it's not already selected. +1. In the **Configuration** dropdown box, select **All Configurations** if it's not already selected. 1. In the left pane, select **Configuration Properties** > **C/C++** > **General**. -1. In the property pane, select the drop-down control next to the **Additional Include Directories** edit box, and then choose **Edit**. +1. In the property pane, select the dropdown control next to the **Additional Include Directories** edit box, and then choose **Edit**. - ![Screenshot of the Property Pages dialog showing the Edit command in the Additional Include Directories property drop-down.](media/mathclient-additional-include-directories-property.png "Edit the Additional Include Directories property") + ![Screenshot of the Property Pages dialog showing the Edit command in the Additional Include Directories property dropdown.](media/mathclient-additional-include-directories-property.png "Edit the Additional Include Directories property") 1. Double-click in the top pane of the **Additional Include Directories** dialog box to enable an edit control. Or, choose the folder icon to create a new entry. @@ -506,43 +502,43 @@ To fix this issue, you could copy the library file directly into your client app 1. Right-click on the **MathClient** node in **Solution Explorer** and choose **Properties** to open the **Property Pages** dialog. -1. In the **Configuration** drop-down box, select **All Configurations** if it's not already selected. It ensures that any property changes apply to both Debug and Release builds. +1. In the **Configuration** dropdown box, select **All Configurations** if it's not already selected. It ensures that any property changes apply to both Debug and Release builds. -1. In the left pane, select **Configuration Properties** > **Linker** > **Input**. In the property pane, select the drop-down control next to the **Additional Dependencies** edit box, and then choose **Edit**. +1. In the left pane, select **Configuration Properties** > **Linker** > **Input**. In the property pane, select the dropdown control next to the **Additional Dependencies** edit box, and then choose **Edit**. - ![Screenshot of the Property Pages dialog showing the Edit command in the Linker > Input > Additional Dependencies property drop-down.](media/mathclient-additional-dependencies-property.png "Edit the Additional Dependencies property") + :::image type="content" source="media/mathclient-additional-dependencies-property.png" alt-text="Screenshot of the Property Pages dialog box under Input that shows the Edit command in the Additional Dependencies property dropdown."::: 1. In the **Additional Dependencies** dialog, add *MathLibrary.lib* to the list in the top edit control. - ![Screenshot of the Additional Dependencies dialog showing the MathLibrary.lib file.](media/mathclient-additional-dependencies.png "Add the library dependency") + :::image type="content" source="media/mathclient-additional-dependencies.png" alt-text="Screenshot of the Additional Dependencies dialog box showing the MathLibrary.lib file."::: 1. Choose **OK** to go back to the **Property Pages** dialog box. -1. In the left pane, select **Configuration Properties** > **Linker** > **General**. In the property pane, select the drop-down control next to the **Additional Library Directories** edit box, and then choose **Edit**. +1. In the left pane, select **Configuration Properties** > **Linker** > **General**. In the property pane, select the dropdown control next to the **Additional Library Directories** edit box, and then choose **Edit**. - ![Screenshot of the Property Pages dialog showing the Edit command in the Linker > General > Additional Library Directories property drop-down.](media/mathclient-additional-library-directories-property.png "Edit the Additional Library Directories property") + :::image type="content" source="media/mathclient-additional-library-directories-property.png" alt-text="Screenshot of the Property Pages dialog box under General that shows the Edit command in the Additional Library Directories property dropdown."::: -1. Double-click in the top pane of the **Additional Library Directories** dialog box to enable an edit control. In the edit control, specify the path to the location of the **MathLibrary.lib** file. By default, it's in a folder called *Debug* directly under the DLL solution folder. If you create a release build, the file is placed in a folder called *Release*. You can use the `$(IntDir)` macro so that the linker can find your DLL, no matter which kind of build you create. If you followed the directions to put your client project in a separate solution from the DLL project, the relative path should look like this: +1. Double-click in the top pane of the **Additional Library Directories** dialog box to enable an edit control. In the edit control, specify the path to the location of the *MathLibrary.lib* file. By default, it's in a folder called *Debug* directly under the DLL solution folder. If you create a release build, the file is placed in a folder called *Release*. You can use the `$(IntDir)` macro so that the linker can find your DLL, no matter which kind of build you create. If you followed the directions to put your client project in a separate solution from the DLL project, the relative path should look like this: `..\..\MathLibrary\$(IntDir)` If your DLL and client projects are in other locations, adjust the relative path to match. - ![Screenshot of the Additional Library Directories dialog.](media/mathclient-additional-library-directories.png "Add the library directory") + :::image type="content" source="media/mathclient-additional-library-directories.png" alt-text="Screenshot of the Additional Library Directories dialog."::: 1. Once you've entered the path to the library file in the **Additional Library Directories** dialog box, choose the **OK** button to go back to the **Property Pages** dialog box. Choose **OK** to save the property changes. Your client app can now compile and link successfully, but it still doesn't have everything it needs to run. When the operating system loads your app, it looks for the MathLibrary DLL. If it can't find the DLL in certain system directories, the environment path, or the local app directory, the load fails. Depending on the operating system, you'll see an error message like this: -![Screenshot of the error dialog, MathLibrary DLL not found.](media/mathclient-system-error-mathlibrary-dll-not-found.png "MathLibrary DLL not found error") +:::image type="content" source="media/mathclient-system-error-mathlibrary-dll-not-found.png" alt-text="Screenshot of the error dialog, MathLibrary DLL not found."::: -One way to avoid this issue is to copy the DLL to the directory that contains your client executable as part of the build process. You can add a **Post-Build Event** to your project, to add a command that copies the DLL to your build output directory. The command specified here copies the DLL only if it's missing or has changed. It uses macros to copy to and from the Debug or Release locations, based on your build configuration. +One way to avoid this issue is to copy the DLL to the directory that contains your client executable as part of the build process. You can add a *post-build event* to your project, to add a command that copies the DLL to your build output directory. The command specified here copies the DLL only if it's missing or has changed. It uses macros to copy to and from the Debug or Release locations, based on your build configuration. ### To copy the DLL in a post-build event 1. Right-click on the **MathClient** node in **Solution Explorer** and choose **Properties** to open the **Property Pages** dialog. -1. In the **Configuration** drop-down box, select **All Configurations** if it isn't already selected. +1. In the **Configuration** dropdown box, select **All Configurations** if it isn't already selected. 1. In the left pane, select **Configuration Properties** > **Build Events** > **Post-Build Event**. @@ -552,7 +548,7 @@ One way to avoid this issue is to copy the DLL to the directory that contains yo If your DLL and client projects are in other directories, change the relative path to the DLL to match. - ![Screenshot of the Property Pages dialog showing the post build event command line property.](media/mathclient-post-build-command-line.png "Add the post-build command") + :::image type="content" source="media/mathclient-post-build-command-line.png" alt-text="Screenshot of the Property Pages dialog showing the post build event command line property."::: 1. Choose the **OK** button to save your changes to the project properties. @@ -568,7 +564,7 @@ Now your client app has everything it needs to build and run. Build the applicat Congratulations, you've created an application that calls functions in your DLL. Now run your application to see what it does. On the menu bar, choose **Debug** > **Start Without Debugging**. Visual Studio opens a command window for the program to run in. The last part of the output should look like: -![Screenshot of the command window output when you start the client app without debugging.](media/mathclient-run-without-debugging.png "Start the client app without debugging") +:::image type="content" source="media/mathclient-run-without-debugging.png" alt-text="Screenshot of the command window output when you start the client app without debugging."::: Press any key to dismiss the command window. @@ -576,6 +572,6 @@ Now that you've created a DLL and a client application, you can experiment. Try When you deploy your app, you must also deploy the DLLs it uses. The simplest way to make the DLLs that you build, or that you include from third parties, available is to put them in the same directory as your app. It's known as *app-local deployment*. For more information about deployment, see [Deployment in Visual C++](../windows/deployment-in-visual-cpp.md). -## See also +## Related content -[Calling DLL Functions from Visual Basic Applications](calling-dll-functions-from-visual-basic-applications.md) +- [Calling DLL Functions from Visual Basic Applications](calling-dll-functions-from-visual-basic-applications.md) diff --git a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md index 1b2da84b17..2f6cbc0a5f 100644 --- a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md +++ b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md @@ -1,36 +1,37 @@ --- -title: "Walkthrough: Create a traditional Windows Desktop application (C++)" -description: "How to create a minimal, traditional Windows Desktop application using Visual Studio, C++, and the Win32 API" +title: "Create a traditional Windows Desktop application (C++)" +description: "Learn how to create a minimal, traditional Windows Desktop application using Visual Studio, C++, and the Win32 API." ms.custom: "get-started-article" -ms.date: 10/10/2023 +ms.topic: tutorial +ms.date: 03/17/2025 helpviewer_keywords: ["Windows applications [C++], Win32", "Windows Desktop applications [C++]", "Windows API [C++]"] --- # Walkthrough: Create a traditional Windows Desktop application (C++) -This walkthrough shows how to create a traditional Windows desktop application in Visual Studio. The application you create uses the Windows API to display "Hello, Windows desktop!" in a window. You can use the code that you develop in this walkthrough as a pattern to create Windows desktop applications. +This walkthrough shows how to create a traditional Windows desktop application in Visual Studio. The application you create uses the Windows API to display *Hello, Windows desktop!* in a window. You can use the code that you develop in this walkthrough as a pattern to create Windows desktop applications. -The Windows API (also known as the Win32 API, Windows Desktop API, and Windows Classic API) is a C-language-based framework for creating Windows applications. It has been used to create Windows applications for decades. More advanced and easier-to-program frameworks have been built on top of the Windows API. For example, MFC, ATL, the .NET frameworks. Even the most modern Windows Runtime code for UWP and Store apps written in C++/WinRT uses the Windows API underneath. For more information about the Windows API, see [Windows API Index](/windows/win32/apiindex/windows-api-list). +The Windows API (also known as the Win32 API, Windows Desktop API, and Windows Classic API) is a C-language-based framework for creating Windows applications. It has been used to create Windows applications for decades. More advanced and easier-to-program frameworks have been built on top of the Windows API, for example, the MFC, ATL, and .NET frameworks. Even the most modern Windows Runtime code for UWP and Store apps written in C++/WinRT uses the Windows API underneath. For more information about the Windows API, see [Windows API Index](/windows/win32/apiindex/windows-api-list). > [!IMPORTANT] -> The [Build the code](#build-the-code) section at the end of this document shows the complete code. This walkthrough covers the various pieces of code that go into a Windows app, but you won't code as you go because some details are omitted in the code snippets to focus on the most important parts. You can copy the complete code and paste it into your project at the end. +> The [Build the code](#build-the-code) section at the end of this article shows the complete code. This walkthrough covers the various pieces of code that go into a Windows app, but some details are omitted in the code snippets to focus on the most important parts. You can copy the complete code and paste it into your project at the end. ## Prerequisites -- A computer that runs Microsoft Windows 7 or later versions. We recommend Windows 11 or later for the best development experience. +- Microsoft Windows 7 or later versions. We recommend Windows 11 or later for the best development experience. -- A copy of Visual Studio. For information on how to download and install Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). When you run the installer, make sure that the **Desktop development with C++** workload is checked. Don't worry if you didn't install this workload when you installed Visual Studio. You can run the installer again and install it now. +- Visual Studio. For information on how to download and install Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). When you run the installer, make sure that the **Desktop development with C++** workload is checked. Don't worry if you didn't install this workload when you installed Visual Studio. You can run the installer again and install it now. - ![Screenshot of the Desktop development with C++ workload in the Visual Studio Installer which says: build classic Windows-based apps using the power of the Visual C++ toolset](../build/media/desktop-development-with-cpp.png) + :::image type="content" source="../build/media/desktop-development-with-cpp.png" alt-text="Screenshot of the Desktop development with C plus plus workload in the Visual Studio Installer."::: -- A basic understanding of using the Visual Studio IDE. If you've used Windows desktop apps before, you can probably keep up. For an introduction, see [Visual Studio IDE feature tour](/visualstudio/ide/visual-studio-ide). +- A basic understanding of how to use the Visual Studio IDE. If you've used Windows desktop apps before, you can probably keep up. For an introduction, see [Visual Studio IDE feature tour](/visualstudio/ide/visual-studio-ide). -- An understanding of enough of the fundamentals of the C++ language to follow along. Don't worry, we don't do anything too complicated. +- Some familiarity with the C++ language. Don't worry, we don't do anything too complicated. ## Create a Windows desktop project -Follow these steps to create your first Windows desktop project. Per the note at the beginning of this walkthrough, the completed code is available in the [Build the code](#build-the-code) section at the end of the walkthrough. Go ahead and follow the steps to create the project, but hold off pasting the following sections of code until the end, when the complete application code is presented. Some details are omitted in the code snippets to focus on the most important parts. You can copy the complete code and paste it into your project at the end. +Follow these steps to create your first Windows desktop project. As noted at the beginning of this article, the completed code is available in the [Build the code](#build-the-code) section at the end of the walkthrough. Go ahead and follow the steps to create the project, but hold off pasting the following sections of code until the end, when the complete application code is presented. Some details are omitted in the code snippets to focus on the most important parts. You can copy the complete code and paste it into your project at the end. -To simplify the explanation. To see the documentation for your preferred version of Visual Studio, use the **Version** selector control. It's located at the top of the table of contents on this page. +To see the steps for your preferred version of Visual Studio, use the **Version** selector located at the top of the table of contents on this page. ::: moniker range=">=msvc-160" @@ -48,13 +49,13 @@ To simplify the explanation. To see the documentation for your preferred version 1. In **Solution Explorer**, right-click the **DesktopApp** project, choose **Add**, and then choose **New Item**. - :::image type="complex" source="../build/media/desktop-app-project-add-new-item-153.gif" alt-text="An animation showing adding a new item to DesktopApp Project in Visual Studio 2019."::: + :::image type="complex" source="../build/media/desktop-app-project-add-new-item-153.gif" alt-text="Animation showing adding a new item to DesktopApp Project in Visual Studio 2019."::: The animation shows right-clicking on the project name in Solution Explorer, choosing Add in the menu that appears, and then choosing New Item. :::image-end::: - + 1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. - ![Screenshot of the Add New Item dialog box in Visual Studio 2019. The C plus plus File (.cpp) option is selected. The name field is set to Hello Windows Desktop.cpp.](../build/media/desktop-app-add-cpp-file-153.png) + :::image type="content" source="../build/media/desktop-app-add-cpp-file-153.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2019. The C plus plus File (.cpp) option is selected. The name field is set to Hello Windows Desktop.cpp."::: Your project is now created and your source file is opened in the editor. @@ -70,7 +71,7 @@ Your project is now created and your source file is opened in the editor. In the **Name** box, type a name for the project, for example, *DesktopApp*. Choose **OK**. - ![Screenshot of the New Project dialog box in Visual Studio 2017. The item Windows Desktop Wizard is selected. The name textbox says DesktopApp.](../build/media/desktop-app-new-project-name-153.png "Name the DesktopApp project") + :::image type="content" source="../build/media/desktop-app-new-project-name-153.png" alt-text="Screenshot of the New Project dialog box in Visual Studio 2017. The item Windows Desktop Wizard is selected. The name textbox says DesktopApp."::: 1. In the **Windows Desktop Project** dialog, under **Application type**, select **Windows application (.exe)**. Under **Additional options**, select **Empty project**. Make sure **Precompiled Header** isn't selected. Choose **OK** to create the project. @@ -82,7 +83,7 @@ Your project is now created and your source file is opened in the editor. 1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. - ![Screenshot of the Add New Item dialog box in Visual Studio 2017. Installed > Visual C plus plus is selected on the left and the C plus plus File option is highlighted.](../build/media/desktop-app-add-cpp-file-153.png "Add .cpp file to DesktopApp Project") + :::image type="content" source="../build/media/desktop-app-add-cpp-file-153.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2017. Visual C plus plus is selected on the left and the C plus plus File option is highlighted."::: Your project is now created and your source file is opened in the editor. @@ -98,23 +99,23 @@ Your project is now created and your source file is opened in the editor. In the **Name** box, type a name for the project, for example, *DesktopApp*. Choose **OK**. - ![Screenshot of the New Project dialog box in Visual Studio 2015 with Installed > Templates > Visual C plus plus > Win32 selected, the Win32 Project option highlighted, and DesktopApp typed in the Name text box.](../build/media/desktop-app-new-project-name-150.png "Name the DesktopApp project") + :::image type="content" source="../build/media/desktop-app-new-project-name-150.png" alt-text="Screenshot of the New Project dialog box in Visual Studio 2015 with the Win32 Project option highlighted, and DesktopApp typed in the Name text box."::: 1. On the **Overview** page of the **Win32 Application Wizard**, choose **Next**. - ![Create DesktopApp in Win32 Application Wizard Overview page.](../build/media/desktop-app-win32-wizard-overview-150.png "Create DesktopApp in Win32 Application Wizard Overview") + :::image type="content" source="../build/media/desktop-app-win32-wizard-overview-150.png" alt-text="Screenshot of the dialog box in Visual Studio 2015 that shows Win32 Application Wizard Overview page."::: 1. On the **Application Settings** page, under **Application type**, select **Windows application**. Under **Additional options**, uncheck **Precompiled header**, then select **Empty project**. Choose **Finish** to create the project. 1. In **Solution Explorer**, right-click the DesktopApp project, choose **Add**, and then choose **New Item**. - :::image type="complex" source="../build/media/desktop-app-project-add-new-item-150.gif" alt-text="An animation showing adding a new item to DesktopApp Project in Visual Studio 2015."::: + :::image type="complex" source="../build/media/desktop-app-project-add-new-item-150.gif" alt-text="Animation showing adding a new item to DesktopApp Project in Visual Studio 2015."::: The animation shows right-clicking on the project name in Solution Explorer, choosing Add in the menu that appears, and then choosing New Item. :::image-end::: 1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. - ![Screenshot of the Add New Item dialog box in Visual Studio 2015 with Installed > Visual C plus plus selected and the C plus plus File option highlighted.](../build/media/desktop-app-add-cpp-file-150.png "Add .cpp file to DesktopApp Project") + :::image type="content" source="../build/media/desktop-app-add-cpp-file-150.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2015 with Visual C plus plus selected and the C plus plus File option highlighted."::: Your project is now created and your source file is opened in the editor. @@ -142,7 +143,7 @@ Next, learn how to create the code for a Windows desktop application in Visual S > [!NOTE] > What are all those extra words, such as `WINAPI`, or `CALLBACK`, or `HINSTANCE`, or `_In_`? The traditional Windows API uses typedefs and preprocessor macros extensively to abstract away some of the details of types and platform-specific code, such as calling conventions, **`__declspec`** declarations, and compiler pragmas. In Visual Studio, you can use the IntelliSense [Quick Info](/visualstudio/ide/using-intellisense#quick-info) feature to see what these typedefs and macros define. Hover your mouse over the word of interest, or select it and press **Ctrl**+**K**, **Ctrl**+**I** for a small pop-up window that contains the definition. For more information, see [Using IntelliSense](/visualstudio/ide/using-intellisense). Parameters and return types often use *SAL Annotations* to help you catch programming errors. For more information, see [Using SAL Annotations to Reduce C/C++ Code Defects](../code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md). -1. Windows desktop programs require ``. You'll also frequently see `#include `. That's to make it easier to write an app that can work with either **`char`** or **`wchar_t`**. The way it works is that you instead use the `TCHAR` macro in your code, which resolves ultimately to **`wchar_t`** if the `UNICODE` symbol is defined in your project, otherwise it resolves to **`char`**. If you always build with UNICODE enabled, you don't need `TCHAR` and can just use **`wchar_t`** directly. For more information, see [Using generic-text mappings](../c-runtime-library/using-generic-text-mappings.md). The following code shows theses two `#include` statements at the top of the file. +1. Windows desktop programs require ``. You also frequently see `#include `. That's to make it easier to write an app that can work with either **`char`** or **`wchar_t`**. The way it works is that you instead use the `TCHAR` macro in your code, which resolves ultimately to **`wchar_t`** if the `UNICODE` symbol is defined in your project, otherwise it resolves to **`char`**. If you always build with UNICODE enabled, you don't need `TCHAR` and can just use **`wchar_t`** directly. For more information, see [Using generic-text mappings](../c-runtime-library/using-generic-text-mappings.md). The following code shows theses two `#include` statements at the top of the file. ```cpp #include @@ -166,7 +167,7 @@ Next, learn how to create the code for a Windows desktop application in Visual S ### Add functionality to the `WinMain` function -1. In the `WinMain` function, you need to capture some basic information about your main window. You do that by filling out a structure of type [`WNDCLASSEX`](/windows/win32/api/winuser/ns-winuser-wndclassexw). The structure contains information about the window such as the application icon, the background color of the window, the name to display in the title bar, among other things. Importantly, it contains a function pointer to your window procedure that handles the messages that Windows sends to your app. The following example shows a typical `WNDCLASSEX` structure: +1. In the `WinMain` function, you need to capture some basic information about your main window. You do that by filling out a structure of type [`WNDCLASSEX`](/windows/win32/api/winuser/ns-winuser-wndclassexw). The structure contains information about the window, such as the application icon, the background color of the window, the name to display in the title bar, among other things. Importantly, it contains a function pointer to your window procedure that handles the messages that Windows sends to your app. The following example shows a typical `WNDCLASSEX` structure: ```cpp WNDCLASSEX wcex; @@ -185,9 +186,9 @@ Next, learn how to create the code for a Windows desktop application in Visual S wcex.hIconSm = LoadIcon(wcex.hInstance, IDI_APPLICATION); ``` - For information about the fields of the structure above, see [`WNDCLASSEX`](/windows/win32/api/winuser/ns-winuser-wndclassexw). + For information about the fields of this structure, see [`WNDCLASSEX`](/windows/win32/api/winuser/ns-winuser-wndclassexw). -1. Once you have the `WNDCLASSEX` structure filled out, you register it with Windows so that it knows about your window and how to send messages to it. Use the [`RegisterClassEx`](/windows/win32/api/winuser/nf-winuser-registerclassexw) function and pass the window class structure as an argument. The `_T` macro is used because we use the `TCHAR` type per the discussion about Unicode above. The following code shows how to register the window class. +1. Once you have the `WNDCLASSEX` structure filled out, you register it with Windows so that it knows about your window and how to send messages to it. Use the [`RegisterClassEx`](/windows/win32/api/winuser/nf-winuser-registerclassexw) function and pass the window class structure as an argument. The `_T` macro is used because we use the `TCHAR` type per the preceding discussion about Unicode. The following code shows how to register the window class. ```cpp if (!RegisterClassEx(&wcex)) @@ -201,7 +202,7 @@ Next, learn how to create the code for a Windows desktop application in Visual S } ``` -1. Next you create a window using the [`CreateWindowEx`](/windows/win32/api/winuser/nf-winuser-createwindowexw) function. +1. Create a window using the [`CreateWindowEx`](/windows/win32/api/winuser/nf-winuser-createwindowexw) function. ```cpp static TCHAR szWindowClass[] = _T("DesktopApp"); @@ -591,12 +592,12 @@ As promised, the complete code for the working application follows. The animation shows clicking the save all button, then choosing Build > Build Solution from the main menu. :::image-end::: -1. To run the application, press **F5**. A window with the text "Hello, Windows desktop!" should appear. +1. To run the application, press **F5**. A window with the text *Hello, Windows desktop!* should appear. - ![Screenshot of the running project. It shows a window with the title Windows Desktop Guided Tour Application. The contents of the window are Hello, Windows desktop!.](../build/media/desktop-app-project-run-157.PNG "Run the DesktopApp Project") + :::image type="content" source="../build/media/desktop-app-project-run-157.png" alt-text="Screenshot of a window with the title Windows Desktop Guided Tour Application. The contents of the window are Hello, Windows desktop!."::: Congratulations! You've built a traditional Windows desktop application. -## See also +## Related content -[Windows C++ desktop application types](overview-of-windows-programming-in-cpp.md) +- [Windows C++ desktop application types](overview-of-windows-programming-in-cpp.md) From e5bffc264226d7572130d046f815fe59eeab4245 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Mon, 17 Mar 2025 17:42:13 -0700 Subject: [PATCH 056/981] pr feedback --- docs/build/reference/dynamic-deopt.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 3b1d44b766..2237d19057 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -59,9 +59,11 @@ fsanitize=kernel-address All of the CLR flags ``` -You can set this switch inside Visual Studio. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging#build-system-integration). There are advantages to setting the switch in Visual Studio because MSBUILD automatically suppresses some of the incompatible switches such as `/GL` and `/OPT:ICF`. It also sets the corresponding linker option (`/DYNAMICDEOPT`). You can also set the switch in the command line. +### Set this linker option in the Visual Studio development environment -### To set this compiler option programmatically +You can set this switch inside Visual Studio. For more information, see [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debugging#build-system-integration). There are advantages to setting the switch in Visual Studio because MSBuild automatically suppresses some of the incompatible switches such as `/GL` and `/OPT:ICF`. It also sets the corresponding linker option (`/DYNAMICDEOPT`). You can also set the switch in the command line. + +### Set this compiler option programmatically - See . From ac04647175c5ea365e3fdfa2903bc82874080649 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:08:20 +0800 Subject: [PATCH 057/981] Fix "identifier" typos --- .../compiler-errors-1/compiler-error-c2283.md | 5 ++--- .../compiler-errors-c2200-through-c2299.md | 4 ++-- .../compiler-warnings/compiler-warning-level-1-c4251.md | 4 ++-- .../compiler-warnings/compiler-warning-level-2-c4099.md | 7 +++---- .../compiler-warnings-c4000-through-c4199.md | 2 +- .../compiler-warnings-c4200-through-c4399.md | 2 +- 6 files changed, 11 insertions(+), 13 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md index 2c01122914..52b1375800 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: Compiler Error C2283" title: "Compiler Error C2283" +description: "Learn more about: Compiler Error C2283" ms.date: "11/04/2016" f1_keywords: ["C2283"] helpviewer_keywords: ["C2283"] -ms.assetid: 8a5b3175-b480-4598-a1f7-0b50504c5caa --- # Compiler Error C2283 -'identifier' : pure specifier or abstract override specifier not allowed on unnamed struct +> '*identifier*': pure specifier or abstract override specifier not allowed on unnamed struct A member function of an unnamed class or structure is declared with a pure specifier, which is not permitted. diff --git a/docs/error-messages/compiler-errors-1/compiler-errors-c2200-through-c2299.md b/docs/error-messages/compiler-errors-1/compiler-errors-c2200-through-c2299.md index 1355b9fdc7..061b94f169 100644 --- a/docs/error-messages/compiler-errors-1/compiler-errors-c2200-through-c2299.md +++ b/docs/error-messages/compiler-errors-1/compiler-errors-c2200-through-c2299.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler errors C2200 through C2299" title: "Compiler errors C2200 through C2299" +description: "Learn more about: Compiler errors C2200 through C2299" ms.date: "04/21/2019" f1_keywords: ["C2202", "C2209", "C2210", "C2211", "C2214", "C2215", "C2221", "C2225", "C2230", "C2235", "C2237", "C2239", "C2240", "C2257", "C2260", "C2263", "C2265", "C2269", "C2278", "C2281", "C2282", "C2284", "C2288", "C2291", "C2294"] helpviewer_keywords: ["C2202", "C2209", "C2210", "C2211", "C2214", "C2215", "C2221", "C2225", "C2230", "C2235", "C2237", "C2239", "C2240", "C2257", "C2260", "C2263", "C2265", "C2269", "C2278", "C2281", "C2282", "C2284", "C2288", "C2291", "C2294"] @@ -98,7 +98,7 @@ The articles in this section of the documentation explain a subset of the error |[Compiler error C2280](compiler-error-c2280.md)|'*class*::*function*': attempting to reference a deleted function| |Compiler error C2281|'*class*::*function*': a function can only be deleted on the first declaration| |Compiler error C2282|'*function1*' cannot override '*function2*'| -|[Compiler error C2283](compiler-error-c2283.md)|'*identifer*': pure specifier or abstract override specifier not allowed on unnamed class/struct| +|[Compiler error C2283](compiler-error-c2283.md)|'*identifier*': pure specifier or abstract override specifier not allowed on unnamed struct| |Compiler error C2284|'*function*': illegal argument to intrinsic function, parameter *number*| |[Compiler error C2285](compiler-error-c2285.md)|pointers to members representation has already been determined - pragma ignored| |[Compiler error C2286](compiler-error-c2286.md)|pointers to members of '*identifier*' representation is already set to *inheritance* - declaration ignored| diff --git a/docs/error-messages/compiler-warnings/compiler-warning-level-1-c4251.md b/docs/error-messages/compiler-warnings/compiler-warning-level-1-c4251.md index 5045a15a4c..1056b7868c 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-level-1-c4251.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-level-1-c4251.md @@ -1,13 +1,13 @@ --- -description: "Learn more about: Compiler Warning (level 2) C4251" title: "Compiler Warning (level 2) C4251" +description: "Learn more about: Compiler Warning (level 2) C4251" ms.date: 12/01/2023 f1_keywords: ["C4251"] helpviewer_keywords: ["C4251"] --- # Compiler Warning (level 2) C4251 -> '*type*' : class '*type1*' needs to have dll-interface to be used by clients of class '*type2*' +> '*type*': '*type1*' needs to have dll-interface to be used by clients of '*type2*' ## Remarks diff --git a/docs/error-messages/compiler-warnings/compiler-warning-level-2-c4099.md b/docs/error-messages/compiler-warnings/compiler-warning-level-2-c4099.md index 40fd5f1901..813ec5943a 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-level-2-c4099.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-level-2-c4099.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: Compiler Warning (level 2) C4099" title: "Compiler Warning (level 2) C4099" +description: "Learn more about: Compiler Warning (level 2) C4099" ms.date: "11/04/2016" f1_keywords: ["C4099"] helpviewer_keywords: ["C4099"] -ms.assetid: 00bb803d-cae7-4ab8-8969-b46f54139ac8 --- # Compiler Warning (level 2) C4099 -'identifier' : type name first seen using 'objecttype1' now seen using 'objecttype2' +> '*identifier*': type name first seen using '*object_type1*' now seen using '*object_type2*' An object declared as a structure is defined as a class, or an object declared as a class is defined as a structure. The compiler uses the type given in the definition. @@ -20,5 +19,5 @@ The following sample generates C4099. // C4099.cpp // compile with: /W2 /c struct A; -class A {}; // C4099, use different identifer or use same object type +class A {}; // C4099, use different identifier or use same object type ``` diff --git a/docs/error-messages/compiler-warnings/compiler-warnings-c4000-through-c4199.md b/docs/error-messages/compiler-warnings/compiler-warnings-c4000-through-c4199.md index 7e21f69e2c..675357263c 100644 --- a/docs/error-messages/compiler-warnings/compiler-warnings-c4000-through-c4199.md +++ b/docs/error-messages/compiler-warnings/compiler-warnings-c4000-through-c4199.md @@ -1,6 +1,6 @@ --- -description: "Table of Microsoft C/C++ compiler (MSVC) warning messages C4000 through C4199" title: "Microsoft C/C++ compiler (MSVC) warnings C4000 through C4199" +description: "Table of Microsoft C/C++ compiler (MSVC) warning messages C4000 through C4199" ms.date: "04/21/2019" f1_keywords: ["C4023", "C4035", "C4051", "C4060", "C4063", "C4064", "C4065", "C4069", "C4123", "C4137", "C4181", "C4188", "C4193", "C4194", "C4195", "C4196", "C4199"] helpviewer_keywords: ["C4023", "C4035", "C4051", "C4060", "C4063", "C4064", "C4065", "C4069", "C4123", "C4137", "C4181", "C4188", "C4193", "C4194", "C4195", "C4196", "C4199"] diff --git a/docs/error-messages/compiler-warnings/compiler-warnings-c4200-through-c4399.md b/docs/error-messages/compiler-warnings/compiler-warnings-c4200-through-c4399.md index 176640a48b..31a5da3ff6 100644 --- a/docs/error-messages/compiler-warnings/compiler-warnings-c4200-through-c4399.md +++ b/docs/error-messages/compiler-warnings/compiler-warnings-c4200-through-c4399.md @@ -55,7 +55,7 @@ The articles in this section describe Microsoft C/C++ compiler warning messages |[Compiler warning (level 2 and level 3 and level 4) C4244](compiler-warning-levels-3-and-4-c4244.md)|'*conversion_type*': conversion from '*type1*' to '*type2*', possible loss of data| |[Compiler warning (level 4) C4245](compiler-warning-level-4-c4245.md)|'*conversion_type*': conversion from '*type1*' to '*type2*', signed/unsigned mismatch| |[Compiler warning (level 2) C4250](compiler-warning-level-2-c4250.md)|'*classname*': inherits '*base_classname*::*member*' via dominance| -|[Compiler warning (level 2) C4251](compiler-warning-level-1-c4251.md)|'*object_type1*': '*identifier1*' needs to have dll-interface to be used by clients of '*identfier2*'| +|[Compiler warning (level 2) C4251](compiler-warning-level-1-c4251.md)|'*type*': '*type1*' needs to have dll-interface to be used by clients of '*type2*'| |[Compiler warning (level 4, off) C4254](compiler-warning-level-4-c4254.md)|'*operator*': conversion from '*type1*':'*field_bits*' to '*type2*':'*field_bits*', possible loss of data| |[Compiler warning (level 4, off) C4255](compiler-warning-level-4-c4255.md)|'*function*': no function prototype given: converting '()' to '(void)'| |[Compiler warning (level 4) C4256](compiler-warning-level-4-c4256.md)|'*function*': constructor for class with virtual bases has '`...`'; calls may not be compatible with older versions of Visual C++| From 5a1fc82ac2b4ddfc2ab9d561b21f278ca22b0cd1 Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Tue, 18 Mar 2025 10:13:09 -0700 Subject: [PATCH 058/981] Add edits --- ...compile-a-c-program-on-the-command-line.md | 16 ++++++------ ...ng-and-using-a-dynamic-link-library-cpp.md | 26 +++++++++---------- ...eating-windows-desktop-applications-cpp.md | 8 +++--- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md index 4be70be979..4340086b01 100644 --- a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md +++ b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md @@ -8,17 +8,17 @@ ms.assetid: 7e74cc2d-54b1-49de-b7ad-d3ae6b39ab8d --- # Walkthrough: Compile a C program on the command line -The Visual Studio build tools include a C compiler that you can use to create everything from basic console programs to full Windows Desktop applications, mobile apps, and more. Microsoft C/C++ (MSVC) is a C and C++ compiler that, in its latest versions, conforms to some of the latest C language standards, including C11 and C17. +The Visual Studio build tools include a C compiler that you can use to create everything from basic console programs to full Windows desktop applications and mobile apps. Microsoft C/C++ (MSVC) is a C and C++ compiler that, in its latest versions, conforms to some of the latest C language standards, including C11 and C17. -This guide shows how to create a basic, *Hello, World*-style C program by using a text editor, and then compile it on the command line. If you'd rather work in C++ on the command line, see [Walkthrough: Compiling a Native C++ Program on the Command Line](walkthrough-compiling-a-native-cpp-program-on-the-command-line.md). If you'd like to try the Visual Studio IDE instead of using the command line, see [Walkthrough: Working with Projects and Solutions (C++)](../ide/walkthrough-working-with-projects-and-solutions-cpp.md) or [Using the Visual Studio IDE for C++ Desktop Development](../ide/using-the-visual-studio-ide-for-cpp-desktop-development.md). +This guide explains how to create a basic *Hello, World*-style C program by using a text editor, and then compile it on the command line. If you'd rather work in C++ on the command line, see [Walkthrough: Compiling a Native C++ Program on the Command Line](walkthrough-compiling-a-native-cpp-program-on-the-command-line.md). If you'd like to try the Visual Studio IDE instead of using the command line, see [Walkthrough: Working with Projects and Solutions (C++)](../ide/walkthrough-working-with-projects-and-solutions-cpp.md) or [Using the Visual Studio IDE for C++ Desktop Development](../ide/using-the-visual-studio-ide-for-cpp-desktop-development.md). ## Prerequisites -- Either Visual Studio or the Build Tools for Visual Studio, and the optional Desktop development with C++ workload +- Either **Visual Studio** or the **build tools for Visual Studio**, and the optional **Desktop development with C++** workload - Visual Studio is a powerful integrated development environment that supports a full-featured editor, resource managers, debuggers, and compilers for many languages and platforms. For information on these features and how to download and install Visual Studio, including the free Visual Studio Community edition, see [Install Visual Studio](/visualstudio/install/install-visual-studio). - - The Build Tools for Visual Studio installs only the command-line toolset, the compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line toolset, download Build Tools for Visual Studio from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) page and run the installer. In the Visual Studio installer, select the **Desktop development with C++** workload (in older versions of Visual Studio, select the **C++ build tools** workload), and choose **Install**. + - The build tools for Visual Studio install only the command-line toolset, the compilers, tools, and libraries you need to build C and C++ programs. It's perfect for build labs or classroom exercises and installs relatively quickly. To install only the command-line toolset, download build tools for Visual Studio from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) page and run the installer. In the Visual Studio installer, select the **Desktop development with C++** workload (in older versions of Visual Studio, select the **C++ build tools** workload), and choose **Install**. -- MSVC compiler +- **MSVC compiler** - MSVC has complex requirements for the command-line environment to find the tools, headers, and libraries it uses. **You can't use MSVC in a plain command prompt window** without some preparation. You need a *developer command prompt* window, which is a regular command prompt window that has all the required environment variables set. Fortunately, Visual Studio installs shortcuts for you to launch developer command prompts that have the environment set up for command line builds. Unfortunately, the names of the developer command prompt shortcuts and where they're located are different in almost every version of Visual Studio and on different versions of Windows. Your first walkthrough task is to find the right shortcut to use. > [!NOTE] @@ -75,7 +75,7 @@ There might be differences in the current directory or version numbers, dependin > [!NOTE] > If you get an error such as **'cl' is not recognized as an internal or external command, operable program or batch file**, error C1034, or error LNK1104 when you run the `cl` command, then either you're not using a developer command prompt, or something is wrong with your installation of Visual Studio. You must fix this issue before you can continue. -If you can't find the developer command prompt shortcut, or if you get an error message when you enter `cl`, then your Visual Studio installation might have a problem. If you're using Visual Studio 2017 or later, try reinstalling the **Desktop development with C++** workload in the Visual Studio installer. For details, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). Or, reinstall the Build Tools from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page. Don't go on to the next section until the `cl` command works. For more information about installing and troubleshooting Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). +If you can't find the developer command prompt shortcut, or if you get an error message when you enter `cl`, then your Visual Studio installation might have a problem. If you're using Visual Studio 2017 or later, try reinstalling the **Desktop development with C++** workload in the Visual Studio installer. For details, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). Or, reinstall the build tools from the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page. Don't go on to the next section until the `cl` command works. For more information about installing and troubleshooting Visual Studio, see [Install Visual Studio](/visualstudio/install/install-visual-studio). > [!NOTE] > Depending on the version of Windows on the computer and the system security configuration, you might need to right-click to open the shortcut menu for the developer command prompt shortcut and then choose **Run as Administrator** to successfully build and run the program that you create by following this walkthrough. @@ -153,7 +153,7 @@ If you can't find the developer command prompt shortcut, or if you get an error ## Advanced steps -This *Hello, World* example is about as basic as a C program can get. Real world programs have header files and more source files, link in libraries, and do useful work. +This *Hello, World* example is about as basic as a C program can get. Real-world programs have header files and more source files, link in libraries, and do useful work. You can use the steps in this walkthrough to build your own C code instead of typing the sample code shown. You can also build many C code sample programs that you find elsewhere. To compile a program that has more source code files, enter them all on the command line: @@ -173,7 +173,7 @@ You can use NMAKE and makefiles, or MSBuild and project files to configure and b The C and C++ languages are similar, but not the same. The MSVC compiler uses a basic rule to determine which language to use when it compiles your code. By default, the MSVC compiler treats all files that end in *`.c`* as C source code, and all files that end in *`.cpp`* as C++ source code. To force the compiler to treat all files as C no matter the file name extension, use the [/TC](reference/tc-tp-tc-tp-specify-source-file-type.md) compiler option. -By default, MSVC is compatible with the ANSI C89 and ISO C99 standards, but not strictly conforming. In most cases, portable C code compiles and runs as expected. The compiler provides optional support for the changes in ISO C11/C17. To compile with C11/C17 support, use the compiler flag `/std:c11` or `/std:c17`. C11/C17 support requires Windows SDK 10.0.20201.0 or later. Windows SDK 10.0.22000.0 or later is recommended. You can download the latest SDK from the [Windows SDK](https://developer.microsoft.com/windows/downloads/windows-sdk/) page. For more information, and instructions on how to install and use this SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md). +By default, MSVC is compatible with the ANSI C89 and ISO C99 standards, but not strictly conforming. In most cases, portable C code compiles and runs as expected. The compiler provides optional support for the changes in ISO C11 and C17. To compile with C11 and C17 support, use the compiler flag `/std:c11` or `/std:c17`. C11 and C17 support requires Windows SDK 10.0.20201.0 or later. Windows SDK 10.0.22000.0 or later is recommended. You can download the latest SDK from the [Windows SDK](https://developer.microsoft.com/windows/downloads/windows-sdk/) page. For more information, and instructions on how to install and use this SDK for C development, see [Install C11 and C17 support in Visual Studio](../overview/install-c17-support.md). Certain library functions and POSIX function names are deprecated by MSVC. The functions are supported, but the preferred names have changed. For more information, see [Security Features in the CRT](../c-runtime-library/security-features-in-the-crt.md) and [Compiler Warning (level 3) C4996](../error-messages/compiler-warnings/compiler-warning-level-3-c4996.md). diff --git a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md index 1602a78fc5..ad186eb36c 100644 --- a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md +++ b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md @@ -193,9 +193,9 @@ When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro set 1. In **Solution Explorer**, right-click on the **Source Files** node and choose **Add** > **New Item**. Create a new .cpp file called *MathLibrary.cpp*, in the same way that you added a new header file in the previous step. -1. In the editor window, select the tab for **MathLibrary.cpp** if it's already open. If not, in **Solution Explorer**, double-click **MathLibrary.cpp** in the **Source Files** folder of the **MathLibrary** project to open it. +1. In the editor window, select the **MathLibrary.cpp** tab if it's already open. If not, in **Solution Explorer**, double-click **MathLibrary.cpp** in the **Source Files** folder of the **MathLibrary** project to open it. -1. In the editor, replace the contents of the MathLibrary.cpp file with the following code: +1. In the editor, replace the contents of the *MathLibrary.cpp* file with the following code: ```cpp // MathLibrary.cpp : Defines the exported functions for the DLL. @@ -262,7 +262,7 @@ When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro set 1. In the editor window, select the tab for **MathLibrary.cpp** if it's already open. If not, in **Solution Explorer**, double-click **MathLibrary.cpp** in the **Source Files** folder of the **MathLibrary** project to open it. -1. In the editor, replace the contents of the MathLibrary.cpp file with the following code: +1. In the editor, replace the contents of the *MathLibrary.cpp* file with the following code: ```cpp // MathLibrary.cpp : Defines the exported functions for the DLL. @@ -394,11 +394,11 @@ To avoid out-of-sync code, we recommend you set the include path in your client 1. In the **Configure your new project** page, enter *MathClient* in the **Project name** box to specify a name for the project. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Uncheck **Place solution and project in the same directory** if it's checked. - ![Screenshot of the Create a new project dialog box with the Console App option highlighted.](media/mathclient-project-name-2019.png "Name the client project") + :::image type="content" source="media/mathclient-project-name-2019.png" alt-text="Screenshot of the Create a new project dialog box with the Console App option highlighted."::: 1. Choose the **Create** button to create the client project. -A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named **MathClient.cpp**. You can build it, but it doesn't use your DLL yet. +A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. ::: moniker-end @@ -410,11 +410,11 @@ A minimal console application project is created for you. The name for the main 1. In the left pane of the **New Project** dialog, select **Windows Desktop** under **Installed** > **Visual C++**. In the center pane, select **Windows Console Application**. Specify the name for the project, *MathClient*, in the **Name** edit box. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. - ![Screenshot of the New Project dialog box with Installed > Visual C plus plus > Windows Desktop selected, Windows Console Application highlighted, and Math Client typed in the Name text box.](media/mathclient-new-project-name-159.png "Name the client project") + :::image type="content" source="media/mathclient-new-project-name-159.png" alt-text="Screenshot of the New Project dialog box with Windows Console Application highlighted, and Math Client typed in the Name text box."::: 1. Choose **OK** to create the client app project. -A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named **MathClient.cpp**. You can build it, but it doesn't use your DLL yet. +A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. ::: moniker-end @@ -426,7 +426,7 @@ A minimal console application project is created for you. The name for the main 1. In the left pane of the **New Project** dialog, select **Win32** under **Installed** > **Templates** > **Visual C++**. In the center pane, select **Win32 Console Application**. Specify the name for the project, *MathClient*, in the **Name** edit box. Leave the default **Location** and **Solution name** values. Set **Solution** to **Create new solution**. Check **Create directory for solution** if it's unchecked. - ![Screenshot of the New Project dialog box with Installed > Templates > Visual C plus plus > Win32 selected, Win32 Console Application Visual C plus plus highlighted, and Math Client typed in the Name text box.](media/mathclient-project-name.png "Name the client project") + :::image type="content" source="media/mathclient-project-name.png" alt-text="Screenshot of the New Project dialog box with Win32 Console Application Visual C plus plus highlighted, and Math Client typed in the Name text box."::: 1. Choose the **OK** button to dismiss the **New Project** dialog and start the **Win32 Application Wizard**. On the **Overview** page of the **Win32 Application Wizard** dialog box, choose the **Next** button. @@ -434,7 +434,7 @@ A minimal console application project is created for you. The name for the main 1. Choose the **Finish** button to create the project. -When the wizard finishes, a minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named **MathClient.cpp**. You can build it, but it doesn't use your DLL yet. +When the wizard finishes, a minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. ::: moniker-end @@ -450,11 +450,11 @@ Next, to call the MathLibrary functions in your source code, your project must i 1. In the property pane, select the dropdown control next to the **Additional Include Directories** edit box, and then choose **Edit**. - ![Screenshot of the Property Pages dialog showing the Edit command in the Additional Include Directories property dropdown.](media/mathclient-additional-include-directories-property.png "Edit the Additional Include Directories property") + :::image type="content" source="media/mathclient-additional-include-directories-property.png" alt-text="Screenshot of the Property Pages dialog showing the Edit command in the Additional Include Directories property dropdown."::: 1. Double-click in the top pane of the **Additional Include Directories** dialog box to enable an edit control. Or, choose the folder icon to create a new entry. -1. In the edit control, specify the path to the location of the **MathLibrary.h** header file. You can choose the ellipsis (**...**) control to browse to the correct folder. +1. In the edit control, specify the path to the location of the *MathLibrary.h* header file. You can choose the ellipsis (**...**) control to browse to the correct folder. You can also enter a relative path from your client source files to the folder that contains the DLL header files. If you followed the directions to put your client project in a separate solution from the DLL, the relative path should look like this: @@ -466,11 +466,11 @@ Next, to call the MathLibrary functions in your source code, your project must i When the DLL and client projects are in other folders, adjust the relative path to match. Or, use the ellipsis control to browse for the folder. - ![Screenshot of the Additional Include Directories dialog showing the relative path to the MathLibrary directory.](media/mathclient-additional-include-directories.png "Add the header location to the Additional Include Directories property") + :::image type="content" source="media/mathclient-additional-include-directories.png" alt-text="Screenshot of the Additional Include Directories dialog showing the relative path to the MathLibrary directory."::: 1. After you've entered the path to the header file in the **Additional Include Directories** dialog box, choose the **OK** button. In the **Property Pages** dialog box, choose the **OK** button to save your changes. -You can now include the **MathLibrary.h** file and use the functions it declares in your client application. Replace the contents of **MathClient.cpp** by using this code: +You can now include the *MathLibrary.h* file and use the functions it declares in your client application. Replace the contents of *MathClient.cpp* by using this code: ```cpp // MathClient.cpp : Client app for MathLibrary DLL. diff --git a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md index 2f6cbc0a5f..1bafcda7b4 100644 --- a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md +++ b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md @@ -1,14 +1,14 @@ --- -title: "Create a traditional Windows Desktop application (C++)" -description: "Learn how to create a minimal, traditional Windows Desktop application using Visual Studio, C++, and the Win32 API." +title: "Create a traditional Windows desktop application (C++)" +description: "Learn how to create a minimal, traditional Windows desktop application using Visual Studio, C++, and the Win32 API." ms.custom: "get-started-article" ms.topic: tutorial ms.date: 03/17/2025 helpviewer_keywords: ["Windows applications [C++], Win32", "Windows Desktop applications [C++]", "Windows API [C++]"] --- -# Walkthrough: Create a traditional Windows Desktop application (C++) +# Walkthrough: Create a traditional Windows desktop application (C++) -This walkthrough shows how to create a traditional Windows desktop application in Visual Studio. The application you create uses the Windows API to display *Hello, Windows desktop!* in a window. You can use the code that you develop in this walkthrough as a pattern to create Windows desktop applications. +This walkthrough explains how to create a traditional Windows desktop application in Visual Studio. The application you create uses the Windows API to display *Hello, Windows desktop!* in a window. You can use the code that you develop in this walkthrough as a pattern to create Windows desktop applications. The Windows API (also known as the Win32 API, Windows Desktop API, and Windows Classic API) is a C-language-based framework for creating Windows applications. It has been used to create Windows applications for decades. More advanced and easier-to-program frameworks have been built on top of the Windows API, for example, the MFC, ATL, and .NET frameworks. Even the most modern Windows Runtime code for UWP and Store apps written in C++/WinRT uses the Windows API underneath. For more information about the Windows API, see [Windows API Index](/windows/win32/apiindex/windows-api-list). From fe83d02c054ebafcbcec0c8e3fd3eee4f3dd05ce Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Tue, 18 Mar 2025 10:56:01 -0700 Subject: [PATCH 059/981] Add minor edits --- docs/build/cmake-projects-in-visual-studio.md | 110 +++++++++--------- docs/build/vscpp-step-0-installation.md | 10 +- 2 files changed, 60 insertions(+), 60 deletions(-) diff --git a/docs/build/cmake-projects-in-visual-studio.md b/docs/build/cmake-projects-in-visual-studio.md index e6e2682956..d136d227d1 100644 --- a/docs/build/cmake-projects-in-visual-studio.md +++ b/docs/build/cmake-projects-in-visual-studio.md @@ -1,7 +1,7 @@ --- title: "CMake projects in Visual Studio" description: "Learn how to create and build C++ projects using CMake in Visual Studio." -ms.date: 03/14/2025 +ms.date: 03/18/2025 ms.topic: concept-article f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake.LanguageServices"] --- @@ -14,7 +14,7 @@ f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake. ::: moniker range=">=msvc-160" -Visual Studio's native support for CMake allows you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *`CMakeLists.txt`*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. Visual Studio invokes `cmake.exe` directly for CMake configuration and build. +Visual Studio's native support for CMake allows you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *CMakeLists.txt*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. Visual Studio invokes *cmake.exe* directly for CMake configuration and build. ## Installation @@ -28,7 +28,7 @@ For more information, see [Install the C++ Linux workload in Visual Studio](../l ## IDE integration -When you **open a folder** containing a *`CMakeLists.txt`* file, the following things happen. +When you **open a folder** containing a *CMakeLists.txt* file, the following things happen. :::image type="complex" source="media/start-window.png" alt-text="Screenshot of the first dialog that opens when Visual Studio is started."::: The dialog offers these options: clone a repository, open a project or solution, open a local folder, or create a new project. Open a local folder is called out in the screenshot. @@ -38,12 +38,12 @@ The dialog offers these options: clone a repository, open a project or solution, - The **Solution Explorer** displays the folder structure and files. -- Visual Studio runs CMake and generates the CMake cache file (*`CMakeCache.txt`*) for the default configuration. The CMake command line is displayed in the **Output Window**, along with other output from CMake. +- Visual Studio runs CMake and generates the CMake cache file (*CMakeCache.txt*) for the default configuration. The CMake command line is displayed in the **Output Window**, along with other output from CMake. - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. > [!NOTE] -> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level `CMakeLists.txt` exists in a subfolder and not at the root of the workspace, you're prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). +> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level *CMakeLists.txt* exists in a subfolder and not at the root of the workspace, you're prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). Once CMake cache generation has succeeded, you can also view your projects organized logically by targets. Choose the **Select View** button on the **Solution Explorer** toolbar. From the list in **Solution Explorer - Views**, select **CMake Targets View** and press **Enter** to open the targets view: @@ -51,11 +51,11 @@ Once CMake cache generation has succeeded, you can also view your projects organ Choose the **Show All Files** button at the top of **Solution Explorer** to see all the CMake-generated output in the *`out/build/`* folders. -Use the *`CMakeLists.txt`* file in each project folder just as you would in any CMake project. You can specify source files, find libraries, set compiler and linker options, and specify other build system-related information. For more information on CMake language services provided by Visual Studio, see [Editing CMakeLists.txt files](#editing-cmakeliststxt-files). +Use the *CMakeLists.txt* file in each project folder just as you would in any CMake project. You can specify source files, find libraries, set compiler and linker options, and specify other build system-related information. For more information on CMake language services provided by Visual Studio, see [Editing CMakeLists.txt files](#editing-cmakeliststxt-files). Visual Studio uses a CMake configuration file to drive CMake cache generation and build. For more information, see [Configuring CMake projects](#configuring-cmake-projects) and [Building CMake projects](#building-cmake-projects). -To pass arguments to an executable at debug time, you can use another file called *`launch.vs.json`*. For more information on debugging cross-platform CMake projects in Visual Studio, see [Debugging CMake projects](#debugging-cmake-projects). +To pass arguments to an executable at debug time, you can use another file called *launch.vs.json*. For more information on debugging cross-platform CMake projects in Visual Studio, see [Debugging CMake projects](#debugging-cmake-projects). Most Visual Studio and C++ language features are supported by CMake projects in Visual Studio. Examples include: @@ -65,15 +65,15 @@ Most Visual Studio and C++ language features are supported by CMake projects in - [Clang/LLVM support](https://devblogs.microsoft.com/cppblog/clang-llvm-support-in-visual-studio/) > [!NOTE] -> For other kinds of Open Folder projects, an additional JSON file *`CppProperties.json`* is used. This file isn't relevant for CMake projects. +> For other kinds of Open Folder projects, an additional JSON file *CppProperties.json* is used. This file isn't relevant for CMake projects. ## Configuring CMake projects -The CMake configure step generates the project build system. It's equivalent to invoking `cmake.exe` from the command line. For more information on the CMake configure step, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem). +The CMake configure step generates the project build system. It's equivalent to invoking *cmake.exe* from the command line. For more information on the CMake configure step, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem). -Visual Studio uses a CMake configuration file to drive CMake generation and build. *`CMakePresets.json`* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *`CMakePresets.json`* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a continuous integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *`CMakePresets.json`*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *`CMakeSettings.json`* is available for customers using an earlier version of Visual Studio. For more information on *`CMakeSettings.json`*, see [Customize CMake build settings](customize-cmake-settings.md). +Visual Studio uses a CMake configuration file to drive CMake generation and build. *CMakePresets.json* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *CMakePresets.json* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a continuous integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *CMakePresets.json*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *CMakeSettings.json* is available for customers using an earlier version of Visual Studio. For more information on *CMakeSettings.json*, see [Customize CMake build settings](customize-cmake-settings.md). -When you make significant changes to your CMake configuration file or a *`CMakeLists.txt`* file, Visual Studio automatically runs the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. +When you make significant changes to your CMake configuration file or a *CMakeLists.txt* file, Visual Studio automatically runs the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. :::image type="complex" source="media/cmake-configure-options.png" alt-text="Screenshot of the C Make configuration options in the Visual Studio settings window."::: The C Make configure settings are called out. Show C Make cache notifications is selected. Under 'When cache is out of date', the option 'Never run configure step automatically' is selected. @@ -97,9 +97,9 @@ You can enable the use of these source groups by selecting **Tools** > **Options ### Troubleshooting CMake cache errors -If you need more information about the state of the CMake cache to diagnose a problem, open the **Project** main menu or the *`CMakeLists.txt`* context menu in **Solution Explorer** to run one of these commands: +If you need more information about the state of the CMake cache to diagnose a problem, open the **Project** main menu or the *CMakeLists.txt* context menu in **Solution Explorer** to run one of these commands: -- **View CMakeCache.txt** opens the *`CMakeCache.txt`* file from the build directory in the editor. Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after you clean the cache, see [Customize CMake settings](customize-cmake-settings.md) or [Configure and build with CMake Presets](cmake-presets-vs.md). +- **View CMakeCache.txt** opens the *CMakeCache.txt* file from the build directory in the editor. Any edits you make here to *CMakeCache.txt* are wiped out if you clean the cache. To make changes that persist after you clean the cache, see [Customize CMake settings](customize-cmake-settings.md) or [Configure and build with CMake Presets](cmake-presets-vs.md). - **Delete Cache and Reconfigure** deletes the build directory and reconfigures from a clean cache. @@ -125,7 +125,7 @@ C Make build warnings about conversions that might result in data loss such as c ### Edit build settings -Visual Studio uses a CMake configuration file to drive CMake builds. CMake configuration files encapsulate build options like native build tool switches and environment variables. If *`CMakePresets.json`* is your active configuration file, see [Configure and build with CMake Presets](cmake-presets-vs.md#configure-and-build). If *`CMakeSettings.json`* is your active configuration file, see [Customize CMake build settings](customize-cmake-settings.md). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +Visual Studio uses a CMake configuration file to drive CMake builds. CMake configuration files encapsulate build options like native build tool switches and environment variables. If *CMakePresets.json* is your active configuration file, see [Configure and build with CMake Presets](cmake-presets-vs.md#configure-and-build). If *CMakeSettings.json* is your active configuration file, see [Customize CMake build settings](customize-cmake-settings.md). *CMakePresets.json* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. ## Debugging CMake projects @@ -135,9 +135,9 @@ All executable CMake targets are shown in the **Startup Item** dropdown in the t The dropdown has these options: Show / Hide debug targets, current document, samples (which is highlighted), box2d_tests, and samples-noGUI. :::image-end::: -The **Debug** or **F5** commands first build the project if changes have been made since the previous build. Changes to the CMake configuration file (*`CMakePresets.json`* or *`CMakeSettings.json`*) or a *`CMakeLists.txt`* causes the CMake cache to be regenerated. +The **Debug** or **F5** commands first build the project if changes have been made since the previous build. Changes to the CMake configuration file (*CMakePresets.json* or *CMakeSettings.json*) or a *CMakeLists.txt* causes the CMake cache to be regenerated. -You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and choose **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). +You can customize a CMake debugging session by setting properties in the *launch.vs.json* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and choose **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). ### Just My Code for CMake projects @@ -145,7 +145,7 @@ When you build for Windows using the MSVC compiler, CMake projects have support ### Edit and Continue for CMake projects -When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *`CMakeLists.txt`* file to enable Edit and Continue. +When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *CMakeLists.txt* file to enable Edit and Continue. ``` if(MSVC) @@ -166,20 +166,20 @@ The following options are available on the dialog: Connection type (set to SSH), ## CMake partial activation -In Visual Studio 2022 version 17.1 and later, CMake functionality isn't enabled automatically if your root folder doesn't contain a `CMakeLists.txt` file. Instead, a dialog prompts you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation doesn't start and CMake configurations (from `CMakeSettings.json` or `CMakePresets.json`) doesn't appear in the configuration dropdown. If you accept, you're taken to a workspace-level configuration file, `CMakeWorkspaceSettings.json` (stored in the `.vs` directory), to specify the folders you'd like to enable CMake for. (These folders contain your root `CMakeLists.txt` files). +In Visual Studio 2022 version 17.1 and later, CMake functionality isn't enabled automatically if your root folder doesn't contain a *CMakeLists.txt* file. Instead, a dialog prompts you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation doesn't start and CMake configurations (from *CMakeSettings.json* or *CMakePresets.json*) doesn't appear in the configuration dropdown. If you accept, you're taken to a workspace-level configuration file, *CMakeWorkspaceSettings.json* (stored in the *.vs* directory), to specify the folders you'd like to enable CMake for. (These folders contain your root *CMakeLists.txt* files). The accepted properties are: | Property | Description | |--|--| | `enableCMake` | Enable Visual Studio's integration for this workspace. | -| `sourceDirectory` | A string or array of strings specifying the directory or directories with `CMakeLists.txt`. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace are ignored. | +| `sourceDirectory` | A string or array of strings specifying the directory or directories with *CMakeLists.txt*. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace are ignored. | -You can reach `CMakeWorkspaceSettings.json` through the **Project** > **CMake Workspace Settings** menu command at any time, even if CMake functionality is currently disabled. +You can reach *CMakeWorkspaceSettings.json* through the **Project** > **CMake Workspace Settings** menu command at any time, even if CMake functionality is currently disabled. ## Open an existing cache -When you open an existing CMake cache file (*`CMakeCache.txt`*), Visual Studio doesn't try to manage your cache and build tree for you. Your custom or preferred tools have complete control over how CMake configures your project. +When you open an existing CMake cache file (*CMakeCache.txt*), Visual Studio doesn't try to manage your cache and build tree for you. Your custom or preferred tools have complete control over how CMake configures your project. You can add an existing CMake cache to an open project. It's done the same way you'd add a new configuration. For more information, see our blog post on [opening an existing cache in Visual Studio](https://devblogs.microsoft.com/cppblog/open-existing-cmake-caches-in-visual-studio/). @@ -194,23 +194,23 @@ You can add an existing CMake cache to an open project. It's done the same way y Visual Studio uses the CMake [file-based API](https://cmake.org/cmake/help/latest/manual/cmake-file-api.7.html) (in versions 3.14 and later) to populate the editor with information specific to your project structure. For more information, see the C++ team blog post on [multi-root workspaces and file-based API](https://devblogs.microsoft.com/cppblog/visual-studio-code-cmake-tools-extension-multi-root-workspaces-and-file-based-api/). -Before generating the CMake cache, your custom or preferred tools might need to create a query file named *`.cmake/api/v1/query/client-MicrosoftVS/query.json`* in your build output folder (the folder that contains *`CMakeCache.txt`*). The query file should contain this content: +Before generating the CMake cache, your custom or preferred tools might need to create a query file named *.cmake/api/v1/query/client-MicrosoftVS/query.json* in your build output folder (the folder that contains *CMakeCache.txt*). The query file should contain this content: ```json {"requests":[{"kind":"cache","version":2},{"kind":"cmakeFiles","version":1},{"kind":"codemodel","version":2}]} ``` -When your custom or preferred tools generate your cache, CMake places files under *`.cmake/api/v1/response`* that Visual Studio uses to populate the editor with information specific to your project structure. +When your custom or preferred tools generate your cache, CMake places files under *.cmake/api/v1/response* that Visual Studio uses to populate the editor with information specific to your project structure. ## Editing *CMakeLists.txt* files -To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). +To edit a *CMakeLists.txt* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *CMakeLists.txt*, see the [CMake documentation](https://cmake.org/documentation/). :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists TXT file being edited in Visual Studio." It contains the lines project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: -As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *`CMakeLists.txt`*. +As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *CMakeLists.txt*. :::image type="complex" source="media/cmake-cmakelists-error.png" alt-text="Screenshot of a C Make error in the Visual Studio error list."::: A C Make error message on line 3 of CMakeLists.txt is highlighted. The details are that C Make couldn't find a package configuration file provided by sqlite3. C Make looked for it in CMAKE_MODULE_PATH but couldn't find it. The suggestion is to add the installation prefix 'sqlite3' to CMAKE_PREFIX_PATH or set sqlite3_DIR to a directory containing sqlite3Config.cmake and/or sqlitet3-config.cmake. @@ -236,9 +236,9 @@ A tree view shows CMakeLists.txt, under which are two items: add_executable and By default, Visual Studio uses the IntelliSense mode that matches the compiler and target architecture specified by the active CMake configuration. -If *`CMakePresets.json`* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` and `intelliSenseOptions` in the Visual Studio Settings vendor map. For more information, see the [Visual Studio Settings vendor map reference](cmake-presets-json-reference.md#visual-studio-settings-vendor-map). +If *CMakePresets.json* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` and `intelliSenseOptions` in the Visual Studio Settings vendor map. For more information, see the [Visual Studio Settings vendor map reference](cmake-presets-json-reference.md#visual-studio-settings-vendor-map). -If *`CMakeSettings.json`* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` in *`CMakeSettings.json`*. For more information, see the [`CMakeSettings.json` reference](cmakesettings-reference.md). +If *CMakeSettings.json* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` in *CMakeSettings.json*. For more information, see the [CMakeSettings.json reference](cmakesettings-reference.md). ### Configure IntelliSense with CMake toolchain files @@ -251,17 +251,17 @@ CMake projects opened in Visual Studio integrate with vcpkg, a cross-platform C/ - [Install and use packages with CMake in Visual Studio](/vcpkg/get_started/get-started-vs) - [vcpkg in CMake projects](/vcpkg/users/buildsystems/cmake-integration) -If *`CMakeSettings.json`* is your active configuration file, Visual Studio automatically passes the vcpkg toolchain file (`vcpkg.cmake`) to CMake. This behavior is disabled automatically when you specify any other toolchain in your CMake Settings configuration. +If *CMakeSettings.json* is your active configuration file, Visual Studio automatically passes the vcpkg toolchain file (`vcpkg.cmake`) to CMake. This behavior is disabled automatically when you specify any other toolchain in your CMake Settings configuration. -If *`CMakePresets.json`* is your active configuration file, you need to set the path to `vcpkg.cmake` in *`CMakePresets.json`*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +If *CMakePresets.json* is your active configuration file, you need to set the path to `vcpkg.cmake` in *CMakePresets.json*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *CMakePresets.json* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. ## Run CMake from the command line -If *`CMakePresets.json`* is your active CMake configuration file, then you can easily reproduce your local builds outside of Visual Studio. For more information, see [Run CMake from the command line or a CI pipeline](cmake-presets-vs.md#run-cmake-from-the-command-line-or-a-ci-pipeline). *`CMakePresets.json`* is supported in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +If *CMakePresets.json* is your active CMake configuration file, then you can easily reproduce your local builds outside of Visual Studio. For more information, see [Run CMake from the command line or a CI pipeline](cmake-presets-vs.md#run-cmake-from-the-command-line-or-a-ci-pipeline). *CMakePresets.json* is supported in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. -If *`CMakeSettings.json`* is your active CMake configuration file, then you need to manually pass the arguments that are encoded in your *`CMakeSettings.json`* file to CMake. If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: +If *CMakeSettings.json* is your active CMake configuration file, then you need to manually pass the arguments that are encoded in your *CMakeSettings.json* file to CMake. If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: -1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Use the Microsoft C++ toolset from the command line](building-on-the-command-line.md) . +1. Run the appropriate *vsdevcmd.bat* file (x86/x64). For more information, see [Use the Microsoft C++ toolset from the command line](building-on-the-command-line.md) . 1. Switch to your output folder. @@ -271,7 +271,7 @@ If *`CMakeSettings.json`* is your active CMake configuration file, then you need ::: moniker range="msvc-150" -Visual Studio 2017 has rich support for CMake, including [cross-platform CMake projects](../linux/cmake-linux-project.md). The **Visual C++ Tools for CMake** component uses the **Open Folder** feature to enable the IDE to consume CMake project files (such as *`CMakeLists.txt`*) directly for the purposes of IntelliSense and browsing. Both Ninja and Visual Studio generators are supported. If you use a Visual Studio generator, it generates a temporary project file and passes it to MSBuild. However, the project is never loaded for IntelliSense or browsing purposes. You also can import an existing CMake cache. +Visual Studio 2017 has rich support for CMake, including [cross-platform CMake projects](../linux/cmake-linux-project.md). The **Visual C++ Tools for CMake** component uses the **Open Folder** feature to enable the IDE to consume CMake project files (such as *CMakeLists.txt*) directly for the purposes of IntelliSense and browsing. Both Ninja and Visual Studio generators are supported. If you use a Visual Studio generator, it generates a temporary project file and passes it to MSBuild. However, the project is never loaded for IntelliSense or browsing purposes. You also can import an existing CMake cache. ## Installation @@ -283,7 +283,7 @@ For more information, see [Install the C++ Linux workload in Visual Studio](../l ## IDE integration -When you choose **File > Open > Folder** to open a folder containing a *`CMakeLists.txt`* file, the following happens: +When you choose **File > Open > Folder** to open a folder containing a *CMakeLists.txt* file, the following happens: - Visual Studio adds a **CMake** menu item to the main menu, with commands for viewing and editing CMake scripts. @@ -293,7 +293,7 @@ When you choose **File > Open > Folder** to open a folder containing a *`CMakeLi - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. -You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. +You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *CMakeLists.txt* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. :::image type="complex" source="media/cmake-multiple-roots.png" alt-text="Screenshot of the Visual Studio Solution Explorer."::: The files and folders of a C Make project are visible. There's a tests subdirectory, CMakeLists.txt, and hello.cpp. There's a hello-cmake-vcpkg folder that contains CMakeLists.txt, CMakeSettings.json, and hello.cpp. @@ -303,18 +303,18 @@ You can also view your projects organized logically by targets. Choose **Targets :::image type="content" source="media/cmake-targets-view.png" alt-text="Screenshot of the dropdown button in the Visual Studio Solution Explorer that offers the CMake targets view option. Which is selected."::: -Visual Studio uses a file called *`CMakeSettings.json`* to store environment variables or command-line options for CMake. *`CMakeSettings.json`* also lets you define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. +Visual Studio uses a file called *CMakeSettings.json* to store environment variables or command-line options for CMake. *CMakeSettings.json* also lets you define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. -Otherwise, use the *`CMakeLists.txt`* just as you would in any CMake project to specify source files, find libraries, set compiler and linker options, and specify other build system-related information. +Otherwise, use the *CMakeLists.txt* just as you would in any CMake project to specify source files, find libraries, set compiler and linker options, and specify other build system-related information. -If you need to pass arguments to an executable at debug time, you can use another file called *`launch.vs.json`*. In some scenarios, Visual Studio automatically generates these files. You can edit them manually, or even create the file yourself. +If you need to pass arguments to an executable at debug time, you can use another file called *launch.vs.json*. In some scenarios, Visual Studio automatically generates these files. You can edit them manually, or even create the file yourself. > [!NOTE] -> For other kinds of Open Folder projects, two additional JSON files are used: *`CppProperties.json`* and *`tasks.vs.json`*. Neither of these are relevant for CMake projects. +> For other kinds of Open Folder projects, two additional JSON files are used: *CppProperties.json* and *tasks.vs.json*. Neither of these are relevant for CMake projects. ## Import an existing cache -When you import an existing *`CMakeCache.txt`* file, Visual Studio automatically extracts customized variables and creates a prepopulated *`CMakeSettings.json`* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *`CMakeSettings.json`* file is placed alongside the project's root *`CMakeLists.txt`*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. +When you import an existing *CMakeCache.txt* file, Visual Studio automatically extracts customized variables and creates a prepopulated *CMakeSettings.json* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *CMakeSettings.json* file is placed alongside the project's root *CMakeLists.txt*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. Not everything in the cache is imported. Properties such as the generator and the location of the compilers are replaced with defaults that are known to work well with the IDE. @@ -326,11 +326,11 @@ Not everything in the cache is imported. Properties such as the generator and th This command brings up the **Import CMake from Cache** wizard. -2. Navigate to the *`CMakeCache.txt`* file that you want to import, and then choose **OK**. The **Import CMake Project from Cache** wizard appears: +2. Navigate to the *CMakeCache.txt* file that you want to import, and then choose **OK**. The **Import CMake Project from Cache** wizard appears: :::image type="content" source="media/cmake-import-wizard.png" alt-text="Screenshot of the Import C Make Project from Cache wizard. The directory path of the C Make project to import goes in the folder textbox."::: - When the wizard completes, you can see the new *`CMakeCache.txt`* file in **Solution Explorer** next to the root *`CMakeLists.txt`* file in your project. + When the wizard completes, you can see the new *CMakeCache.txt* file in **Solution Explorer** next to the root *CMakeLists.txt* file in your project. ## Building CMake projects @@ -338,7 +338,7 @@ To build a CMake project, you have these choices: 1. In the General toolbar, find the **Configurations** dropdown. It's probably showing *Linux-Debug* or *x64-Debug* by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. -1. Right-click on *`CMakeLists.txt`* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. +1. Right-click on *CMakeLists.txt* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. 1. From the main menu, select **Build > Build Solution** (**F7** or **Ctrl+Shift+B**). Make sure that a CMake target is already selected in the **Startup Item** dropdown in the **General** toolbar. @@ -346,7 +346,7 @@ To build a CMake project, you have these choices: The menu has options such as Add, Open, Configure tasks, Build, Clean all, and so on. :::image-end::: -You can customize build configurations, environment variables, command-line arguments, and other settings in the *`CMakeSettings.json`* file. It lets you make changes without modifying the *`CMakeLists.txt`* file. For more information, see [Customize CMake build settings](customize-cmake-settings.md). +You can customize build configurations, environment variables, command-line arguments, and other settings in the *CMakeSettings.json* file. It lets you make changes without modifying the *CMakeLists.txt* file. For more information, see [Customize CMake build settings](customize-cmake-settings.md). As you would expect, build results are shown in the **Output Window** and **Error List**. @@ -354,27 +354,27 @@ As you would expect, build results are shown in the **Output Window** and **Erro C Make build warnings about conversions that might result in data loss such as converting from a float to an integer are visible. :::image-end::: -In a folder with multiple build targets, you can specify which CMake target to build: Choose the **Build** item on the **CMake** menu or the *`CMakeLists.txt`* context menu to specify the target. If you enter **Ctrl+Shift+B** in a CMake project, it builds the current active document. +In a folder with multiple build targets, you can specify which CMake target to build: Choose the **Build** item on the **CMake** menu or the *CMakeLists.txt* context menu to specify the target. If you enter **Ctrl+Shift+B** in a CMake project, it builds the current active document. ## Debugging CMake projects -To debug a CMake project, choose the preferred configuration and press **F5**. Or, press the **Run** button in the toolbar. If the **Run** button says "Select Startup Item", select the dropdown arrow and choose the target that you want to run. (In a CMake project, the "Current document" option is only valid for .cpp files.) +To debug a CMake project, choose the preferred configuration and press **F5**. Or, press the **Run** button in the toolbar. If the **Run** button says **Select Startup Item**, select the dropdown arrow and choose the target that you want to run. (In a CMake project, the **Current document** option is only valid for .cpp files.) :::image type="content" source="media/cmake-run-button.png" alt-text="Screenshot of the Select Startup Item dropdown for a C Make project. You can select current document or hello-cmake."::: The **Run** or **F5** commands first build the project if changes have been made since the previous build. -You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. For more information, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). +You can customize a CMake debugging session by setting properties in the *launch.vs.json* file. For more information, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). -## Editing *`CMakeLists.txt`* files +## Editing *CMakeLists.txt* files -To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). +To edit a *CMakeLists.txt* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *CMakeLists.txt*, see the [CMake documentation](https://cmake.org/documentation/). :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists file being edited in Visual Studio."::: The file contains project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: -As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *`CMakeLists.txt`*. +As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *CMakeLists.txt*. :::image type="complex" source="media/cmake-cmakelists-error.png" alt-text="Screenshot of a C Make error in the Visual Studio error list."::: A C Make error message on line 3 of CMakeLists.txt is highlighted. The details are that C Make can't find a package configuration file provided by sqlite3. C Make looked for it in CMAKE_MODULE_PATH but couldn't find it. The suggestion is to add the installation prefix 'sqlite3' to CMAKE_PREFIX_PATH or set sqlite3_DIR to a directory containing sqlite3Config.cmake and/or sqlitet3-config.cmake. @@ -382,7 +382,7 @@ As soon as you save the file, the configuration step automatically runs again an ## CMake configure step -When significant changes are made to the *`CMakeSettings.json`* or to *`CMakeLists.txt`* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. +When significant changes are made to the *CMakeSettings.json* or to *CMakeLists.txt* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. Multiple CMake projects might use the same CMake configuration name (for example, *x86-Debug*). All of them are configured and built (in their own build root folder) when that configuration is selected. You can debug the targets from all of the CMake projects that participate in that CMake configuration. @@ -390,13 +390,13 @@ Multiple CMake projects might use the same CMake configuration name (for example The context menu shows what can be built. In this case hello-cmake-a \ hello-cmake.exe (Project hello-cmake) and hello-cmake-b\hello-cmake.exe (Project hello-cmake). The latter is highlighted. :::image-end::: -You can limit builds and debug sessions to a subset of the projects in the workspace. Create a new configuration with a unique name in the *`CMakeSettings.json`* file. Then, apply the configuration to those projects only. When that configuration is selected, IntelliSense and the build and debug commands only apply to those specified projects. +You can limit builds and debug sessions to a subset of the projects in the workspace. Create a new configuration with a unique name in the *CMakeSettings.json* file. Then, apply the configuration to those projects only. When that configuration is selected, IntelliSense and the build and debug commands only apply to those specified projects. ## Troubleshooting CMake cache errors -If you need more information about the state of the CMake cache to diagnose a problem, open the **CMake** main menu or the *`CMakeLists.txt`* context menu in **Solution Explorer** to run one of these commands: +If you need more information about the state of the CMake cache to diagnose a problem, open the **CMake** main menu or the *CMakeLists.txt* context menu in **Solution Explorer** to run one of these commands: -- **View Cache** opens the *`CMakeCache.txt`* file from the build root folder in the editor. Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md). +- **View Cache** opens the *CMakeCache.txt* file from the build root folder in the editor. Any edits you make here to *CMakeCache.txt* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md). - **Open Cache Folder** opens an Explorer window to the build root folder. @@ -416,7 +416,7 @@ To build a single file in a CMake project, right-click on the file in **Solution If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: -1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Building on the Command Line](building-on-the-command-line.md). +1. Run the appropriate *vsdevcmd.bat* file (x86/x64). For more information, see [Building on the Command Line](building-on-the-command-line.md). 1. Switch to your output folder. diff --git a/docs/build/vscpp-step-0-installation.md b/docs/build/vscpp-step-0-installation.md index c2b192a02f..9578461736 100644 --- a/docs/build/vscpp-step-0-installation.md +++ b/docs/build/vscpp-step-0-installation.md @@ -1,12 +1,12 @@ --- -title: Install Visual Studio with C and C++ support +title: Install C and C++ support in Visual Studio description: "Learn how to install Visual Studio with support for Microsoft C and C++ and related workloads." ms.custom: vs-acquisition, intro-installation -ms.date: 03/14/2025 +ms.date: 03/18/2025 ms.topic: tutorial ms.devlang: "cpp" --- -# Install Visual Studio with C and C++ support +# Install C and C++ support in Visual Studio If you haven't installed Visual Studio and the Microsoft C and C++ tools yet, here's how to get started. @@ -19,7 +19,7 @@ Welcome to Visual Studio 2022! In this version, it's easy to choose and install > [!NOTE] > This article applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, autocompletion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). -To learn about what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2022/release-notes/). +To learn what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2022/release-notes/). Ready to install? Use the following step-by-step guide. @@ -119,7 +119,7 @@ Welcome to Visual Studio 2019! In this version, it's easy to choose and install > [!NOTE] > This article applies to installation of Visual Studio on Windows. [Visual Studio Code](https://code.visualstudio.com) is a lightweight, cross-platform development environment that runs on Windows, Mac, and Linux systems. The Microsoft [C/C++ for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension supports IntelliSense, debugging, code formatting, autocompletion. Visual Studio for Mac doesn't support Microsoft C++, but does support .NET languages and cross-platform development. For installation instructions, see [Install Visual Studio for Mac](/visualstudio/mac/installation/). -To learn about what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2019/release-notes/). +To learn what else is new in this version, see the Visual Studio [release notes](/visualstudio/releases/2019/release-notes/). Ready to install? Use the following step-by-step guide. From b07f30c21181ef7a6565b3e3bd0f08dbb965f002 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:51:47 +0800 Subject: [PATCH 060/981] Update MSVC STL Changelog GitHub wiki links --- docs/overview/cpp-conformance-improvements.md | 6 +++--- docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/overview/cpp-conformance-improvements.md b/docs/overview/cpp-conformance-improvements.md index 76bbefd6f6..008eb481d4 100644 --- a/docs/overview/cpp-conformance-improvements.md +++ b/docs/overview/cpp-conformance-improvements.md @@ -300,7 +300,7 @@ To fix this warning, either use an equality operator, `value == 9`, if this is w Visual Studio 2022 version 17.9 contains the following conformance improvements, bug fixes, and behavior changes in the Microsoft C/C++ compiler. -For a broader summary of changes made to the Standard Template Library, see [STL Changelog VS 2022 17.9](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-179). +For a broader summary of changes made to the Standard Template Library, see [STL Changelog VS 2022 17.9](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-179). ### Application of `_Alignas` on a structured type in C @@ -389,7 +389,7 @@ The C compiler used to accept the `/FU` option, even though it hasn't support ma The C++23 named modules `std` and `std.compat` are now available when compiling with `/std:c++20`. -For a broader summary of changes made to the C++ Standard Library, see [STL Changelog VS 2022 17.8](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-178). +For a broader summary of changes made to the C++ Standard Library, see [STL Changelog VS 2022 17.8](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-178). ## Conformance improvements in Visual Studio 2022 version 17.7 @@ -405,7 +405,7 @@ The `` library is now supported. See [P2093R14 Formatted output](https:// Implemented `views::cartesian_product`. -For a broader summary of changes made to the Standard Template Library, see [STL Changelog VS 2022 17.7](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-177). +For a broader summary of changes made to the Standard Template Library, see [STL Changelog VS 2022 17.7](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-177). ### `using` conformance diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index b20f03e8fc..909ac8084e 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -261,7 +261,7 @@ A partial list of new features: | For more information about | See | |---|---| | What's new for C++ developers | [What's new for C++ Developers in Visual Studio 2022 17.9](https://devblogs.microsoft.com/cppblog/whats-new-for-cpp-developers-in-visual-studio-2022-17-9/) | -| Standard Library (STL) merged C++23 features, performance improvements, enhanced behavior, LWG issue resolutions, and fixed bugs | [STL Changelog 17.9](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-179) | +| Standard Library (STL) merged C++23 features, performance improvements, enhanced behavior, LWG issue resolutions, and fixed bugs | [STL Changelog 17.9](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-179) | | New features in the Visual Studio 17.9 IDE |[Visual Studio 2022 version 17.9 Release Notes](/visualstudio/releases/2022/release-notes-v17.9) | | C++ language conformance improvements in Visual Studio 2022 17.9 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022](cpp-conformance-improvements.md#improvements_179) | | Summary of C++ backend updates | [MSVC Backend updates since Visual Studio 2022 version 17.3](https://devblogs.microsoft.com/cppblog/msvc-backend-updates-since-visual-studio-2022-version-17-3/) | @@ -294,7 +294,7 @@ A partial list of new features: | For more information about | See | |---|---| | What's new for C++ developers | [What's new for C++ Developers in Visual Studio 2022 17.8](https://devblogs.microsoft.com/cppblog/whats-new-for-cpp-developers-in-visual-studio-2022-17-8/) | -| Standard Library (STL) merged C++26, C++23 features, C++20 extensions, LWG issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.8](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-178) | +| Standard Library (STL) merged C++26, C++23 features, C++20 extensions, LWG issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.8](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-178) | | New features in the Visual Studio 17.8 IDE |[Visual Studio 2022 version 17.8 Release Notes](/visualstudio/releases/2022/release-notes-v17.8) | | C++ language conformance improvements in Visual Studio 2022 17.8 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022](cpp-conformance-improvements.md#improvements_178) | | An overview of C++ improvements in Visual Studio, VS Code, and vcpkg during 2023 | [A year of C++ improvements](https://devblogs.microsoft.com/cppblog/a-year-of-cpp-improvements-in-visual-studio-vs-code-and-vcpkg) | @@ -554,7 +554,7 @@ In Visual Studio 2022, when you start your app in the debugger, you can use the ### Standard Library improvements -Select Standard Library (STL) improvements are highlighted here. For a comprehensive list of new functionality, changes, bug fixes, and performance improvements, see the STL team's [Changelog](https://github.com/microsoft/STL/wiki/Changelog#vs-2022). +Select Standard Library (STL) improvements are highlighted here. For a comprehensive list of new functionality, changes, bug fixes, and performance improvements, see the STL team's [Changelog](https://github.com/microsoft/STL/wiki/Changelog). - Added debugging visualizers to improve how the following types are displayed: `source_location`, `bind_front()`, `u8string` (and its iterators), `default_sentinel_t`, `unreachable_sentinel_t`, `ranges::empty_view`, `ranges::single_view`, `ranges::iota_view` (and its iterator/sentinel), `ranges::ref_view`, `thread`, `thread::id`, `jthread`, and `filesystem::path` - Added `[[nodiscard]]` to the `stoi()` family of functions in `` and to various functions in `` such as the `collate` member functions, `has_facet()`, and the `isalnum()` and `tolower()` families. From 7f04da3a759622dec4732613b32b730468763373 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 19 Mar 2025 19:34:30 +0800 Subject: [PATCH 061/981] Tweak error C2466 --- .../compiler-errors-1/compiler-error-c2466.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2466.md b/docs/error-messages/compiler-errors-1/compiler-error-c2466.md index ae382ccd5f..34e0cca594 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2466.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2466.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: Compiler Error C2466" title: "Compiler Error C2466" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2466" +ms.date: "03/19/2025" f1_keywords: ["C2466"] helpviewer_keywords: ["C2466"] -ms.assetid: 75b251d1-7d0b-4a86-afca-26adedf74486 --- # Compiler Error C2466 -cannot allocate an array of constant size 0 +> cannot allocate an array of constant size 0 An array is allocated or declared with size zero. The constant expression for the array size must be an integer greater than zero. An array declaration with a zero subscript is legal only for a class, structure, or union member and only with Microsoft extensions ([/Ze](../../build/reference/za-ze-disable-language-extensions.md)). @@ -17,7 +16,6 @@ The following sample generates C2466: ```cpp // C2466.cpp // compile with: /c -int i[0]; // C2466 -int j[1]; // OK -char *p; +int arr1[0]; // C2466 +int arr2[1]; // OK ``` From c97639619356670575c0f6fce9a101a84ed5ec3a Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Wed, 19 Mar 2025 16:51:12 -0700 Subject: [PATCH 062/981] Refresh articles --- .../media/visual-c---project-defaults.png | Bin 31285 -> 33151 bytes ...rty-pages-showing-active-configuration.png | Bin 61573 -> 25804 bytes ...-property-pages-showing-release-config.png | Bin 65483 -> 18877 bytes docs/build/toc.yml | 2 +- docs/build/working-with-project-properties.md | 50 ++++++++---------- docs/build/x64-calling-convention.md | 35 ++++++------ 6 files changed, 40 insertions(+), 47 deletions(-) diff --git a/docs/build/media/visual-c---project-defaults.png b/docs/build/media/visual-c---project-defaults.png index 3b3db949ce532abfea351c416917d1f6b1f71b70..02ee1b1b204a075188b04b0d9886b4bc786af99c 100644 GIT binary patch literal 33151 zcmafa1yodD^ezUXq;!KIog!U>!qDA0q;yGlskAgh3laki-3UX7NK1E1cQ-@4i@*O` z@2&OTT5s0EJ9B65x##Y)&;Gvs?QOV@HV=!(^P=U`cKFa92prBy4Km0xFaxDCSf)Yd^ z3x2QRX}EVA;7UH}$9NO)QYgu+0GqmNKS8nTg~FpSF7d`IZ+yx~SLc`XIl(3);xGFB zJzA~dYf^!QRkXXY(}cYntCu2d<7qMqZ`hc{b-}JD_O1D;&*u{Z73k43$8!9}%I57i zNy!7PrpPzQyCV7oyeRsJqBdfLxl^((+l)}UFLpMk{(cko*vGU89Gvsvnsi?~D}D-0 zxuUvRA`3X8RGhq`dw9-wG7qN%W1l~qq{037@52{?SSQOEoO4_5^WH0E`i^sFXlOV$ z+uE$x6zRJwRQpHN_c~c}r#myp*}`uNE(E7FvDm z`}D*2@5T!92SrMvBXmS~{MMHcVrR^L4yA8ta9uVRIB1Jxce*D-r0g^Jb zP*8@LloWkkwv6r=fq^DDr+l{y3y(buM`FXS4)^KO4b_E8GKBv&S2*Wz3=7hj-7X5uD4+50x*Seu-$H?OS-(RhZE};%k9KXwUJ7$a!9n9ZqWljEPWfOI+_ie$q zS)v~S*DBfS*bLst3NU8!-RKg_&NJ}3-41nZy^m|S)WAOAAiDOwJfGEF&RV!9B!cYS?*<|CW_6ac{Pu!? z!7R%eO&3i$_wUOYAI2fh3;?w@-5gxZwH3t~8CvYU%OAg7roLNxSPQ!^o*pp-BJeHj z;F0By9BQq%7m>?R5Ha|HNN0y0{0!K2hX>TxpZqJ&RYV#*D>)C%lXAdfauR9LjgLKQ>u$Gh zjT(S$$LXIb-9?ImVkaNqv47Lbi?mrF+dh)$9G;+0d=V~Z)r@qQ!2d1&Wo@l*J8&go zK{;TBQ;En0-*34LK}CXItbW(u>UDp7Z0;sUzi(rYIQ)Df7de(Cc37)C=SJ*vJ1AJ$N?BgD{Cb8(=I!^+~@v)%UrQc5}z>Mlg$%SrbjPr>92wP#aipVbhQDEt_IxC z_?jXpKo8Gt&*s6=+dBd-Tkj?@I5*Ynzc`7wt*H*rNaRRdxVv5WrnaC-l1ZZsY036IvS4}Kr( z7k>1eqTOfR{Rs+a-N5EUxdEcjB1jY>ySM=vVdY3*n8`4R{|4nh@;dY07RngLUXg#y2>n@U^Bj=~I|;tujZZ9f^0&MU*;o&2x^ zZyI^+o`;ON>*5~VCI-fRM>+d9nj5$xP^!kH6b!sUiNg2~8^mcJK7ILj?s@pb`{(}$ zXrR2Jttu@k*&KcN!kwfB4~Uc~|2NJAzWn#a%l`%w|A#>D{$HahYytzQ1lvxQK^mOb z`uP`u9a4YR_uXmEb0w;N&biNR5>lW9meGitGzz#K*EZ@vMd3Y-_Gns3(syV$>LfqI zAfqnhENnn8F9!y>-L(`$?A6UWG@ng)G(DMTi`w3+U-Ul%F7&@zyJ)??-7b7iqblit zJ({)PkKE&*`}o=a(N8U}l_>tqfV(Rk|HIGMs8KkR#A61*larkON0IC6>lZB-&DW?y zfrh{slZHNfeg{5T@tXI2ZxCQakIv= z3H?Ri6Gb=l2TKIX@$&L+C4A?4I4m3gpEhQ}2u~`QNvGda@4JSrW#GuNawyl9o8R`@ z*({-8eTFzT_MQ0_{wkJe&^yCG`OcEub>I*`C+e@;T9e@-4I|`?S!_-^W34XxHArc1 zVv?<0?&y(jcP}I;11?Y^;ufz& z!A?F`m`guCUNornMBmLXHI`FQF{qd5BkUdN!xWugNEFADrtymnmt+XfI9+$&Y;Ui0 zc^rW5E+39NE+wD0Zy=6K$a8iqTh3sY+zZj{JH%2VHeikD%)e9+QsGyOHK*q+<*cC9qmt-{egc5gKG}5F%fm^q8AM%psvZSzi@>~JCC0E zAgPfNVb9Bv>8{=mu%4Sst;5zC%xT|h^i5Y8zgtkpptk|D$_OwFQskt#Bf<9KXoZ1M z&l)LE0D@zCiSP)QH{uP@D^UwNgTLhtCt`*tQ49NQeGIk6%-dGLklmBokm%o2S68d{ zLyo;2zEU}9w%i;E7lw+hAyvK3&f(00sy_8aa+tw0(^3(T$0J5+OUGH)zvL%MBL<$T zCvRB7Z9i7X`-t0R^qo|XjhkG45%Xj@8EP2~R}2rgx;Ua4^vg|G=Sw`D(05!r@$zF) z1!V>7l-8fZcZ~gTgKM;l*WBogV*bry116Gv(y<%m>xVns@OwmpJ7jA6`0|bD=@4j( z(|{SvqOXk8bYlWv`X-+%wuoD?rBc+RW^4b*$*p>|Ay<*IU@IJH5F#b(b%yBbS_8W! zz>cryhVv0IRL$x3c~gC_Zs`d*?%|wGALdVgyg!3}^z!xG%6{KkrGc>SdyF-$aG?Q_ zNK&p&Cx?BI`QSC`33Aql+il1s6-WfltD1t zaLzLSh=EL1_BSrFm)&qEwDJiUtyAY$%|UDajIPb!ca+!b|=sl)kmO-nXvSei5$=PZf`5#o|7&@s8-qlT$tdHOLo zn>eq#gpX30B(7QHUh6SFDtl&U~}dV z<-_u_va$hcujQ6u7uUnF?Hk;g3l*u!U0nme5DVpEq7*OF@N`{>s9WsjUuJmdQuo%< zQD4U|%~BocWdG*(`>UpM!e_+_=yDk$vXDyGgKEd|`Q-JsDwCYHoWpm6gE$FjE6g4@Z zbxwdR#Jvu9v!;PPs7JX{%bB#UXGrUNuJCtPghU12Lic*duk47+}$ZpscClJA)PH` z2Yw(gRT>81ejQU_n=e~Tgp#GX4rpl9rnj>jQU@oP*0b7*eD+%3InuW>4F}jNky-iq z`O%}!w;G6s_i`a%_6v#`9}E9^4_|UKucBK+@5K3<{c+AY(;_QR4{2iAw*9rMX~yVH zr5E@eh1UkATiI=&wH)1F0P$j651A(w&~I&T>^*?%;BUK?pYEUrs)Y{jq&qaqW|fOr zd)Ag+C2sH1vY6PGmwzr;hv&jSudn@-Tj+j&AIJD*_aT^Zm?@K$B|fWmn$#BD4!KD~ zi1>S;^*{KMMWX*AR_DI{Kom}OpQ7qgKI|B&s0dCMA9X-%n`jx@4Zd{aU=TOLP z$QRfm;@cKX*hkz53xz>JBI(qNPwhkvfDT*2h%)lNt!&y&UrOW|2-5tpC_y^W5W))Mvfn?033%G@o(!p>MQ*33HNscEpRSNF z51Svkbg5xyrinQ>euhrc^Y6(oX{!UTPYT|n*w`TOMMGLzS|e)A*fW=*05EBg_MiH) zMoJ1_tE_C)$q%Cz3RS85TW#v3%w`GGC$W4H_U7i2S#?l=d>r^X3{CwqvNZHP>Jarg zubABBZ`=-Y1VV&6fZ_$%c$G9+za8Y2DHHEOZ(F@1Gw9{xvNhXzOSN0gICxDMr>L#~OtBDlW@SC$TiN9ADi? zi(RYwZ4;?O@Mh=M54M#3kMR-nWjDGjv75eySB6Wg>b6uN4Vq)r)B51sD+D}ZV=l=a zZ=x_hW>;#=YI3qsE2L4g=S&laX7~a6v%7jvq~OK49}X2*oe09aMQ=wOs}%>dEf3OV}}tz}O9fEKEb z{pE0XAr-d6GXZ}Z@S)2jzHw371FO;>oxcJ(9NI*;b zAGu8i7%sqxRSR-gN@&Gyx0C^LdQR@}<9#cNad8tc0+0&cpov|+zx~u1`ao2VcXnoK zZ8@6`e-)Rv=rIwT_I-cP!^_*eA$m|byEh5(_$EXNP-Vk_+cN`>i}iHJZDJHV=uUa- z!qUghG_QIz10xle*~{xsy)^%Hrk^_hpUmMuzWe2$5cU5|5X>1)NwS1;l^<7pY`Ulb z0qWd$Cm{7~alQ!y5&rzUvr>Qyq!sTZBxIhFf47rKl%YG71=0_hRPFghzWbNRCRS6_j!-j%uK=QI%hn2sxnN?GEDrbGx zzcf%GKwUz4?Q$BG3%?rL5}6`Qodao~q!Sm~83zM*c5ejou{no&knC$}>aZUS!MNoa z#s^!fhT0J>JOjk7%>{#;bewj23NP^57v8-XiLdp#S5w(zY9d!tXLdtz5&%@ z>)E&pw-#WMqIwe=)dtTnrT`k|%UMOU@4ijy`*!H^ds16(CP`yLbxkcrloPRCx(0|c zNza%AdhO|sx4#|z$SBm)^ZkbH@@?rOV^{Dfc&lQrnf`w>y514HnW{fERj-{>ot3O5 z8z>%(bdgk6(Ii({ptdkkcc^oKSUkJB47j^<^!M50Z*4wLUj!kOeNJ`j#vqHA$%}?a z#pUOsUiSxQuv2;dIkV;i|4Fwl>QTlgC_mHe6=XC(RHlE@Jx5GH%V`9FMb$s2n#qa0 z0z2>JFh!_`evx5QT);IsjBpUhuD7Vb-!adWYeV(NS@!-^1Y%f;-R9YrLi2zi8mUEo%8;1 zuyw+k`XeYXIjnnjzu-?*Pa4?HO)$5)K-s%45N7)2my``+z8RKN$UC7(a@H{Kz)$U@ zNYu{nHA>(6^>k`H{A%s1K_cR!Bty9tL#k7A7n?&B6S3V@ZiGDBni_jzL~g38nyupb z*H)syOuf~AZ}PfCD(3b=V0eM^c%3V@kulQEOmqUd?*X~kR}N5<)4s0zD#+Vx+>FtQ z30wOu5B53uxZS6^eOR^=@y(#5y|}!7Mvw9Uv5#>d6~?sRxJzfFDGH zirbvs!^1?B&~Vw6ebu4~L08(z;Y@CGF8A~k*>$H;&1nuLKCNf7w)bxvV=|ipb}L5& zFK*XHY8P+Zi~KH*FiOlgoW5i>-S^RV?uYHoPFGJ)is3utG+sJ^l{&w+J=J7D5aXF3#M8vZ zi5t6is?$E}$cX701)mcU_hhSqKyei$jvqP}mgA9S$44(3db;-iu4+L~KgkNKfEX(b zn{I;hz8mS(3^b-zv8hvqmtrT{~t4071d0e&bGloA6u!ss)4Dm1zth z_Rsc`jH=yH~he3%Lorn)f=SR_x71aon@G1HFTmkak?>D z_#9XC$Vh}F01HK>vr(M3fh$KQOQK7dHvbuS*Q!(hlbS_&@Iu@wiu~#&T~^)%n>$rFO3hWWX71N60cUbDBKMD!X`9R1w5%{3V| zda-`YJJdUl@%G>~zwUVyaX7Lx!hfuzrBfX-Cbqf$x~xSAnc9L!2pKRhjtI>|Sw_g3 zDHGYgn-RV)5!s!ovd)Xo!0?-Fo^=t60wL3X6ZPAv%a)d;l+BJ@;FKIEKRYNaJitLQ zE|@WN$p8YjZ&~>=RlavTwhMmrhg^`pm8eSwA$surl^CGp-y&i(NpQIO@Uw23+ZfNI zL4DqEqU$o`uYlQ$Wcm9;MxK^Mz~h9Dn-`U8@rTV;0@eiX7zG;^ZGLGR3@7vS^k}sL z5#l&^g*_2jth{(+lsWfs;a~Y4Tfx>lhkI*t#P77Yh~jS7@R&0e+e-9Py0R$s1H|;J zBWg-U`e75T0L9V>#A3n^KL41akE5dTWJzjWKxF+<77tWT7V5sOuu(?J%$p1e0AA4r zI=?Ssp^Crm!;=QQw(S|7-%@MOtsEl8NawoKQ0Nww?`QXYp}(T!RYtVfRk^fI`Dk)$ zv60p{pZvs`sv(;jDzD*$i~9vc84`HjO|gK0n@l+yN$}VR@xE$^HtU}W$fntoQV?~4 zU%(anZwVBXq`LR4s-T6Q7?Aoa+Vs8HYuQ*V^Nl*ZJ%ghB*S7%1PvOm$K)V;X83$jE z6dt|A^^$(`8Vv}Cdv>4yVY_j2uSZ7s;H^R{%Dax+xQpBs08Gh-`E~>z6ipq@|9HTr zz-PDFwCHLNvDk6OM|RnZzWrXKSc=ygD20rz*W=}e-dnKoan0Mu+=_~d)R#Ze@WR1Q z+%uX_yZ>en`nTPua$bs^bOcHBaVz*Nr-ypq@6-FS0OOBUCmVYAIMg4&zs@@ZY|-~8 z`+fcb<`jK9mE7X9jJ7C$bLbOJoq0Kgkxu#`QodUO^4jL55b{$v5uoEegZQXPd;yEy zB0`k{m_*LdsAKQ$E|1Fn4U$n&j3d`_RL9%f>!J1)wzI~>#(livGN&UQU7Ym?$S{jk<-6oadR6`&)BnaECzo)+FAZCpXsc79*&EyD6wp2itV{Bkcxm88Zy~_5oXk= z>!8$2K5lp6S8uMo06GUjET&r2-luaDEZf)BSt%*?NzU4}CDv&Cy5obQ7in|Q5Zf2O zu~e;m#^*-aA2BkSJ5~md)Fj%$sQ5im#^z{Uq?rGy^Rs~saYVq@MXqyibPDAlmb%}P zIW|V(C?MtH?%f?C!^1W$!xtVbC}~|Xh`*TVGulF)FP(?NgglJQx-nc1T|`#KeZ@L}KN#v?HmLWgxb&TYh@>Xn@Jlp_Mvn(WxMx3)KiYJLd8Yfd7Lb8XQB`5m1kP1>y&g0KVW>KxzE>9Xm4 zQ(tw{$wD1F_pjo;a!F&uYAoGdk9$6uAZ@dYst2jV=y}i@<~UY!?D-1b{Ki(wej{-* z-Yi{2$t9e*Q(bn^ylN73Oh!l7$c9Db-5Rj%6K-NX5uI%48&}00aQx4|g2e*tt~%}| z!QcV0yJZkt@EYtt}rXVm^_3Mo3tFJ^rHG*P7?4` zl@n@%=s_KwaKK!&^jbqG1q^p9CWvZK3y{*w;RK5lQ5pY}1W7<;FJRk1TiMSY$k zQ1^_7R={d$%#_}uM{#>qdlR77U-=ql$t4bMEPC&-`xTYoiqpxe7qhHvQF-6LT>Ti{T@^+soxPU$Hg5kySp9p zTh`S-O+MYa(0A1%oh+K;*x>ZH5I$1->Y#Mq>XUg^B`W@T4-w`bH6P&9HF5%Mr5PoW zzWZtiR(?k0V!Gd|?rgZF{jibHy-N6qPSBt*=grJU+;Vl`hKCxlq3)O+aotzP#@IX+ zrr)efids6SKk_Qt_#xfy{X)Eph6AyoXE5`wB+ru{k{$dInP)o0nw7k{V8KY5HX|ki z^q!wNV>9aE9rO-TGlA`Ex&&1k?voMD!%I5FAhlyfd5Bxk)JL9zg-GkQvkrgha7t#a za3YCzo_6#V`+1(+#WvG#l(!O8nx8crAa5L(D@)?fr-(e{W(zbQv`(`kREr3NwcqcF z>lS^gq;D`4CUEX>L6*PXx69K}W$D~upg^Plt#INc4Q}(I*xCG>s7tYS?;nP{chzE- zD7bsb(eT$iE$actIhEDshGMTZklm(h6NPVX zlz#=85z1%|{FpC3xp#(!ZTcZHN>DdfDTBpsD7y~!P51P3F|^%SWftoDWSw`C^BtUn z?r(My$CN#)?>zzpOB@(Km#(J|L`R{9@$+53tTcHQygP-bpV7w_H}`gFlNw#dNLRC( zt-#H0NV+5_LI*!6j_ak0G>_b@_%uWxQ_!9-y`S`$F6s#+PYS0+LBY8BbrDN#bpNSv z-naNsUg1I@JeA)bb2eb)hb}hC5mM++=rfwTp5j1v6twp&=%q^<8=(Sh!Vf}#n25*? zpslj14vzxjHSi929n6>u9@cOH{SrVxf}Z*MaUQj+wu)eGJ_!);*7DXF_J}!nJ#$fD z30>SSHcak4Zxai<`3u0FKmYN#SX2f0Os!D9W1nRj>9GG}Pw_ozzdnee;Sq_Rn}9qz zvY~FB5&Qi6rp@NBa=(DWuLBK&)Axqg!%!03;qgDL&MUoL{?hkx?9<~%J_s3Z26%k! zR~@lQ`J{RevDP%$BB{nb!Tv+|%28BBUX8Q$WG^5c$men?Ie~~Bd4EiPJSVhD1D}6x zlXLlp+?=U=dqRW|isW@Zsg5koNTA@r=`m_=*!-x#pVZM)+k0^f|FX9A`x-04+bu04jSC24yM__(@ErGMqRL_M)&fsxKq2wAb=vw~zbZ^AvYl|!Q@c0nF ze-czZo_f^&-#3iKQum0BT#L4eK_k-Jj)P18qdwl-ztntTxt~Mq`7D`!3tJ*|4x)2& zBlAG$S@IvNxXR@=;vI#A>wZ_)EDugYm#30z`Yo#IWw1~E?gHQb(Nb-spoE9^S&*++ zbuv)0!_2c!%b@Gz6uGgZ7S(PTRPg?GSI(k&T#UvLc5@!5X~>~sHAqpG-|ce3hEfq|@%$}O^1}mQ8>sxn@nF&Si&Lv)~pDJh1rg*D`V4v($-!sEQ01&Jb49<2| z-CTb&t9)iMz3+dVkhMEqEuCevmkNl9+wcOik2BgR#*{WBIuJ(J!D^?|LDznvvwj+^ zSA?!1A`)qie;OBg6NK>N92+k?j1Ul+sE`Pp{29G99E?Pb7N|@Xx^bXZ4tu5T?%gcX z5kY3(-ODeMphX*)V^Gsi8sGT@bxirwm(nl5nWCo7a;NpEGz8goXLX%asmRas_0869 z|1isQeUT{^fW$gB9fg3#e~~*j4UgqD48H$Y6`yTG104nxWO{E)Lmy@gI(*cR?=j@` zjNBMQXaL}|d~dcF z-r3(SI+iTcJ)QEmu&^Ne$fgQps7FX{e5VAjIbbZ537Cm^&P_1gQ4or94@OuxaLV{I zubfO`Yb>3A>wJq5IsSv+tV~2$7!Q}K&>v}ogilNnxN;0( zVY{M!cfUUoH0KfH-L+5&$9aGOora*`<^^m~F>H0_;XU??IGr?|igw1UJf?^orf5&y zD_Ib8SPqlI$Wx56Q~fV#GN@SiPshYrtZXCK!<>it&Q167wklFhb;(uU+C^&&tz!mz zo*^U~tkT(2Mq1K)O|R^jBTFH=3nLooJcti+d*Vl&xBePR({YNTQN^51e@ucXOMqZX zPix8*N72q^`5@oqsf3xI)%9_ydegjShw<3H+}1?pI!;?~7c);f0bgOr21%+^-8hGQ zQKi;DD~at(cf{RR>R1#d?-&lKG(Pj3>SfJUc$0bhC1V854IVFF?2D*)27jg8vpc0z z6-((XYu#Yw;dITsHUB4CwGgq3{O(_^_8vqeLo{(&XM2@j4XL&}0k!%oT{=HF`gF#x z*qg#{q-o_G?kaoTGsIY7ydV~sbL!@ zN8y-}Imbr>W<2x}IVog+fqLALa;4U5)tXBf`OlCOMawR|qxXLMe(;J8#Z-5c&CJFZ{KE|-cO`ZIj*i2VqBC` zKlL-ms5xbXsNbq6F2N99m0bE2Ra!ck0H2w@xY%AVS_uBz9ZHz^cy?wCLT?2r`U3D8 z%&39l1cleME)$HhDqif(FJKEldXImP35Ud$a)VSy zA7c@yJ~HZq1!L10u35k~2B$864qhm#d)>2tPp!1gYX&?G5x$o+!>y$cuuFUbFHQNA z{KS;QzZ64k#*dyoV_J4WGz4W7Yp}*OTRMyoE@`$GKWHKG>OU&Zh_aK2BtEsOFcHKD zbqrZW_>KmD2z1j|K!&Nk->@UziIt1L>8bzmyT2P}-Ut(GR3TeM=9y_zX}X1mWZd*N z{5$umY*pr$>69`KaEmqkg!LtP^g0V%VJ*>yyst-cHZkv4&EO9ReBgn^l>2g4Jmxf{ zU~#9)!>bH5nUHyNs7M@7fFA5gpYjJik}7%W=UPsCrIugb2fug))^g5s;ofE^XvR;r zQ`{;#-l#&dlHR>fUidNQ4;H%3*rn&BE?sueqvmoO(=wS4lcOY>8YX*1cO3n^af4>Y zXFbn>?clksK-$ih>RQ#spBF{`96o~?uOf2Z@V|ZAbzB%Z)@<>la{AB)P6z0YS47z% zdR@=_eoLXgL>#F1m?urm=k;5xn2lJzg16@Cby-|fj%+(OswFy|8Cb|Jd6f`v>ye7n%+po7hAG1@{1v?D0^1l%F`_#315dk?oHA}vUY&szvF8>RH6a!<0E>t z(A1{v{W*h1c|>3c_FFbb>pUvgneh#LRwB&Te=j+p2l7VreQB}A_FIj_W?vo+gl-RR zahU@>HpZ?27En?sQ4XBvCz=o-H{&hd$gvlppN7~J`_rg)z}5h2lt!V!!djr#(pCvu zvf?17G#sh7dMA6gm3MV%U|!L*w8tC}Z^z~~8#Bm>m95G(A8a~lPdSzNT5G@JXEabI zspAdplc?NA6n^L&pML(8K-Q18sOdMzLU%>U!QWlA{!a;yOUdoxp=QyWq?OH0n_7

Kl> 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 literal 31285 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

VCHIy$*i1&hYL%<~n>^|MYLBW=6i-65=U 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 diff --git a/docs/build/media/visual-c---property-pages-showing-release-config.png b/docs/build/media/visual-c---property-pages-showing-release-config.png index 763a22945ab1ac409800081b8f951fb2645c75d8..39ff39170dc943b8e75f916c24b32282f2263ccf 100644 GIT binary patch literal 18877 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 FFD< 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 azCk(v&EO7B7~})}EC~@=;c7wsfd2 **_project-name_ Properties** from the main menu, or right-click on the project node in **Solution Explorer** and choose **Properties**. +In the Visual Studio IDE, you can view and edit the properties needed to compile and build a project. This information includes the application name, extension (such as DLL, LIB, EXE), compiler options, linker options, debugger settings, and custom build steps. + +You can view and modify these properties by using *property pages*. To access the property pages, choose **Project** > **_project-name_ Properties** from the main menu, or right-click on the project node in **Solution Explorer** and choose **Properties**. ## Default properties -When you create a project, the system assigns values for various properties. The defaults vary somewhat depending on the kind of project and what options you choose in the app wizard. For example, an ATL project has properties related to MIDL files, but these properties are absent in a basic console application. The default properties are shown in the General pane in the Property Pages: +When you create a project, the system assigns values for various properties. The defaults vary somewhat depending on the kind of project and what options you choose in the app wizard. For example, an active template library (ATL) project has properties related to Microsoft Interface Definition Language (MIDL) files, but these properties are absent in a basic console application. The default properties are shown in the General pane in the **Property Pages** window: :::image type="complex" source="media/visual-c---project-defaults.png" alt-text="Screenshot of the Visual Studio project properties dialog."::: The General page is open. The Project Defaults section is highlighted, which includes Configuration Type set to Application (.exe), use of MFC set to Use standard Windows libraries, Character set is Unicode, Common Language Runtime Support is set to No Common Language Runtime Support, Whole Program optimization is set to No Whole Program Optimization, and Windows Store APP support is set to No. :::image-end::: -## Applying properties to build configurations and target platforms +## Apply properties to build configurations and target platforms -Some properties, such as the application name, apply to all build variations and target platforms, whether it's a debug or release build. But most properties are configuration-dependent. To generate the correct code, the compiler has to know both the specific platform the program runs on and which specific compiler options to use. So when you set a property, it's important to pay attention to which configuration and platform the new value should apply to. Should it apply only to Debug Win32 builds, or should it also apply to Debug ARM64 and Debug x64? For example, the **Optimization** property, by default, is set to **Maximize Speed (/O2)** in a Release configuration, but is disabled in the Debug configuration. +Some properties, such as the application name, apply to all build variations and target platforms, whether it's a debug or release build. But most properties are configuration-dependent. To generate the correct code, the compiler has to know both the specific platform the program runs on and which specific compiler options to use. So when you set a property, it's important to pay attention to which configuration and platform the new value should apply to. Should it apply only to Debug Win32 builds, or should it also apply to Debug Arm64 and Debug x64? For example, the **Optimization** property, by default, is set to **Maximize Speed (/O2)** in a Release configuration, but is disabled in the Debug configuration. You can always see and change the configuration and platform a property value should apply to. The following illustration shows the property pages with the configuration and platform information controls at the top. When the **Optimization** property is set here, it only applies to Debug Win32 builds, the currently active configuration, as shown by the red arrows. @@ -28,11 +31,11 @@ The page is open to C/C++, Optimization. The Optimization setting is set to Disa The following illustration shows the same project property page, but the configuration has been changed to Release. Note the different value for the Optimization property. Also note that the active configuration is still Debug. You can set properties for any configuration here; it doesn't have to be the active one. -:::image type="content" source="media/visual-c---property-pages-showing-release-config.png" alt-text="Screenshot of the Visual Studio project Property Pages dialog. The Configuration dropdown is called out and is set to Release. The C/C++ > Optimization > Optimization setting is set to Maximize Speed (/O2)."::: +:::image type="content" source="media/visual-c---property-pages-showing-release-config.png" alt-text="Screenshot of the Visual Studio project Property Pages dialog. The Configuration dropdown is called out and is set to Release. The optimization setting is set to Maximize Speed slash O2."::: ## Target platforms -*Target platform* refers to the kind of device and operating system that the executable will run on. You can build a project for more than one platform. The available target platforms for C++ projects depend on the kind of project. They include but aren't limited to Win32, x64, ARM, ARM64, Android, and iOS. The **x86** target platform that you might see in **Configuration Manager** is identical to **Win32** in native C++ projects. Win32 means 32-bit Windows and **x64** means 64-bit Windows. For more information about these two platforms, see [Running 32-bit applications](/windows/win32/WinProg64/running-32-bit-applications). +*Target platform* refers to the kind of device and operating system that the executable runs on. You can build a project for more than one platform. The available target platforms for C++ projects depend on the kind of project. They include but aren't limited to Win32, x64, ARM, Arm64, Android, and iOS. The **x86** target platform that you might see in **Configuration Manager** is identical to **Win32** in native C++ projects. Win32 means 32-bit Windows and **x64** means 64-bit Windows. For more information about these two platforms, see [Running 32-bit applications](/windows/win32/WinProg64/running-32-bit-applications). The **Any CPU** target platform value that you might see in **Configuration Manager** has no effect on native C++ projects. It's only relevant for C++/CLI and other .NET project types. For more information, see [`/CLRIMAGETYPE` (Specify Type of CLR Image)](reference/clrimagetype-specify-type-of-clr-image.md). @@ -51,7 +54,7 @@ The **Property Pages** dialog box shows only the property pages that are relevan ## Directory and path values -MSBuild supports the use of compile-time constants for certain string values, such as include directories and paths, called *macros*. A macro can refer to a value that's defined by Visual Studio or the MSBuild system, or to a user-defined value. Macros look like `$(macro-name)` or `%(item-macro-name)`. They're exposed in the property pages, where you can refer to and modify them by using the [Property Editor](#property_editor). Use macros instead of hard-coded values such as directory paths. Macros make it easier to share property settings between machines and between versions of Visual Studio. And, you can better ensure that your project settings participate correctly in [property inheritance](project-property-inheritance.md). +MSBuild supports the use of compile-time constants for certain string values, such as include directories and paths, called *macros*. A macro can refer to a value that's defined by Visual Studio or the MSBuild system, or to a user-defined value. Macros look like `$(macro-name)` or `%(item-macro-name)`. They're exposed in the property pages, where you can refer to and modify them by using the [Property Editor](#property_editor). Use macros instead of hard-coded values such as directory paths. Macros make it easier to share property settings between machines and between versions of Visual Studio. You can also better ensure that your project settings participate correctly in [property inheritance](project-property-inheritance.md). The following illustration shows the property pages for a Visual Studio C++ project. In the left pane, the **VC++ Directories** *rule* is selected, and the right pane lists the properties that are associated with that rule. The property values are often macros, such as `$(VC_SourcePath)`: @@ -63,21 +66,21 @@ You can use the [Property Editor](#property_editor) to view the values of all av ### Predefined macros -- **Global macros**:\ +- **Global macros**\ Global macros apply to all items in a project configuration. A global macro has the syntax `$(name)`. An example of a global macro is `$(VCInstallDir)`, which stores the root directory of your Visual Studio installation. A global macro corresponds to a `PropertyGroup` in MSBuild. - **Item macros**\ - Item macros have the syntax `%(name)`. For a file, an item macro applies only to that file—for example, you can use `%(AdditionalIncludeDirectories)` to specify include directories that apply only to a particular file. This kind of item macro corresponds to an `ItemGroup` metadata in MSBuild. When used in the context of a project configuration, an item macro applies to all files of a certain type. For example, the C/C++ **Preprocessor Definitions** configuration property can take a `%(PreprocessorDefinitions)` item macro that applies to all .cpp files in the project. This kind of item macro corresponds to an `ItemDefinitionGroup` metadata in MSBuild. For more information, see [Item Definitions](/visualstudio/msbuild/item-definitions). + Item macros have the syntax `%(name)`. For a file, an item macro applies only to that file. For example, you can use `%(AdditionalIncludeDirectories)` to specify include directories that apply only to a particular file. This kind of item macro corresponds to an `ItemGroup` metadata in MSBuild. When used in the context of a project configuration, an item macro applies to all files of a certain type. For example, the C/C++ **Preprocessor Definitions** configuration property can take a `%(PreprocessorDefinitions)` item macro that applies to all .cpp files in the project. This kind of item macro corresponds to an `ItemDefinitionGroup` metadata in MSBuild. For more information, see [Item definitions](/visualstudio/msbuild/item-definitions). ### User-defined macros -You can create *user-defined macros* to use as variables in project builds. For example, you could create a user-defined macro that provides a value to a custom build step or a custom build tool. A user-defined macro is a name/value pair. In a project file, use the `$(name)` notation to access the value. +You can create *user-defined macros* to use as variables in project builds. For example, you could create a user-defined macro that provides a value to a custom build step or a custom build tool. A user-defined macro is a name-value pair. In a project file, use the `$(name)` notation to access the value. A user-defined macro is stored in a property sheet. If your project doesn't already contain a property sheet, you can create one by following the steps under [Share or reuse Visual Studio project settings](create-reusable-property-configurations.md). #### To create a user-defined macro -1. Open the **Property Manager** window. (On the menu bar, choose **View** > **Property Manager** or **View** > **Other Windows** > **Property Manager**.) Open the shortcut menu for a property sheet (its name ends in *`.user`*) and then choose **Properties**. The **Property Pages** dialog box for that property sheet opens. +1. Open the **Property Manager** window. On the menu bar, select **View** > **Other Windows** > **Property Manager**. Open the shortcut menu for a property sheet (its name ends in *`.user`*) and then choose **Properties**. The **Property Pages** dialog box for that property sheet opens. 1. In the left pane of the dialog box, select **User Macros**. In the right pane, choose the **Add Macro** button to open the **Add User Macro** dialog box. @@ -99,7 +102,7 @@ The property editor for Include Directories is open. The evaluated value is disp ## Add an include directory to the set of default directories -When you add an include directory to a project, it's important not to override all the default directories. The correct way to add a directory is to append the new path, for example "`C:\MyNewIncludeDir\`", and then to Append the **`$(IncludePath)`** macro to the property value. +When you add an include directory to a project, it's important not to override all the default directories. The correct way to add a directory is to append the new path, for example `C:\MyNewIncludeDir\`, and then to append the `$(IncludePath)` macro to the property value. ## Quickly browse and search all properties @@ -109,7 +112,7 @@ No prefix:\ Search in property names only (case-insensitive substring). '`/`' or '`-`':\ -Search only in compiler switches (case-insensitive prefix) +Search only in compiler switches (case-insensitive prefix). `v`:\ Search only in values (case-insensitive substring). @@ -124,19 +127,8 @@ In the left pane of the project's **Property Pages** dialog box, expand **Config In the right pane, modify the **Environment** or **Merge Environment** project settings and then choose the **OK** button. -## In this section - -[Share or reuse Visual Studio project settings](create-reusable-property-configurations.md)\ -How to create a *`.props`* file with custom build settings that can be shared or reused. - -[Project property inheritance](project-property-inheritance.md)\ -Describes the order of evaluation for the *`.props`*, *`.targets`*, *`.vcxproj`* files, and environment variables in the build process. - -[Modify properties and targets without changing the project file](modify-project-properties-without-changing-project-file.md)\ -How to create temporary build settings without having to modify a project file. - -## See also +## Related content -[Visual Studio Projects - C++](creating-and-managing-visual-cpp-projects.md)\ -[`.vcxproj` and `.props` file structure](reference/vcxproj-file-structure.md)\ -[Property page XML files](reference/property-page-xml-files.md) +- [Share or reuse Visual Studio project settings](create-reusable-property-configurations.md) +- [Property inheritance in Visual Studio projects](project-property-inheritance.md) +- [Modify C++ project properties and targets without changing the project file](modify-project-properties-without-changing-project-file.md) diff --git a/docs/build/x64-calling-convention.md b/docs/build/x64-calling-convention.md index 54418166c4..fb434a6b5b 100644 --- a/docs/build/x64-calling-convention.md +++ b/docs/build/x64-calling-convention.md @@ -1,21 +1,22 @@ --- title: "x64 calling convention" -description: "Learn about the details of the default x64 calling convention." -ms.date: 05/17/2022 +description: "Learn about the default x64 calling convention that one function uses to make calls into another function." +ms.date: 03/19/2025 +ms.topic: concept-article --- # x64 calling convention -This section describes the standard processes and conventions that one function (the caller) uses to make calls into another function (the callee) in x64 code. +This article describes the standard processes and conventions that one function (the caller) uses to make calls into another function (the callee) in x64 code. -For more information on the `__vectorcall` calling convention, see [__vectorcall](../cpp/vectorcall.md). +For more information about the `__vectorcall` calling convention, see [__vectorcall](../cpp/vectorcall.md). ## Calling convention defaults -The x64 Application Binary Interface (ABI) uses a four-register fast-call calling convention by default. Space is allocated on the call stack as a shadow store for callees to save those registers. +The x64 Application Binary Interface (ABI) uses a four-register, fast-call calling convention by default. Space is allocated on the call stack as a shadow store for callees to save those registers. There's a strict one-to-one correspondence between a function call's arguments and the registers used for those arguments. Any argument that doesn't fit in 8 bytes, or isn't 1, 2, 4, or 8 bytes, must be passed by reference. A single argument is never spread across multiple registers. -The x87 register stack is unused. It may be used by the callee, but consider it volatile across function calls. All floating point operations are done using the 16 XMM registers. +The x87 register stack is unused. It might be used by the callee, but consider it volatile across function calls. All floating point operations are done using the 16 XMM registers. Integer arguments are passed in registers RCX, RDX, R8, and R9. Floating point arguments are passed in XMM0L, XMM1L, XMM2L, and XMM3L. 16-byte arguments are passed by reference. Parameter passing is described in detail in [Parameter passing](#parameter-passing). These registers, and RAX, R10, R11, XMM4, and XMM5, are considered *volatile*, or potentially changed by a callee on return. Register usage is documented in detail in [x64 register usage](x64-software-conventions.md#x64-register-usage) and [Caller/callee saved registers](#callercallee-saved-registers). @@ -27,7 +28,7 @@ Most structures are aligned to their natural alignment. The primary exceptions a ## Unwindability -Leaf functions are functions that don't change any non-volatile registers. A non-leaf function may change non-volatile RSP, for example, by calling a function. Or, it could change RSP by allocating additional stack space for local variables. To recover non-volatile registers when an exception is handled, non-leaf functions are annotated with static data. The data describes how to properly unwind the function at an arbitrary instruction. This data is stored as *pdata*, or procedure data, which in turn refers to *xdata*, the exception handling data. The xdata contains the unwinding information, and can point to additional pdata or an exception handler function. +Leaf functions are functions that don't change any nonvolatile registers. A nonleaf function might change nonvolatile RSP, for example, by calling a function. Or, it could change RSP by allocating more stack space for local variables. To recover nonvolatile registers when an exception is handled, nonleaf functions are annotated with static data. The data describes how to properly unwind the function at an arbitrary instruction. This data is stored as *pdata*, or procedure data, which in turn refers to *xdata*, the exception handling data. The xdata contains the unwinding information, and can point to additional pdata or an exception handler function. Prologs and epilogs are highly restricted so that they can be properly described in xdata. The stack pointer must remain 16-byte aligned in any region of code that isn't part of an epilog or prolog, except within leaf functions. Leaf functions can be unwound simply by simulating a return, so pdata and xdata aren't required. For details about the proper structure of function prologs and epilogs, see [x64 prolog and epilog](../build/prolog-and-epilog.md). For more information about exception handling, and the exception handling and unwinding of pdata and xdata, see [x64 exception handling](../build/exception-handling-x64.md). @@ -101,9 +102,9 @@ func2() { // RCX = 2, RDX = XMM1 = 1.0, and R8 = 7 ## Return values -A scalar return value that can fit into 64 bits, including the **`__m64`** type, is returned through RAX. Non-scalar types including floats, doubles, and vector types such as [`__m128`](../cpp/m128.md), [`__m128i`](../cpp/m128i.md), [`__m128d`](../cpp/m128d.md) are returned in XMM0. The state of unused bits in the value returned in RAX or XMM0 is undefined. +A scalar return value that can fit into 64 bits, including the `__m64` type, is returned through RAX. Nonscalar types including floats, doubles, and vector types such as [`__m128`](../cpp/m128.md), [`__m128i`](../cpp/m128i.md), [`__m128d`](../cpp/m128d.md) are returned in XMM0. The state of unused bits in the value returned in RAX or XMM0 is undefined. -User-defined types can be returned by value from global functions and static member functions. To return a user-defined type by value in RAX, it must have a length of 1, 2, 4, 8, 16, 32, or 64 bits. It must also have no user-defined constructor, destructor, or copy assignment operator. It can have no private or protected non-static data members, and no non-static data members of reference type. It can't have base classes or virtual functions. And, it can only have data members that also meet these requirements. (This definition is essentially the same as a C++03 POD type. Because the definition has changed in the C++11 standard, we don't recommend using `std::is_pod` for this test.) Otherwise, the caller must allocate memory for the return value and pass a pointer to it as the first argument. The remaining arguments are then shifted one argument to the right. The same pointer must be returned by the callee in RAX. +User-defined types can be returned by value from global functions and static member functions. To return a user-defined type by value in RAX, it must have a length of 1, 2, 4, 8, 16, 32, or 64 bits. It must also have no user-defined constructor, destructor, or copy assignment operator. It can have no private or protected nonstatic data members, and no nonstatic data members of reference type. It can't have base classes or virtual functions. And, it can only have data members that also meet these requirements. This definition is essentially the same as a C++03 POD type. Because the definition has changed in the C++11 standard, we don't recommend using `std::is_pod` for this test. Otherwise, the caller must allocate memory for the return value and pass a pointer to it as the first argument. The remaining arguments are then shifted one argument to the right. The same pointer must be returned by the callee in RAX. These examples show how parameters and return values are passed for functions with the specified declarations: @@ -168,7 +169,7 @@ The x87 FPU control word register gets set using the following standard values a | Register\[bits] | Setting | |-|-| -| FPCSR\[0:6] | Exception masks all 1's (all exceptions masked) | +| FPCSR\[0:6] | Exception masks all 1s (all exceptions masked) | | FPCSR\[7] | Reserved - 0 | | FPCSR\[8:9] | Precision Control - 10B (double precision) | | FPCSR\[10:11] | Rounding control - 0 (round to nearest) | @@ -176,7 +177,7 @@ The x87 FPU control word register gets set using the following standard values a A callee that modifies any of the fields within FPCSR must restore them before returning to its caller. Furthermore, a caller that has modified any of these fields must restore them to their standard values before invoking a callee, unless by agreement the callee expects the modified values. -There are two exceptions to the rules about the non-volatility of the control flags: +There are two exceptions to the rules about the nonvolatility of the control flags: - In functions where the documented purpose of the given function is to modify the nonvolatile FPCSR flags. @@ -191,13 +192,13 @@ The nonvolatile portion is set to the following standard values at the start of | Register\[bits] | Setting | |-|-| | MXCSR\[6] | Denormals are zeros - 0 | -| MXCSR\[7:12] | Exception masks all 1's (all exceptions masked) | +| MXCSR\[7:12] | Exception masks all 1s (all exceptions masked) | | MXCSR\[13:14] | Rounding control - 0 (round to nearest) | | MXCSR\[15] | Flush to zero for masked underflow - 0 (off) | A callee that modifies any of the nonvolatile fields within MXCSR must restore them before returning to its caller. Furthermore, a caller that has modified any of these fields must restore them to their standard values before invoking a callee, unless by agreement the callee expects the modified values. -There are two exceptions to the rules about the non-volatility of the control flags: +There are two exceptions to the rules about the nonvolatility of the control flags: - In functions where the documented purpose of the given function is to modify the nonvolatile MXCSR flags. @@ -207,10 +208,10 @@ Make no assumptions about the MXCSR register's volatile portion state across a f ## setjmp/longjmp -When you include setjmpex.h or setjmp.h, all calls to [`setjmp`](../c-runtime-library/reference/setjmp.md) or [`longjmp`](../c-runtime-library/reference/longjmp.md) result in an unwind that invokes destructors and **`__finally`** calls. This behavior differs from x86, where including setjmp.h results in **`__finally`** clauses and destructors not being invoked. +When you include `setjmpex.h` or `setjmp.h`, all calls to [`setjmp`](../c-runtime-library/reference/setjmp.md) or [`longjmp`](../c-runtime-library/reference/longjmp.md) result in an unwind that invokes destructors and `__finally` calls. This behavior differs from x86, where including `setjmp.h` results in `__finally` clauses and destructors not being invoked. -A call to `setjmp` preserves the current stack pointer, non-volatile registers, and MXCSR registers. Calls to `longjmp` return to the most recent `setjmp` call site and resets the stack pointer, non-volatile registers, and MXCSR registers, back to the state as preserved by the most recent `setjmp` call. +A call to `setjmp` preserves the current stack pointer, nonvolatile registers, and MXCSR registers. Calls to `longjmp` return to the most recent `setjmp` call site and resets the stack pointer, nonvolatile registers, and MXCSR registers, back to the state as preserved by the most recent `setjmp` call. -## See also +## Related content -[x64 software conventions](../build/x64-software-conventions.md) +- [Overview of x64 ABI conventions](../build/x64-software-conventions.md) From 39b18f9d470d6e5c435faeecb3a92201e762ee42 Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Wed, 19 Mar 2025 22:44:07 -0700 Subject: [PATCH 063/981] Revert code style for files --- docs/build/cmake-projects-in-visual-studio.md | 112 +++++++++--------- docs/build/vscpp-step-0-installation.md | 7 +- 2 files changed, 61 insertions(+), 58 deletions(-) diff --git a/docs/build/cmake-projects-in-visual-studio.md b/docs/build/cmake-projects-in-visual-studio.md index d136d227d1..c8d8af1d31 100644 --- a/docs/build/cmake-projects-in-visual-studio.md +++ b/docs/build/cmake-projects-in-visual-studio.md @@ -14,7 +14,7 @@ f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake. ::: moniker range=">=msvc-160" -Visual Studio's native support for CMake allows you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *CMakeLists.txt*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. Visual Studio invokes *cmake.exe* directly for CMake configuration and build. +Visual Studio's native support for CMake allows you to edit, build, and debug CMake projects on Windows, the Windows Subsystem for Linux (WSL), and remote systems from the same instance of Visual Studio. CMake project files (such as *`CMakeLists.txt`*) are consumed directly by Visual Studio for the purposes of IntelliSense and browsing. Visual Studio invokes `cmake.exe` directly for CMake configuration and build. ## Installation @@ -28,7 +28,7 @@ For more information, see [Install the C++ Linux workload in Visual Studio](../l ## IDE integration -When you **open a folder** containing a *CMakeLists.txt* file, the following things happen. +When you **open a folder** containing a *`CMakeLists.txt`* file, the following things happen. :::image type="complex" source="media/start-window.png" alt-text="Screenshot of the first dialog that opens when Visual Studio is started."::: The dialog offers these options: clone a repository, open a project or solution, open a local folder, or create a new project. Open a local folder is called out in the screenshot. @@ -38,12 +38,12 @@ The dialog offers these options: clone a repository, open a project or solution, - The **Solution Explorer** displays the folder structure and files. -- Visual Studio runs CMake and generates the CMake cache file (*CMakeCache.txt*) for the default configuration. The CMake command line is displayed in the **Output Window**, along with other output from CMake. +- Visual Studio runs CMake and generates the CMake cache file (*`CMakeCache.txt`*) for the default configuration. The CMake command line is displayed in the **Output Window**, along with other output from CMake. - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. > [!NOTE] -> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level *CMakeLists.txt* exists in a subfolder and not at the root of the workspace, you're prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). +> Starting in Visual Studio 2022 version 17.1 Preview 2, if your top-level *`CMakeLists.txt`* exists in a subfolder and not at the root of the workspace, you're prompted whether you'd like to enable CMake integration or not. For more information, see [CMake partial activation](#cmake-partial-activation). Once CMake cache generation has succeeded, you can also view your projects organized logically by targets. Choose the **Select View** button on the **Solution Explorer** toolbar. From the list in **Solution Explorer - Views**, select **CMake Targets View** and press **Enter** to open the targets view: @@ -51,11 +51,11 @@ Once CMake cache generation has succeeded, you can also view your projects organ Choose the **Show All Files** button at the top of **Solution Explorer** to see all the CMake-generated output in the *`out/build/`* folders. -Use the *CMakeLists.txt* file in each project folder just as you would in any CMake project. You can specify source files, find libraries, set compiler and linker options, and specify other build system-related information. For more information on CMake language services provided by Visual Studio, see [Editing CMakeLists.txt files](#editing-cmakeliststxt-files). +Use the *`CMakeLists.txt`* file in each project folder just as you would in any CMake project. You can specify source files, find libraries, set compiler and linker options, and specify other build system-related information. For more information on CMake language services provided by Visual Studio, see [Editing CMakeLists.txt files](#editing-cmakeliststxt-files). Visual Studio uses a CMake configuration file to drive CMake cache generation and build. For more information, see [Configuring CMake projects](#configuring-cmake-projects) and [Building CMake projects](#building-cmake-projects). -To pass arguments to an executable at debug time, you can use another file called *launch.vs.json*. For more information on debugging cross-platform CMake projects in Visual Studio, see [Debugging CMake projects](#debugging-cmake-projects). +To pass arguments to an executable at debug time, you can use another file called *`launch.vs.json`*. For more information on debugging cross-platform CMake projects in Visual Studio, see [Debugging CMake projects](#debugging-cmake-projects). Most Visual Studio and C++ language features are supported by CMake projects in Visual Studio. Examples include: @@ -65,15 +65,15 @@ Most Visual Studio and C++ language features are supported by CMake projects in - [Clang/LLVM support](https://devblogs.microsoft.com/cppblog/clang-llvm-support-in-visual-studio/) > [!NOTE] -> For other kinds of Open Folder projects, an additional JSON file *CppProperties.json* is used. This file isn't relevant for CMake projects. +> For other kinds of Open Folder projects, an additional JSON file *`CppProperties.json`* is used. This file isn't relevant for CMake projects. ## Configuring CMake projects -The CMake configure step generates the project build system. It's equivalent to invoking *cmake.exe* from the command line. For more information on the CMake configure step, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem). +The CMake configure step generates the project build system. It's equivalent to invoking *`cmake.exe`* from the command line. For more information on the CMake configure step, see the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem). -Visual Studio uses a CMake configuration file to drive CMake generation and build. *CMakePresets.json* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *CMakePresets.json* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a continuous integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *CMakePresets.json*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *CMakeSettings.json* is available for customers using an earlier version of Visual Studio. For more information on *CMakeSettings.json*, see [Customize CMake build settings](customize-cmake-settings.md). +Visual Studio uses a CMake configuration file to drive CMake generation and build. *`CMakePresets.json`* is supported by Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. *`CMakePresets.json`* is supported directly by CMake and can be used to drive CMake generation and build from Visual Studio, from VS Code, in a continuous integration pipeline, and from the command line on Windows, Linux, and Mac. For more information on *`CMakePresets.json`*, see [Configure and build with CMake Presets](cmake-presets-vs.md). *`CMakeSettings.json`* is available for customers using an earlier version of Visual Studio. For more information on *`CMakeSettings.json`*, see [Customize CMake build settings](customize-cmake-settings.md). -When you make significant changes to your CMake configuration file or a *CMakeLists.txt* file, Visual Studio automatically runs the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. +When you make significant changes to your CMake configuration file or a *`CMakeLists.txt`* file, Visual Studio automatically runs the CMake configure step. You can invoke the configure step manually: Select **Project > Configure Cache** from the toolbar. You can also change your configuration preferences in **Tools** > **Options** > **CMake** > **General**. :::image type="complex" source="media/cmake-configure-options.png" alt-text="Screenshot of the C Make configuration options in the Visual Studio settings window."::: The C Make configure settings are called out. Show C Make cache notifications is selected. Under 'When cache is out of date', the option 'Never run configure step automatically' is selected. @@ -97,9 +97,9 @@ You can enable the use of these source groups by selecting **Tools** > **Options ### Troubleshooting CMake cache errors -If you need more information about the state of the CMake cache to diagnose a problem, open the **Project** main menu or the *CMakeLists.txt* context menu in **Solution Explorer** to run one of these commands: +If you need more information about the state of the CMake cache to diagnose a problem, open the **Project** main menu or the *`CMakeLists.txt`* context menu in **Solution Explorer** to run one of these commands: -- **View CMakeCache.txt** opens the *CMakeCache.txt* file from the build directory in the editor. Any edits you make here to *CMakeCache.txt* are wiped out if you clean the cache. To make changes that persist after you clean the cache, see [Customize CMake settings](customize-cmake-settings.md) or [Configure and build with CMake Presets](cmake-presets-vs.md). +- **View CMakeCache.txt** opens the *`CMakeCache.txt`* file from the build directory in the editor. Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after you clean the cache, see [Customize CMake settings](customize-cmake-settings.md) or [Configure and build with CMake Presets](cmake-presets-vs.md). - **Delete Cache and Reconfigure** deletes the build directory and reconfigures from a clean cache. @@ -125,7 +125,7 @@ C Make build warnings about conversions that might result in data loss such as c ### Edit build settings -Visual Studio uses a CMake configuration file to drive CMake builds. CMake configuration files encapsulate build options like native build tool switches and environment variables. If *CMakePresets.json* is your active configuration file, see [Configure and build with CMake Presets](cmake-presets-vs.md#configure-and-build). If *CMakeSettings.json* is your active configuration file, see [Customize CMake build settings](customize-cmake-settings.md). *CMakePresets.json* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +Visual Studio uses a CMake configuration file to drive CMake builds. CMake configuration files encapsulate build options like native build tool switches and environment variables. If *`CMakePresets.json`* is your active configuration file, see [Configure and build with CMake Presets](cmake-presets-vs.md#configure-and-build). If *`CMakeSettings.json`* is your active configuration file, see [Customize CMake build settings](customize-cmake-settings.md). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. ## Debugging CMake projects @@ -135,9 +135,9 @@ All executable CMake targets are shown in the **Startup Item** dropdown in the t The dropdown has these options: Show / Hide debug targets, current document, samples (which is highlighted), box2d_tests, and samples-noGUI. :::image-end::: -The **Debug** or **F5** commands first build the project if changes have been made since the previous build. Changes to the CMake configuration file (*CMakePresets.json* or *CMakeSettings.json*) or a *CMakeLists.txt* causes the CMake cache to be regenerated. +The **Debug** or **F5** commands first build the project if changes have been made since the previous build. Changes to the CMake configuration file (*`CMakePresets.json`* or *`CMakeSettings.json`*) or a *`CMakeLists.txt`* causes the CMake cache to be regenerated. -You can customize a CMake debugging session by setting properties in the *launch.vs.json* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and choose **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). +You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. To customize debug settings for a specific target, select the target in the **Startup Item** dropdown and choose **Debug > Debug and Launch Settings for \**. For more information on CMake debugging sessions, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). ### Just My Code for CMake projects @@ -145,7 +145,7 @@ When you build for Windows using the MSVC compiler, CMake projects have support ### Edit and Continue for CMake projects -When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *CMakeLists.txt* file to enable Edit and Continue. +When you build for Windows with the MSVC compiler, CMake projects have support for Edit and Continue. Add the following code to your *`CMakeLists.txt`* file to enable Edit and Continue. ``` if(MSVC) @@ -166,20 +166,20 @@ The following options are available on the dialog: Connection type (set to SSH), ## CMake partial activation -In Visual Studio 2022 version 17.1 and later, CMake functionality isn't enabled automatically if your root folder doesn't contain a *CMakeLists.txt* file. Instead, a dialog prompts you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation doesn't start and CMake configurations (from *CMakeSettings.json* or *CMakePresets.json*) doesn't appear in the configuration dropdown. If you accept, you're taken to a workspace-level configuration file, *CMakeWorkspaceSettings.json* (stored in the *.vs* directory), to specify the folders you'd like to enable CMake for. (These folders contain your root *CMakeLists.txt* files). +In Visual Studio 2022 version 17.1 and later, CMake functionality isn't enabled automatically if your root folder doesn't contain a *`CMakeLists.txt`* file. Instead, a dialog prompts you on whether you'd like to enable CMake functionality for your project. If you decline, CMake cache generation doesn't start and CMake configurations (from *`CMakeSettings.json`* or *`CMakePresets.json`*) doesn't appear in the configuration dropdown. If you accept, you're taken to a workspace-level configuration file, *`CMakeWorkspaceSettings.json`* (stored in the *`.vs`* directory), to specify the folders you'd like to enable CMake for. (These folders contain your root *`CMakeLists.txt`* files). The accepted properties are: | Property | Description | |--|--| | `enableCMake` | Enable Visual Studio's integration for this workspace. | -| `sourceDirectory` | A string or array of strings specifying the directory or directories with *CMakeLists.txt*. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace are ignored. | +| `sourceDirectory` | A string or array of strings specifying the directory or directories with *`CMakeLists.txt`*. Macros (such as `${workspaceRoot}`) are allowed. Relative paths are based on the workspace root. Directories outside of the current workspace are ignored. | -You can reach *CMakeWorkspaceSettings.json* through the **Project** > **CMake Workspace Settings** menu command at any time, even if CMake functionality is currently disabled. +You can reach *`CMakeWorkspaceSettings.json`* through the **Project** > **CMake Workspace Settings** menu command at any time, even if CMake functionality is currently disabled. ## Open an existing cache -When you open an existing CMake cache file (*CMakeCache.txt*), Visual Studio doesn't try to manage your cache and build tree for you. Your custom or preferred tools have complete control over how CMake configures your project. +When you open an existing CMake cache file (*`CMakeCache.txt`*), Visual Studio doesn't try to manage your cache and build tree for you. Your custom or preferred tools have complete control over how CMake configures your project. You can add an existing CMake cache to an open project. It's done the same way you'd add a new configuration. For more information, see our blog post on [opening an existing cache in Visual Studio](https://devblogs.microsoft.com/cppblog/open-existing-cmake-caches-in-visual-studio/). @@ -194,23 +194,23 @@ You can add an existing CMake cache to an open project. It's done the same way y Visual Studio uses the CMake [file-based API](https://cmake.org/cmake/help/latest/manual/cmake-file-api.7.html) (in versions 3.14 and later) to populate the editor with information specific to your project structure. For more information, see the C++ team blog post on [multi-root workspaces and file-based API](https://devblogs.microsoft.com/cppblog/visual-studio-code-cmake-tools-extension-multi-root-workspaces-and-file-based-api/). -Before generating the CMake cache, your custom or preferred tools might need to create a query file named *.cmake/api/v1/query/client-MicrosoftVS/query.json* in your build output folder (the folder that contains *CMakeCache.txt*). The query file should contain this content: +Before generating the CMake cache, your custom or preferred tools might need to create a query file named *`.cmake/api/v1/query/client-MicrosoftVS/query.json`* in your build output folder (the folder that contains *`CMakeCache.txt`*). The query file should contain this content: ```json {"requests":[{"kind":"cache","version":2},{"kind":"cmakeFiles","version":1},{"kind":"codemodel","version":2}]} ``` -When your custom or preferred tools generate your cache, CMake places files under *.cmake/api/v1/response* that Visual Studio uses to populate the editor with information specific to your project structure. +When your custom or preferred tools generate your cache, CMake places files under *`.cmake/api/v1/response`* that Visual Studio uses to populate the editor with information specific to your project structure. -## Editing *CMakeLists.txt* files +## Editing *`CMakeLists.txt`* files -To edit a *CMakeLists.txt* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *CMakeLists.txt*, see the [CMake documentation](https://cmake.org/documentation/). +To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists TXT file being edited in Visual Studio." It contains the lines project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: -As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *CMakeLists.txt*. +As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *`CMakeLists.txt`*. :::image type="complex" source="media/cmake-cmakelists-error.png" alt-text="Screenshot of a C Make error in the Visual Studio error list."::: A C Make error message on line 3 of CMakeLists.txt is highlighted. The details are that C Make couldn't find a package configuration file provided by sqlite3. C Make looked for it in CMAKE_MODULE_PATH but couldn't find it. The suggestion is to add the installation prefix 'sqlite3' to CMAKE_PREFIX_PATH or set sqlite3_DIR to a directory containing sqlite3Config.cmake and/or sqlitet3-config.cmake. @@ -236,9 +236,9 @@ A tree view shows CMakeLists.txt, under which are two items: add_executable and By default, Visual Studio uses the IntelliSense mode that matches the compiler and target architecture specified by the active CMake configuration. -If *CMakePresets.json* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` and `intelliSenseOptions` in the Visual Studio Settings vendor map. For more information, see the [Visual Studio Settings vendor map reference](cmake-presets-json-reference.md#visual-studio-settings-vendor-map). +If *`CMakePresets.json`* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` and `intelliSenseOptions` in the Visual Studio Settings vendor map. For more information, see the [Visual Studio Settings vendor map reference](cmake-presets-json-reference.md#visual-studio-settings-vendor-map). -If *CMakeSettings.json* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` in *CMakeSettings.json*. For more information, see the [CMakeSettings.json reference](cmakesettings-reference.md). +If *`CMakeSettings.json`* is your active CMake configuration file, then you can specify IntelliSense options using `intelliSenseMode` in *`CMakeSettings.json`*. For more information, see the [`CMakeSettings.json` reference](cmakesettings-reference.md). ### Configure IntelliSense with CMake toolchain files @@ -251,17 +251,17 @@ CMake projects opened in Visual Studio integrate with vcpkg, a cross-platform C/ - [Install and use packages with CMake in Visual Studio](/vcpkg/get_started/get-started-vs) - [vcpkg in CMake projects](/vcpkg/users/buildsystems/cmake-integration) -If *CMakeSettings.json* is your active configuration file, Visual Studio automatically passes the vcpkg toolchain file (`vcpkg.cmake`) to CMake. This behavior is disabled automatically when you specify any other toolchain in your CMake Settings configuration. +If *`CMakeSettings.json`* is your active configuration file, Visual Studio automatically passes the vcpkg toolchain file (`vcpkg.cmake`) to CMake. This behavior is disabled automatically when you specify any other toolchain in your CMake Settings configuration. -If *CMakePresets.json* is your active configuration file, you need to set the path to `vcpkg.cmake` in *CMakePresets.json*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *CMakePresets.json* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +If *`CMakePresets.json`* is your active configuration file, you need to set the path to `vcpkg.cmake` in *`CMakePresets.json`*. We recommend using the `VCPKG_ROOT` environment variable instead of an absolute path to keep the file shareable. For more information, see [Enable vcpkg integration with CMake Presets](cmake-presets-vs.md#enable-vcpkg-integration). *`CMakePresets.json`* is available in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. ## Run CMake from the command line -If *CMakePresets.json* is your active CMake configuration file, then you can easily reproduce your local builds outside of Visual Studio. For more information, see [Run CMake from the command line or a CI pipeline](cmake-presets-vs.md#run-cmake-from-the-command-line-or-a-ci-pipeline). *CMakePresets.json* is supported in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. +If *`CMakePresets.json`* is your active CMake configuration file, then you can easily reproduce your local builds outside of Visual Studio. For more information, see [Run CMake from the command line or a CI pipeline](cmake-presets-vs.md#run-cmake-from-the-command-line-or-a-ci-pipeline). *`CMakePresets.json`* is supported in Visual Studio 2019 version 16.10 or later and is the recommended CMake configuration file. -If *CMakeSettings.json* is your active CMake configuration file, then you need to manually pass the arguments that are encoded in your *CMakeSettings.json* file to CMake. If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: +If *`CMakeSettings.json`* is your active CMake configuration file, then you need to manually pass the arguments that are encoded in your *`CMakeSettings.json`* file to CMake. If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: -1. Run the appropriate *vsdevcmd.bat* file (x86/x64). For more information, see [Use the Microsoft C++ toolset from the command line](building-on-the-command-line.md) . +1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Use the Microsoft C++ toolset from the command line](building-on-the-command-line.md) . 1. Switch to your output folder. @@ -271,7 +271,7 @@ If *CMakeSettings.json* is your active CMake configuration file, then you need t ::: moniker range="msvc-150" -Visual Studio 2017 has rich support for CMake, including [cross-platform CMake projects](../linux/cmake-linux-project.md). The **Visual C++ Tools for CMake** component uses the **Open Folder** feature to enable the IDE to consume CMake project files (such as *CMakeLists.txt*) directly for the purposes of IntelliSense and browsing. Both Ninja and Visual Studio generators are supported. If you use a Visual Studio generator, it generates a temporary project file and passes it to MSBuild. However, the project is never loaded for IntelliSense or browsing purposes. You also can import an existing CMake cache. +Visual Studio 2017 has rich support for CMake, including [cross-platform CMake projects](../linux/cmake-linux-project.md). The **Visual C++ Tools for CMake** component uses the **Open Folder** feature to enable the IDE to consume CMake project files (such as *`CMakeLists.txt`*) directly for the purposes of IntelliSense and browsing. Both Ninja and Visual Studio generators are supported. If you use a Visual Studio generator, it generates a temporary project file and passes it to MSBuild. However, the project is never loaded for IntelliSense or browsing purposes. You also can import an existing CMake cache. ## Installation @@ -283,7 +283,7 @@ For more information, see [Install the C++ Linux workload in Visual Studio](../l ## IDE integration -When you choose **File > Open > Folder** to open a folder containing a *CMakeLists.txt* file, the following happens: +When you choose **File > Open > Folder** to open a folder containing a *`CMakeLists.txt`* file, the following happens: - Visual Studio adds a **CMake** menu item to the main menu, with commands for viewing and editing CMake scripts. @@ -293,7 +293,7 @@ When you choose **File > Open > Folder** to open a folder containing a *CMakeLis - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. -You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *CMakeLists.txt* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. +You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. :::image type="complex" source="media/cmake-multiple-roots.png" alt-text="Screenshot of the Visual Studio Solution Explorer."::: The files and folders of a C Make project are visible. There's a tests subdirectory, CMakeLists.txt, and hello.cpp. There's a hello-cmake-vcpkg folder that contains CMakeLists.txt, CMakeSettings.json, and hello.cpp. @@ -303,18 +303,18 @@ You can also view your projects organized logically by targets. Choose **Targets :::image type="content" source="media/cmake-targets-view.png" alt-text="Screenshot of the dropdown button in the Visual Studio Solution Explorer that offers the CMake targets view option. Which is selected."::: -Visual Studio uses a file called *CMakeSettings.json* to store environment variables or command-line options for CMake. *CMakeSettings.json* also lets you define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. +Visual Studio uses a file called *`CMakeSettings.json`* to store environment variables or command-line options for CMake. *`CMakeSettings.json`* also lets you define and store multiple CMake build configurations. You can conveniently switch between them in the IDE. -Otherwise, use the *CMakeLists.txt* just as you would in any CMake project to specify source files, find libraries, set compiler and linker options, and specify other build system-related information. +Otherwise, use the *`CMakeLists.txt`* just as you would in any CMake project to specify source files, find libraries, set compiler and linker options, and specify other build system-related information. -If you need to pass arguments to an executable at debug time, you can use another file called *launch.vs.json*. In some scenarios, Visual Studio automatically generates these files. You can edit them manually, or even create the file yourself. +If you need to pass arguments to an executable at debug time, you can use another file called *`launch.vs.json`*. In some scenarios, Visual Studio automatically generates these files. You can edit them manually, or even create the file yourself. > [!NOTE] -> For other kinds of Open Folder projects, two additional JSON files are used: *CppProperties.json* and *tasks.vs.json*. Neither of these are relevant for CMake projects. +> For other kinds of Open Folder projects, two additional JSON files are used: *`CppProperties.json`* and *`tasks.vs.json`*. Neither of these are relevant for CMake projects. ## Import an existing cache -When you import an existing *CMakeCache.txt* file, Visual Studio automatically extracts customized variables and creates a prepopulated *CMakeSettings.json* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *CMakeSettings.json* file is placed alongside the project's root *CMakeLists.txt*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. +When you import an existing *`CMakeCache.txt`* file, Visual Studio automatically extracts customized variables and creates a prepopulated *`CMakeSettings.json`* file based on them. The original cache isn't modified in any way. It can still be used from the command line, or with whatever tool or IDE used to generate it. The new *`CMakeSettings.json`* file is placed alongside the project's root *`CMakeLists.txt`*. Visual Studio generates a new cache based the settings file. You can override automatic cache generation in the **Tools > Options > CMake > General** dialog. Not everything in the cache is imported. Properties such as the generator and the location of the compilers are replaced with defaults that are known to work well with the IDE. @@ -326,11 +326,11 @@ Not everything in the cache is imported. Properties such as the generator and th This command brings up the **Import CMake from Cache** wizard. -2. Navigate to the *CMakeCache.txt* file that you want to import, and then choose **OK**. The **Import CMake Project from Cache** wizard appears: +2. Navigate to the *`CMakeCache.txt`* file that you want to import, and then choose **OK**. The **Import CMake Project from Cache** wizard appears: :::image type="content" source="media/cmake-import-wizard.png" alt-text="Screenshot of the Import C Make Project from Cache wizard. The directory path of the C Make project to import goes in the folder textbox."::: - When the wizard completes, you can see the new *CMakeCache.txt* file in **Solution Explorer** next to the root *CMakeLists.txt* file in your project. + When the wizard completes, you can see the new *`CMakeCache.txt`* file in **Solution Explorer** next to the root *`CMakeLists.txt*` file in your project. ## Building CMake projects @@ -338,15 +338,15 @@ To build a CMake project, you have these choices: 1. In the General toolbar, find the **Configurations** dropdown. It's probably showing *Linux-Debug* or *x64-Debug* by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. -1. Right-click on *CMakeLists.txt* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. +1. Right-click on *`CMakeLists.txt`* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. 1. From the main menu, select **Build > Build Solution** (**F7** or **Ctrl+Shift+B**). Make sure that a CMake target is already selected in the **Startup Item** dropdown in the **General** toolbar. -:::image type="complex" source="media/cmake-build-menu.png" alt-text="Screenshot of the Visual Studio Solution Explorer after right-clicking C Make Lists."::: +:::image type="complex" source="media/cmake-build-menu.png" alt-text="Screenshot of the Visual Studio Solution Explorer after right-clicking C Make Lists dot t x t."::: The menu has options such as Add, Open, Configure tasks, Build, Clean all, and so on. :::image-end::: -You can customize build configurations, environment variables, command-line arguments, and other settings in the *CMakeSettings.json* file. It lets you make changes without modifying the *CMakeLists.txt* file. For more information, see [Customize CMake build settings](customize-cmake-settings.md). +You can customize build configurations, environment variables, command-line arguments, and other settings in the *`CMakeSettings.json`* file. It lets you make changes without modifying the *`CMakeLists.txt`* file. For more information, see [Customize CMake build settings](customize-cmake-settings.md). As you would expect, build results are shown in the **Output Window** and **Error List**. @@ -354,7 +354,7 @@ As you would expect, build results are shown in the **Output Window** and **Erro C Make build warnings about conversions that might result in data loss such as converting from a float to an integer are visible. :::image-end::: -In a folder with multiple build targets, you can specify which CMake target to build: Choose the **Build** item on the **CMake** menu or the *CMakeLists.txt* context menu to specify the target. If you enter **Ctrl+Shift+B** in a CMake project, it builds the current active document. +In a folder with multiple build targets, you can specify which CMake target to build: Choose the **Build** item on the **CMake** menu or the *`CMakeLists.txt`* context menu to specify the target. If you enter **Ctrl+Shift+B** in a CMake project, it builds the current active document. ## Debugging CMake projects @@ -364,17 +364,17 @@ To debug a CMake project, choose the preferred configuration and press **F5**. O The **Run** or **F5** commands first build the project if changes have been made since the previous build. -You can customize a CMake debugging session by setting properties in the *launch.vs.json* file. For more information, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). +You can customize a CMake debugging session by setting properties in the *`launch.vs.json`* file. For more information, see [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md). -## Editing *CMakeLists.txt* files +## Editing *`CMakeLists.txt`* files -To edit a *CMakeLists.txt* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *CMakeLists.txt*, see the [CMake documentation](https://cmake.org/documentation/). +To edit a *`CMakeLists.txt`* file, right-click on the file in **Solution Explorer** and choose **Open**. If you make changes to the file, a yellow status bar appears and informs you that IntelliSense will update. It gives you a chance to cancel the update operation. For information about *`CMakeLists.txt`*, see the [CMake documentation](https://cmake.org/documentation/). :::image type="complex" source="media/cmake-cmakelists.png" alt-text="Screenshot of a C Make Lists file being edited in Visual Studio."::: The file contains project (hello-cmake), add_subdirectory (tests), add_executable (hello hello.cpp), and install (TARGETS hello DESTINATION hello/bin). A message at the top of the window says that c plus plus IntelliSense info will refresh after C Make finishes generating the cache. :::image-end::: -As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *CMakeLists.txt*. +As soon as you save the file, the configuration step automatically runs again and displays information in the **Output** window. Errors and warnings are shown in the **Error List** or **Output** window. Double-click on an error in the **Error List** to navigate to the offending line in *`CMakeLists.txt`*. :::image type="complex" source="media/cmake-cmakelists-error.png" alt-text="Screenshot of a C Make error in the Visual Studio error list."::: A C Make error message on line 3 of CMakeLists.txt is highlighted. The details are that C Make can't find a package configuration file provided by sqlite3. C Make looked for it in CMAKE_MODULE_PATH but couldn't find it. The suggestion is to add the installation prefix 'sqlite3' to CMAKE_PREFIX_PATH or set sqlite3_DIR to a directory containing sqlite3Config.cmake and/or sqlitet3-config.cmake. @@ -382,7 +382,7 @@ As soon as you save the file, the configuration step automatically runs again an ## CMake configure step -When significant changes are made to the *CMakeSettings.json* or to *CMakeLists.txt* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. +When significant changes are made to the *`CMakeSettings.json`* or to *`CMakeLists.txt`* files, Visual Studio automatically reruns the CMake configure step. If the configure step finishes without errors, the information that's collected is available in C++ IntelliSense and language services. It's also used in build and debug operations. Multiple CMake projects might use the same CMake configuration name (for example, *x86-Debug*). All of them are configured and built (in their own build root folder) when that configuration is selected. You can debug the targets from all of the CMake projects that participate in that CMake configuration. @@ -390,13 +390,13 @@ Multiple CMake projects might use the same CMake configuration name (for example The context menu shows what can be built. In this case hello-cmake-a \ hello-cmake.exe (Project hello-cmake) and hello-cmake-b\hello-cmake.exe (Project hello-cmake). The latter is highlighted. :::image-end::: -You can limit builds and debug sessions to a subset of the projects in the workspace. Create a new configuration with a unique name in the *CMakeSettings.json* file. Then, apply the configuration to those projects only. When that configuration is selected, IntelliSense and the build and debug commands only apply to those specified projects. +You can limit builds and debug sessions to a subset of the projects in the workspace. Create a new configuration with a unique name in the *`CMakeSettings.json`* file. Then, apply the configuration to those projects only. When that configuration is selected, IntelliSense and the build and debug commands only apply to those specified projects. ## Troubleshooting CMake cache errors -If you need more information about the state of the CMake cache to diagnose a problem, open the **CMake** main menu or the *CMakeLists.txt* context menu in **Solution Explorer** to run one of these commands: +If you need more information about the state of the CMake cache to diagnose a problem, open the **CMake** main menu or the *`CMakeLists.txt`* context menu in **Solution Explorer** to run one of these commands: -- **View Cache** opens the *CMakeCache.txt* file from the build root folder in the editor. Any edits you make here to *CMakeCache.txt* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md). +- **View Cache** opens the *`CMakeCache.txt`* file from the build root folder in the editor. Any edits you make here to *`CMakeCache.txt`* are wiped out if you clean the cache. To make changes that persist after the cache is cleaned, see [Customize CMake settings](customize-cmake-settings.md). - **Open Cache Folder** opens an Explorer window to the build root folder. @@ -416,7 +416,7 @@ To build a single file in a CMake project, right-click on the file in **Solution If you installed CMake from the Visual Studio Installer, you can run it from the command line by following these steps: -1. Run the appropriate *vsdevcmd.bat* file (x86/x64). For more information, see [Building on the Command Line](building-on-the-command-line.md). +1. Run the appropriate *`vsdevcmd.bat`* file (x86/x64). For more information, see [Building on the Command Line](building-on-the-command-line.md). 1. Switch to your output folder. @@ -436,7 +436,7 @@ In Visual Studio 2015, Visual Studio users can use a [CMake generator](https://c - [Configure a Linux CMake project](../linux/cmake-linux-project.md) - [Connect to your remote Linux computer](../linux/connect-to-your-remote-linux-computer.md) - [Customize CMake build settings](customize-cmake-settings.md) -- [*CMakeSettings.json* schema reference](cmakesettings-reference.md) +- [*`CMakeSettings.json`* schema reference](cmakesettings-reference.md) - [Configure CMake debugging sessions](configure-cmake-debugging-sessions.md) - [Deploy, run, and debug your Linux project](../linux/deploy-run-and-debug-your-linux-project.md) - [CMake predefined configuration reference](cmake-predefined-configuration-reference.md) diff --git a/docs/build/vscpp-step-0-installation.md b/docs/build/vscpp-step-0-installation.md index 9578461736..f6e9b8cea0 100644 --- a/docs/build/vscpp-step-0-installation.md +++ b/docs/build/vscpp-step-0-installation.md @@ -41,8 +41,11 @@ For questions about running previous versions of Visual Studio side by side with Select the following button to go to the Visual Studio download page, and download the Visual Studio bootstrapper file. Select the edition of Visual Studio that you want and choose the **Free trial** or **Free download** button. - > [!div class="button"] - > [Download Visual Studio](https://visualstudio.microsoft.com/downloads/) +> [!div class="button"] +> [Download Visual Studio](https://visualstudio.microsoft.com/downloads/) + +>[!TIP] +> The Community edition is for individual developers, classroom learning, academic research, and open source development. For other uses, install Visual Studio 2022 Professional or Visual Studio 2022 Enterprise. ### Step 3 - Install the Visual Studio Installer From 1a2a71149694f609d3c414a78515a5dcb6c5dd48 Mon Sep 17 00:00:00 2001 From: lb90 Date: Thu, 20 Mar 2025 14:52:39 +0100 Subject: [PATCH 064/981] Update fopen-wfopen.md Document mapping of modifier N to _O_NOINHERIT --- docs/c-runtime-library/reference/fopen-wfopen.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/c-runtime-library/reference/fopen-wfopen.md b/docs/c-runtime-library/reference/fopen-wfopen.md index 3756a268d0..d2a45d02fb 100644 --- a/docs/c-runtime-library/reference/fopen-wfopen.md +++ b/docs/c-runtime-library/reference/fopen-wfopen.md @@ -146,6 +146,7 @@ Valid characters for the *`mode`* string that is used in **`fopen`** and **`_fdo | **`x`** | `_O_EXCL` | | **`c`** | None | | **`n`** | None | +| **`N`** | `_O_NOINHERIT` | | **`S`** | `_O_SEQUENTIAL` | | **`R`** | `_O_RANDOM` | | **`T`** | `_O_SHORTLIVED` | From 0840e017e3c68034279962f2b27d02133ba1353c Mon Sep 17 00:00:00 2001 From: lb90 Date: Thu, 20 Mar 2025 15:06:32 +0100 Subject: [PATCH 065/981] Update fopen-s-wfopen-s.md Document mapping of modifier N to _O_NOINHERIT --- docs/c-runtime-library/reference/fopen-s-wfopen-s.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/c-runtime-library/reference/fopen-s-wfopen-s.md b/docs/c-runtime-library/reference/fopen-s-wfopen-s.md index 1efd939eec..1dd8534816 100644 --- a/docs/c-runtime-library/reference/fopen-s-wfopen-s.md +++ b/docs/c-runtime-library/reference/fopen-s-wfopen-s.md @@ -153,6 +153,7 @@ Valid characters for the *`mode`* string used in **`fopen_s`** and [`_fdopen`](f | **`t`** | `_O_TEXT` (translated) | | **`c`** | None | | **`n`** | None | +| **`N`** | `_O_NOINHERIT` | | **`D`** | `_O_TEMPORARY` | | **`R`** | `_O_RANDOM` | | **`S`** | `_O_SEQUENTIAL` | From cc41959aa88b09854a795077bb63366ba3f22a79 Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Thu, 20 Mar 2025 09:56:39 -0700 Subject: [PATCH 066/981] Add minor changes --- ...compile-a-c-program-on-the-command-line.md | 6 ++-- ...ng-and-using-a-dynamic-link-library-cpp.md | 28 +++++++++---------- ...eating-windows-desktop-applications-cpp.md | 8 +++--- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md index 4340086b01..849ed1f1e8 100644 --- a/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md +++ b/docs/build/walkthrough-compile-a-c-program-on-the-command-line.md @@ -179,7 +179,7 @@ Certain library functions and POSIX function names are deprecated by MSVC. The f ## Related content -- [Walkthrough: Create a Standard C++ Program](../windows/walkthrough-creating-a-standard-cpp-program-cpp.md)\ -- [C Language Reference](../c-language/c-language-reference.md)\ -- [C/C++ projects and build systems](projects-and-build-systems-cpp.md)\ +- [Walkthrough: Create a Standard C++ Program](../windows/walkthrough-creating-a-standard-cpp-program-cpp.md) +- [C Language Reference](../c-language/c-language-reference.md) +- [C/C++ projects and build systems](projects-and-build-systems-cpp.md) - [Compatibility](../c-runtime-library/compatibility.md) diff --git a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md index ad186eb36c..cae6b725cf 100644 --- a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md +++ b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md @@ -134,7 +134,7 @@ Right now, this DLL doesn't do very much. Next, you'll create a header file to d 1. To create a header file for your functions, on the menu bar, choose **Project** > **Add New Item**. -1. In the **Add New Item** dialog box, in the left pane, select **Visual C++**. In the center pane, select **Header File (.h)**. Specify *MathLibrary.h* as the name for the header file. +1. In the **Add New Item** dialog box, in the left pane, select **Visual C++**. In the center pane, select **Header File (.h)**. Specify *`MathLibrary.h`* as the name for the header file. :::image type="content" source="media/mathlibrary-add-new-item-header-file.png" alt-text="Screenshot of the Add New Item dialog with the C plus plus Header File template selected, and MathLibrary.h entered in the Name textbox."::: @@ -191,11 +191,11 @@ When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro set ::: moniker range=">=msvc-160" -1. In **Solution Explorer**, right-click on the **Source Files** node and choose **Add** > **New Item**. Create a new .cpp file called *MathLibrary.cpp*, in the same way that you added a new header file in the previous step. +1. In **Solution Explorer**, right-click on the **Source Files** node and choose **Add** > **New Item**. Create a new *`.cpp`* file called *`MathLibrary.cpp`*, in the same way that you added a new header file in the previous step. 1. In the editor window, select the **MathLibrary.cpp** tab if it's already open. If not, in **Solution Explorer**, double-click **MathLibrary.cpp** in the **Source Files** folder of the **MathLibrary** project to open it. -1. In the editor, replace the contents of the *MathLibrary.cpp* file with the following code: +1. In the editor, replace the contents of the *`MathLibrary.cpp`* file with the following code: ```cpp // MathLibrary.cpp : Defines the exported functions for the DLL. @@ -262,7 +262,7 @@ When the `MATHLIBRARY_EXPORTS` macro is defined, the `MATHLIBRARY_API` macro set 1. In the editor window, select the tab for **MathLibrary.cpp** if it's already open. If not, in **Solution Explorer**, double-click **MathLibrary.cpp** in the **Source Files** folder of the **MathLibrary** project to open it. -1. In the editor, replace the contents of the *MathLibrary.cpp* file with the following code: +1. In the editor, replace the contents of the *`MathLibrary.cpp`* file with the following code: ```cpp // MathLibrary.cpp : Defines the exported functions for the DLL. @@ -398,7 +398,7 @@ To avoid out-of-sync code, we recommend you set the include path in your client 1. Choose the **Create** button to create the client project. -A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. +A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *`MathClient.cpp`*. You can build it, but it doesn't use your DLL yet. ::: moniker-end @@ -414,7 +414,7 @@ A minimal console application project is created for you. The name for the main 1. Choose **OK** to create the client app project. -A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. +A minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *`MathClient.cpp`*. You can build it, but it doesn't use your DLL yet. ::: moniker-end @@ -434,11 +434,11 @@ A minimal console application project is created for you. The name for the main 1. Choose the **Finish** button to create the project. -When the wizard finishes, a minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *MathClient.cpp*. You can build it, but it doesn't use your DLL yet. +When the wizard finishes, a minimal console application project is created for you. The name for the main source file is the same as the project name that you entered earlier. In this example, it's named *`MathClient.cpp`*. You can build it, but it doesn't use your DLL yet. ::: moniker-end -Next, to call the MathLibrary functions in your source code, your project must include the *MathLibrary.h* file. You could copy this header file into your client app project, then add it to the project as an existing item. This method can be a good choice for third-party libraries. However, if you're working on the code for your DLL and your client at the same time, the header files could get out of sync. To avoid this issue, set the **Additional Include Directories** path in your project to include the path to the original header. +Next, to call the MathLibrary functions in your source code, your project must include the *`MathLibrary.h`* file. You could copy this header file into your client app project, then add it to the project as an existing item. This method can be a good choice for third-party libraries. However, if you're working on the code for your DLL and your client at the same time, the header files could get out of sync. To avoid this issue, set the **Additional Include Directories** path in your project to include the path to the original header. ### To add the DLL header to your include path @@ -454,7 +454,7 @@ Next, to call the MathLibrary functions in your source code, your project must i 1. Double-click in the top pane of the **Additional Include Directories** dialog box to enable an edit control. Or, choose the folder icon to create a new entry. -1. In the edit control, specify the path to the location of the *MathLibrary.h* header file. You can choose the ellipsis (**...**) control to browse to the correct folder. +1. In the edit control, specify the path to the location of the *`MathLibrary.h`* header file. You can choose the ellipsis (**...**) control to browse to the correct folder. You can also enter a relative path from your client source files to the folder that contains the DLL header files. If you followed the directions to put your client project in a separate solution from the DLL, the relative path should look like this: @@ -470,7 +470,7 @@ Next, to call the MathLibrary functions in your source code, your project must i 1. After you've entered the path to the header file in the **Additional Include Directories** dialog box, choose the **OK** button. In the **Property Pages** dialog box, choose the **OK** button to save your changes. -You can now include the *MathLibrary.h* file and use the functions it declares in your client application. Replace the contents of *MathClient.cpp* by using this code: +You can now include the *`MathLibrary.h`* file and use the functions it declares in your client application. Replace the contents of *`MathClient.cpp`* by using this code: ```cpp // MathClient.cpp : Client app for MathLibrary DLL. @@ -494,9 +494,9 @@ int main() } ``` -This code can be compiled, but not linked. If you build the client app now, the error list shows several LNK2019 errors. That's because your project is missing some information: You haven't specified that your project has a dependency on the *MathLibrary.lib* library yet. And, you haven't told the linker how to find the *MathLibrary.lib* file. +This code can be compiled, but not linked. If you build the client app now, the error list shows several LNK2019 errors. That's because your project is missing some information: You haven't specified that your project has a dependency on the *`MathLibrary.lib`* library yet. And, you haven't told the linker how to find the *`MathLibrary.lib`* file. -To fix this issue, you could copy the library file directly into your client app project. The linker would find and use it automatically. However, if both the library and the client app are under development, that might lead to changes in one copy that aren't shown in the other. To avoid this issue, you can set the **Additional Dependencies** property to tell the build system that your project depends on *MathLibrary.lib*. And, you can set an **Additional Library Directories** path in your project to include the path to the original library when you link. +To fix this issue, you could copy the library file directly into your client app project. The linker would find and use it automatically. However, if both the library and the client app are under development, that might lead to changes in one copy that aren't shown in the other. To avoid this issue, you can set the **Additional Dependencies** property to tell the build system that your project depends on *`MathLibrary.lib`*. And, you can set an **Additional Library Directories** path in your project to include the path to the original library when you link. ### To add the DLL import library to your project @@ -508,7 +508,7 @@ To fix this issue, you could copy the library file directly into your client app :::image type="content" source="media/mathclient-additional-dependencies-property.png" alt-text="Screenshot of the Property Pages dialog box under Input that shows the Edit command in the Additional Dependencies property dropdown."::: -1. In the **Additional Dependencies** dialog, add *MathLibrary.lib* to the list in the top edit control. +1. In the **Additional Dependencies** dialog, add *`MathLibrary.lib`* to the list in the top edit control. :::image type="content" source="media/mathclient-additional-dependencies.png" alt-text="Screenshot of the Additional Dependencies dialog box showing the MathLibrary.lib file."::: @@ -518,7 +518,7 @@ To fix this issue, you could copy the library file directly into your client app :::image type="content" source="media/mathclient-additional-library-directories-property.png" alt-text="Screenshot of the Property Pages dialog box under General that shows the Edit command in the Additional Library Directories property dropdown."::: -1. Double-click in the top pane of the **Additional Library Directories** dialog box to enable an edit control. In the edit control, specify the path to the location of the *MathLibrary.lib* file. By default, it's in a folder called *Debug* directly under the DLL solution folder. If you create a release build, the file is placed in a folder called *Release*. You can use the `$(IntDir)` macro so that the linker can find your DLL, no matter which kind of build you create. If you followed the directions to put your client project in a separate solution from the DLL project, the relative path should look like this: +1. Double-click in the top pane of the **Additional Library Directories** dialog box to enable an edit control. In the edit control, specify the path to the location of the *`MathLibrary.lib`* file. By default, it's in a folder called *Debug* directly under the DLL solution folder. If you create a release build, the file is placed in a folder called *Release*. You can use the `$(IntDir)` macro so that the linker can find your DLL, no matter which kind of build you create. If you followed the directions to put your client project in a separate solution from the DLL project, the relative path should look like this: `..\..\MathLibrary\$(IntDir)` diff --git a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md index 1bafcda7b4..28a9be5d24 100644 --- a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md +++ b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md @@ -53,7 +53,7 @@ To see the steps for your preferred version of Visual Studio, use the **Version* The animation shows right-clicking on the project name in Solution Explorer, choosing Add in the menu that appears, and then choosing New Item. :::image-end::: -1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. +1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *`HelloWindowsDesktop.cpp`*. Choose **Add**. :::image type="content" source="../build/media/desktop-app-add-cpp-file-153.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2019. The C plus plus File (.cpp) option is selected. The name field is set to Hello Windows Desktop.cpp."::: @@ -81,7 +81,7 @@ Your project is now created and your source file is opened in the editor. The animation shows right-clicking on the project name in Solution Explorer, choosing Add in the menu that appeared, and then choosing New Item. :::image-end::: -1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. +1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *`HelloWindowsDesktop.cpp`*. Choose **Add**. :::image type="content" source="../build/media/desktop-app-add-cpp-file-153.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2017. Visual C plus plus is selected on the left and the C plus plus File option is highlighted."::: @@ -113,7 +113,7 @@ Your project is now created and your source file is opened in the editor. The animation shows right-clicking on the project name in Solution Explorer, choosing Add in the menu that appears, and then choosing New Item. :::image-end::: -1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *HelloWindowsDesktop.cpp*. Choose **Add**. +1. In the **Add New Item** dialog box, select **C++ File (.cpp)**. In the **Name** box, type a name for the file, for example, *`HelloWindowsDesktop.cpp`*. Choose **Add**. :::image type="content" source="../build/media/desktop-app-add-cpp-file-150.png" alt-text="Screenshot of the Add New Item dialog box in Visual Studio 2015 with Visual C plus plus selected and the C plus plus File option highlighted."::: @@ -435,7 +435,7 @@ As promised, the complete code for the working application follows. ### To build this example -1. Delete all the code in *HelloWindowsDesktop.cpp* in the editor. Copy this example code and paste it into *HelloWindowsDesktop.cpp*: +1. Delete all the code in *`HelloWindowsDesktop.cpp`* in the editor. Copy this example code and paste it into *`HelloWindowsDesktop.cpp`*: ```cpp // HelloWindowsDesktop.cpp From 3a0334f5fa54bd3ca0c3d4d17a95fbe266a08189 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 21 Mar 2025 01:00:53 +0800 Subject: [PATCH 067/981] Improve `/dynamicdeopt` compiler switch reference page --- docs/build/reference/dynamic-deopt.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 2237d19057..286e250925 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,11 +1,12 @@ --- title: "/dynamicdeopt (Enable C++ Dynamic Debugging (Preview))" -description: "Use the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." +description: "Enable the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." ms.date: 03/14/2025 f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging) (Preview) + > [!IMPORTANT] > The `/dynamicdeopt` compiler switch is currently in PREVIEW. > This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. @@ -14,8 +15,8 @@ Enable [C++ Dynamic Debugging (Preview)](/visualstudio/debugger/cpp-dynamic-debu ## Syntax -> **`/dynamicdeopt`** -> **`/dynamicdeopt:suffix `** +> **`/dynamicdeopt`**\ +> **`/dynamicdeopt:suffix `**\ > **`/dynamicdeopt:sync`** ## Arguments @@ -26,13 +27,13 @@ Specify the file extension for the deoptimized output. With no options and given `test.cpp` as input, your output includes `test.obj`, `test.exe`, and `test.pdb`, as well as `test.alt.obj`, `test.alt.exe`, and `test.alt.pdb`. This switch allows you to change the suffix of the unoptimized binary build artifacts from `.alt` to something else. If you change the suffix, all files must use the new suffix, and it needs to match the name passed to the linker using [`/dynamicdeopt:suffix` (Preview)](dynamic-deopt-linker.md). You typically don't use this switch unless you need to avoid filename collisions with other files that you have. *`sync`*\ -Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the code generator. This switch makes the them run serially, instead. This switch is provided in case this better suits your build environment. +Builds the deoptimized output after building the optimized output instead of in parallel. By default, the compiler spawns a parallel instance of the code generator. This switch makes them run serially instead. This switch is provided in case this better suits your build environment. ## Remarks This preview flag, available starting with Visual Studio 2022 Version 17.14 Preview 2, applies only to x64 projects and must be used with the corresponding linker flag, [`/DYNAMICDEOPT`](dynamic-deopt-linker.md). -Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized file and debug into an optimized function, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. +Compiling with `/dynamicdeopt` generates other binaries that are used for debugging. When you debug an optimized function in an optimized file, the debugger steps into the alternate binary instead. This allows you to debug as if you're debugging unoptimized code while still getting the performance advantages of optimized code. `/dynamicdeopt` requires: @@ -54,8 +55,8 @@ If you specify `/OPT:ICF`, the compiler generates a warning that the debug exper /fastcap /callcap /ZW -fsanitize=address -fsanitize=kernel-address +/fsanitize=address +/fsanitize=kernel-address All of the CLR flags ``` From e8d02e42767278485c314bc6a09cb0c8a78b9696 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 21 Mar 2025 01:28:12 +0800 Subject: [PATCH 068/981] Improve `/DYNAMICDEOPT` linker option reference page --- docs/build/reference/dynamic-deopt-linker.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/build/reference/dynamic-deopt-linker.md b/docs/build/reference/dynamic-deopt-linker.md index 21289559b7..f23f3708b4 100644 --- a/docs/build/reference/dynamic-deopt-linker.md +++ b/docs/build/reference/dynamic-deopt-linker.md @@ -5,7 +5,8 @@ ms.date: 03/14/2025 f1_keywords: ["VC.Project.VCLinkerTool.GenerateDynamicDeoptInformation", "/dynamicdeopt"] helpviewer_keywords: ["DYNAMICDEOPT linker option", "/DYNAMICDEOPT linker option", "-DYNAMICDEOPT linker option", "c++ dynamic debugging"] --- -# | `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) (Preview) +# `/DYNAMICDEOPT` (Support C++ Dynamic Debugging) (Preview) + > [!IMPORTANT] > The `/DYNAMICDEOPT` linker switch is currently in PREVIEW. > This information relates to a prerelease feature that might be substantially modified before release. Microsoft makes no warranties, expressed or implied, with respect to the information provided here. @@ -14,8 +15,8 @@ The **`/DYNAMICDEOPT`** linker option, when used with the compiler switch [`/dyn ## Syntax -> **`/DYNAMICDEOPT`** -> **`/DYNAMICDEOPT:SUFFIX=`** +> **`/DYNAMICDEOPT`**\ +> **`/DYNAMICDEOPT:SUFFIX=`**\ > **`/DYNAMICDEOPT:SYNC`** ## Arguments From 21562c65cfa059802315bc163d0247ec9daea4f3 Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Thu, 20 Mar 2025 11:26:30 -0700 Subject: [PATCH 069/981] Update metadata in dynamic-deopt documentation --- docs/build/reference/dynamic-deopt.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/build/reference/dynamic-deopt.md b/docs/build/reference/dynamic-deopt.md index 286e250925..4bbfcd757f 100644 --- a/docs/build/reference/dynamic-deopt.md +++ b/docs/build/reference/dynamic-deopt.md @@ -1,9 +1,9 @@ --- title: "/dynamicdeopt (Enable C++ Dynamic Debugging (Preview))" description: "Enable the Microsoft C++ compiler option /dynamicdeopt to use C++ Dynamic Debugging." -ms.date: 03/14/2025 -f1_keywords: ["/dynamicdeopt", "VC.Project.VCNMakeTool.CompileAsManaged", "VC.Project.VCCLCompilerTool.CompileAsManaged"] -helpviewer_keywords: ["cl.exe compiler, common language runtime option", "-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]", "/clr compiler option [C++]", "Managed Extensions for C++, compiling", "common language runtime, /clr compiler option"] +ms.date: 03/20/2025 +f1_keywords: ["/dynamicdeopt"] +helpviewer_keywords: ["-dynamicdeopt compiler option [C++]", "dynamicdeopt compiler option [C++]"] --- # `/dynamicdeopt` (Enable C++ Dynamic Debugging) (Preview) From 122944be267ba45b9ed1ec9d95b064c3ed16ea11 Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Thu, 20 Mar 2025 15:31:48 -0700 Subject: [PATCH 070/981] Final changes --- docs/build/cmake-projects-in-visual-studio.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/cmake-projects-in-visual-studio.md b/docs/build/cmake-projects-in-visual-studio.md index c8d8af1d31..a164d943fe 100644 --- a/docs/build/cmake-projects-in-visual-studio.md +++ b/docs/build/cmake-projects-in-visual-studio.md @@ -293,7 +293,7 @@ When you choose **File > Open > Folder** to open a folder containing a *`CMakeLi - In the background, Visual Studio starts to index the source files to enable IntelliSense, browsing information, refactoring, and so on. As you work, Visual Studio monitors changes in the editor and also on disk to keep its index in sync with the sources. -You can open folders containing any number of CMake projects. Visual Studio detects and configures all the *root* *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. +You can open folders containing any number of CMake projects. Visual Studio detects and configures all the top-level *`CMakeLists.txt`* files in your workspace. CMake operations (configure, build, debug), C++ IntelliSense, and browsing are available to all CMake projects in your workspace. :::image type="complex" source="media/cmake-multiple-roots.png" alt-text="Screenshot of the Visual Studio Solution Explorer."::: The files and folders of a C Make project are visible. There's a tests subdirectory, CMakeLists.txt, and hello.cpp. There's a hello-cmake-vcpkg folder that contains CMakeLists.txt, CMakeSettings.json, and hello.cpp. @@ -336,7 +336,7 @@ Not everything in the cache is imported. Properties such as the generator and th To build a CMake project, you have these choices: -1. In the General toolbar, find the **Configurations** dropdown. It's probably showing *Linux-Debug* or *x64-Debug* by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. +1. In the General toolbar, find the **Configurations** dropdown. It's probably showing **Linux-Debug** or **x64-Debug** by default. Select the preferred configuration and press **F5**, or choose the **Run** (green triangle) button on the toolbar. The project automatically builds first, just like a Visual Studio solution. 1. Right-click on *`CMakeLists.txt`* in **Solution Explorer** and select **Build** from the context menu. If you have multiple targets in your folder structure, you can choose to build all or only one specific target. From 60d491320eee0a16aa26aa8e77a651ff528f02e9 Mon Sep 17 00:00:00 2001 From: Phil Christensen Date: Fri, 21 Mar 2025 12:21:22 -0700 Subject: [PATCH 071/981] Clarify string literal length limits in docs --- docs/cpp/string-and-character-literals-cpp.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/cpp/string-and-character-literals-cpp.md b/docs/cpp/string-and-character-literals-cpp.md index ffc4f939dc..643fd31dae 100644 --- a/docs/cpp/string-and-character-literals-cpp.md +++ b/docs/cpp/string-and-character-literals-cpp.md @@ -331,7 +331,10 @@ const size_t byteSize = (wcslen(str) + 1) * sizeof(wchar_t); Notice that `strlen()` and `wcslen()` don't include the size of the terminating null character, whose size is equal to the element size of the string type: one byte on a `char*` or `char8_t*` string, two bytes on `wchar_t*` or `char16_t*` strings, and four bytes on `char32_t*` strings. -In versions of Visual Studio before Visual Studio 2022 version 17.0, the maximum length of a string literal is 65,535 bytes after string concatenation. This limit applies to both narrow string literals and wide string literals. In Visual Studio 2022 version 17.0 and later, the length restriction after string concatenation is lifted, and is limited by available resources. The size limit before string concatenation remains at 16,384 bytes. +Maximum length of a string literal after concatenation: + +* Visual Studio prior to 2022 version 17.0: the maximum length of a string literal after concatenation is 65,535 bytes. This applies to both narrow and wide string literals. +* From Visual Studio 2022 version 17.0 onwards: the maximum length of a string literal after concatenation is only limited by available memory. However, the size limit before concatenation is still 16,384 bytes ### Modifying string literals From f81af68128f4ac9feded08dd9827e82484c05f72 Mon Sep 17 00:00:00 2001 From: cdpark <15152924+cdpark@users.noreply.github.com> Date: Fri, 21 Mar 2025 16:09:45 -0700 Subject: [PATCH 072/981] Refresh articles --- .../connect-to-your-remote-linux-computer.md | 72 ++++++------ ...n-or-other-image-image-editor-for-icons.md | 109 +++++++++--------- ...-using-the-vcpp-redistributable-package.md | 81 ++++++------- 3 files changed, 135 insertions(+), 127 deletions(-) diff --git a/docs/linux/connect-to-your-remote-linux-computer.md b/docs/linux/connect-to-your-remote-linux-computer.md index abb09042bb..6c4c3d3d4e 100644 --- a/docs/linux/connect-to-your-remote-linux-computer.md +++ b/docs/linux/connect-to-your-remote-linux-computer.md @@ -1,9 +1,10 @@ --- -title: "Connect to your target Linux system in Visual Studio" -description: "How to connect to a remote Linux machine or Windows Subsystem for Linux from inside a Visual Studio C++ project." -ms.date: 03/14/2022 +title: "Connect to a target Linux system by using Visual Studio" +description: "Learn how to connect to a remote Linux machine or Windows Subsystem for Linux from inside a Visual Studio C++ project." +ms.topic: tutorial +ms.date: 03/21/2025 --- -# Connect to your target Linux system in Visual Studio +# Connect to your remote Linux system by using Visual Studio ::: moniker range="msvc-140" @@ -26,6 +27,7 @@ You can configure a Linux project to target a remote machine or the Windows Subs ::: moniker range=">=msvc-150" When using a remote connection, Visual Studio builds C++ Linux projects on the remote machine. It doesn't matter if it's a physical machine, a virtual machine in the cloud, or WSL. + To build the project, Visual Studio copies the source code to your remote Linux computer. Then, the code gets compiled based on Visual Studio settings. ::: moniker-end @@ -39,7 +41,7 @@ To build the project, Visual Studio copies the source code to your remote Linux ::: moniker range=">=msvc-150" -## Set up the SSH server on the remote system +## Set up the SSH server on the remote Linux system If `ssh` isn't already set up and running on your Linux system, follow these steps to install it. The examples in this article use Ubuntu 18.04 LTS with OpenSSH server version 7.6. However, the instructions should be the same for any distro using a moderately recent version of OpenSSH. @@ -56,9 +58,9 @@ If `ssh` isn't already set up and running on your Linux system, follow these ste sudo systemctl enable ssh ``` -## Set up the remote connection +## Set up the remote connection from your local machine -1. In Visual Studio, choose **Tools > Options** on the menu bar to open the **Options** dialog. Then select **Cross Platform > Connection Manager** to open the Connection Manager dialog. +1. In Visual Studio on your Windows system, choose **Tools > Options** on the menu bar to open the **Options** dialog. Then select **Cross Platform > Connection Manager** to open the Connection Manager dialog. If you haven't set up a connection in Visual Studio before, when you build your project for the first time, Visual Studio opens the Connection Manager dialog for you. @@ -69,11 +71,11 @@ If `ssh` isn't already set up and running on your Linux system, follow these ste :::image-end::: To edit an existing connection, choose **Edit**. In either scenario, the **Connect to Remote System** window is displayed. - + :::image type="complex" source="media/connect-to-your-remote-linux-computer/connect-updated.png" alt-text="Screenshot of the Visual Studio Connect to Remote System window."::: In the Connect to Remote System window, there are fields for host name, port, user name, authentication type, and password. Port is set to 22. Authentication type is set to 'Password'. :::image-end::: - + 1. Enter the following information: | Entry | Description | @@ -84,23 +86,23 @@ If `ssh` isn't already set up and running on your Linux system, follow these ste | **Authentication type** | Password and Private Key are both supported | | **Password** | Password for the entered user name | | **Private key file** | Private key file created for ssh connection | - | **Passphrase** | Passphrase used with private key selected above | + | **Passphrase** | Passphrase used with private key selected previously | - You can't click the **Connect** button until all the required fields are completed and the port is set to an integer between 1 and 65535. + You can't select the **Connect** button until all the required fields are completed and the port is set to an integer between 1 and 65535. You can use either a password or a key file and passphrase for authentication. Key files are more secure than username/password. If you already have a key pair, it's possible to reuse it. - Versions of Visual Studio before 17.10 support Elliptic Curve (EC), Rivert-Shamir-Adleman (RSA), and Digital signature algorithm (DSA) keys for remote connections. Because of security concerns, DSA keys are no longer supported in VS 17.10 and later. RSA keys were also not supported in VS 17.10 and VS 17.11 but some types are supported again in VS 17.12 and later. To create a key pair compatible with the connection manager you can use the command: + Versions of Visual Studio before 17.10 support Elliptic Curve (EC), Rivert-Shamir-Adleman (RSA), and Digital signature algorithm (DSA) keys for remote connections. Because of security concerns, DSA keys are no longer supported in VS 17.10 and later. RSA keys were also not supported in VS 17.10 and VS 17.11 but some types are supported again in VS 17.12 and later. To create a key pair compatible with the connection manager, you can use the command: `ssh-keygen -m pem -t ecdsa -f ` > [!NOTE] - > If using `ssh-keygen` to create the private key, you must specify the switch `-m pem`, or the key will not be accepted by Visual Studio. If your private key begins with `-----BEGIN OPENSSH PRIVATE KEY-----`, you must convert it with `ssh-keygen -p -f -m pem`. + > If using `ssh-keygen` to create the private key, you must specify the switch `-m pem`, or the key isn't accepted by Visual Studio. If your private key begins with `-----BEGIN OPENSSH PRIVATE KEY-----`, you must convert it with `ssh-keygen -p -f -m pem`. 1. Choose the **Connect** button to attempt a connection to the remote computer. If the connection succeeds, Visual Studio configures IntelliSense to use the remote headers. For more information, see [IntelliSense for headers on remote systems](configure-a-linux-project.md#remote_intellisense). - If the connection fails, an info bar with error information appears and the fields that you may need to change are outlined in red. + If the connection fails, an info bar with error information appears and the fields that you might need to change are outlined in red. :::image type="content" source="media/connect-to-your-remote-linux-computer/settings-connection-manager-error-updated.png" alt-text="Screenshot of the Visual Studio Connect to Remote System window. The host name and port fields are outlined in red to indicate incorrect entries."::: @@ -114,13 +116,13 @@ If `ssh` isn't already set up and running on your Linux system, follow these ste ## Host key verification -In Visual Studio version 16.10 or later, you're asked to verify the server's host key fingerprint whenever Visual Studio connects to a remote system for the first time. You may be familiar with this process if you've used the OpenSSH command-line client or PuTTY before. The fingerprint identifies the server. Visual Studio uses the fingerprint to ensure it's connecting to the intended and trusted server. +In Visual Studio version 16.10 or later, you're asked to verify the server's host key fingerprint whenever Visual Studio connects to a remote system for the first time. You might be familiar with this process if you've used the OpenSSH command-line client or PuTTY before. The fingerprint identifies the server. Visual Studio uses the fingerprint to ensure it connects to the intended and trusted server. The first time Visual Studio establishes a new remote connection, you're asked to accept or deny the host key fingerprint presented by the server. Or, anytime there are changes to a cached fingerprint. You can also verify a fingerprint on demand: select a connection in the Connection Manager and choose **Verify**. If you upgrade to Visual Studio 16.10 or later from an older version, it treats any existing remote connections as new connections. You're prompted to accept the host key fingerprint first. Then, Visual Studio establishes a connection and caches the accepted fingerprint. -You can also update remote connections from `ConnectionManager.exe` using the `update` argument. +You can also update remote connections from *`ConnectionManager.exe`* using the `update` argument. ## Supported SSH algorithms @@ -137,13 +139,13 @@ Starting in Visual Studio version 16.9, support for older, insecure SSH algorith First, a little background. You can't select the SSH algorithm to use from Visual Studio. Instead, the algorithm is determined during the initial handshake with the SSH server. Each side (client and server) provides a list of algorithms it supports, and then the first algorithm common to both is selected. The connection succeeds as long as there's at least one algorithm in common between Visual Studio and the server for encryption, HMAC, key exchange, and so on. -The Open SSH configuration file (*`sshd_config`*) doesn't configure which algorithm to use by default. The SSH server should use secure defaults when no algorithms are specified. Those defaults depend on the version and vendor of the SSH server. If Visual Studio doesn't support those defaults, you'll likely see an error like: "Could not connect to the remote system. No common client to server HMAC algorithm was found." The error may also appear if the SSH server is configured to use algorithms that Visual Studio doesn't support. +The Open SSH configuration file (*`sshd_config`*) doesn't configure which algorithm to use by default. The SSH server should use secure defaults when no algorithms are specified. Those defaults depend on the version and vendor of the SSH server. If Visual Studio doesn't support those defaults, you'll likely see an error like: *Could not connect to the remote system. No common client to server HMAC algorithm was found.* The error might also appear if the SSH server is configured to use algorithms that Visual Studio doesn't support. -The default SSH server on most modern Linux distributions should work with Visual Studio. However, you may be running an older SSH server that's configured to use older, insecure algorithms. The following example explains how to update to more secure versions. +The default SSH server on most modern Linux distributions should work with Visual Studio. However, you might be running an older SSH server that's configured to use older, insecure algorithms. The following example explains how to update to more secure versions. -In the following example, the SSH server uses the insecure `hmac-sha1` algorithm, which Visual Studio 16.9 doesn't support. If the SSH server uses OpenSSH, you can edit the `/etc/ssh/sshd_config` file as shown below to enable more secure algorithms. For other SSH servers, refer to the server's documentation for how to configure them. +In this example, the SSH server uses the insecure `hmac-sha1` algorithm, which Visual Studio 16.9 doesn't support. If the SSH server uses OpenSSH, you can edit the command `/etc/ssh/sshd_config` to enable more secure algorithms. For other SSH servers, refer to the server's documentation for how to configure them. -First, verify that the set of algorithms your server is using includes algorithms supported by Visual Studio. Run the following command on the remote machine to list the algorithms supported by the server: +First, verify that the set of algorithms your server is using includes algorithms supported by Visual Studio. Run the following command on the remote machine to list the algorithms supported by the server: ```bash ssh -Q cipher; ssh -Q mac; ssh -Q kex; ssh -Q key @@ -169,7 +171,7 @@ These examples can be added anywhere in `/etc/ssh/sshd_config`. Ensure that they After editing the file, restart the SSH server (`sudo service ssh restart` on Ubuntu) and attempt to connect again from Visual Studio. -#### Cipher example +#### Cipher example Add: `Ciphers ` For example: `Ciphers aes128-cbc,aes256-cbc` @@ -191,19 +193,19 @@ For example: `HostKeyAlgorithms ecdsa-sha2-nistp256,ecdsa-sha2-nistp384` ## Logging for remote connections - You can enable logging to help troubleshoot connection problems. On the menu bar, select **Tools > Options**. In the **Options** dialog, select **Cross Platform > Logging**: +You can enable logging to help troubleshoot connection problems. On the menu bar, select **Tools > Options**. In the **Options** dialog, select **Cross Platform > Logging**: - :::image type="complex" source="media/remote-logging-vs2019.png" alt-text="Screenshot of the Visual Studio options screen."::: - The options are open to Cross Platform > Connection Manager > Logging. Enable logging is checked, log to a file is checked, the logfile directory is set the documents folder, and log to the 'Cross Platform Logging' pane in the output window is checked. - :::image-end::: +:::image type="complex" source="media/remote-logging-vs2019.png" alt-text="Screenshot of the Visual Studio options screen."::: +The options are open to Cross Platform > Connection Manager > Logging. Enable logging is checked, log to a file is checked, the logfile directory is set the documents folder, and log to the 'Cross Platform Logging' pane in the output window is checked. +:::image-end::: - Logs include connections, all commands sent to the remote machine (their text, exit code and execution time), and all output from Visual Studio to the shell. Logging works for any cross-platform CMake project or MSBuild-based Linux project in Visual Studio. +Logs include connections, all commands sent to the remote machine (their text, exit code and execution time), and all output from Visual Studio to the shell. Logging works for any cross-platform CMake project or MSBuild-based Linux project in Visual Studio. - You can configure the output to go to a file or to the **Cross Platform Logging** pane in the Output window. For MSBuild-based Linux projects, MSBuild commands sent to the remote machine aren't routed to the **Output Window** because they're emitted out-of-process. Instead, they're logged to a file, with a prefix of "msbuild_". +You can configure the output to go to a file or to the **Cross Platform Logging** pane in the Output window. For MSBuild-based Linux projects, MSBuild commands sent to the remote machine aren't routed to the **Output Window** because they're emitted out-of-process. Instead, they're logged to a file, with a prefix of `msbuild_`. ## Command-line utility for the Connection Manager -**Visual Studio 2019 version 16.5 or later**: `ConnectionManager.exe` is a command-line utility to manage remote development connections outside of Visual Studio. It's useful for tasks such as provisioning a new development machine. Or, you can use it to set up Visual Studio for continuous integration. For examples and a complete reference to the ConnectionManager command, see [ConnectionManager reference](connectionmanager-reference.md). +**Visual Studio 2019 version 16.5 or later**: *`ConnectionManager.exe`* is a command-line utility to manage remote development connections outside of Visual Studio. It's useful for tasks such as provisioning a new development machine. Or, you can use it to set up Visual Studio for continuous integration. For examples and a complete reference to the ConnectionManager command, see [ConnectionManager reference](connectionmanager-reference.md). ::: moniker-end @@ -231,7 +233,7 @@ Visual Studio's Linux support has a dependency on TCP port forwarding. Both `rsy ::: moniker range="msvc-150" -In Visual Studio 2017, you use the same steps to connect to WSL as you use for a remote Linux machine. Use `localhost` for the **Host Name**. +In Visual Studio 2017, you use the same steps to connect to Windows Subsystem for Linux (WSL) as you use for a remote Linux machine. Use `localhost` for the **Host Name**. ::: moniker-end @@ -247,7 +249,7 @@ sudo apt install g++ gdb make ninja-build rsync zip ### Fix WSL `localhost` connection problems -When connecting to Windows Subsystem for Linux (WSL) on `localhost`, you may run into a conflict with the Windows `ssh` client on port 22. In WSL, change the port that `ssh` expects requests from to 23 in `/etc/ssh/sshd_config`: +When connecting to WSL on `localhost`, you might run into a conflict with the Windows `ssh` client on port 22. In WSL, change the port that `ssh` expects requests from to 23 in `/etc/ssh/sshd_config`: ```bash Port 23 @@ -270,9 +272,9 @@ To configure an MSBuild project for WSL, see [Configure a Linux project](configu ::: moniker-end -## See Also +## Related content -[Configure a Linux project](configure-a-linux-project.md)\ -[Configure a Linux CMake project](cmake-linux-project.md)\ -[Deploy, run, and debug your Linux project](deploy-run-and-debug-your-linux-project.md)\ -[Configure CMake debugging sessions](../build/configure-cmake-debugging-sessions.md) \ No newline at end of file +- [Configure a Linux MSBuild C++ project in Visual Studio](configure-a-linux-project.md) +- [Create a CMake Linux project in Visual Studio](cmake-linux-project.md) +- [Deploy, run, and debug your Linux MSBuild project](deploy-run-and-debug-your-linux-project.md) +- [Configure CMake debugging sessions](../build/configure-cmake-debugging-sessions.md) \ No newline at end of file diff --git a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md index 004896d77c..c98a034b30 100644 --- a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md +++ b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md @@ -1,24 +1,25 @@ --- -description: "Learn more about: How To: Create an Icon or Other Image" -title: "How To: Create an Icon or Other Image" -ms.date: "02/15/2019" +description: "Create an icon or other image" +title: "Learn how to create a new image, bitmap, icon, cursor, or toolbar, and then use the Image Editor to customize its appearance." +ms.date: 03/21/2025 +ms.topic: how-to helpviewer_keywords: ["bitmaps [C++]", "images [C++], creating", "resources [C++], creating images", "bitmaps [C++], creating", "graphics [C++], creating", "Image editor [C++], creating images", "cursors [C++], creating", "image resources [C++], display devices", "icons [C++], creating", "cursors [C++], types", "icons [C++]", "Image editor [C++], icons and cursors", "cursors [C++]", "display devices [C++], creating icons for", "cursors [C++], hot spots", "icons [C++], types", "icons [C++], creating", "display devices [C++], creating image", "images [C++], creating for display devices", "icons [C++], inserting", "New Image Type dialog box [C++]", "Custom Image dialog box [C++]", "Open Image dialog box [C++]", "New Device Image command", "display devices [C++], adding images", "cursors [C++], adding", "icons, adding", "display devices [C++], copying images", "cursors [C++], copying", "icons, copying", "cursors [C++], deleting", "display devices [C++], deleting device image", "icons, erasing", "icons, deleting", "cursors [C++], undoing changes", "icons, undoing changes", "cursors [C++], screen regions", "inverse colors [C++], device images", "transparent regions, device images", "transparency, device images", "Image editor [C++], device images", "inverse regions, device images", "cursors [C++], transparent regions", "screen colors", "regions, transparent", "icons [C++], transparent regions", "display devices [C++], transparent and screen regions", "transparent regions in devices", "regions, inverse", "colors [C++], Image editor", "device projects [C++], transparent images", "icons [C++], screen regions", "256-color palette", "cursors [C++], color", "colors [C++], icons", "colors [C++], cursors", "icons, color", "colors [C++], icons and cursors", "color palettes, 256-color", "palettes, 256-color", "cursors [C++], hot spots", "hot spots", ".gif files [C++], saving bitmaps as", "jpg files [C++], saving bitmaps as", "jpeg files [C++], saving bitmaps as", ".jpg files [C++], saving bitmaps as", "Image editor [C++], converting image formats", "gif files [C++], saving bitmaps as", "bitmaps [C++], converting formats", ".jpeg files [C++], saving bitmaps as", "graphics [C++], converting formats", "images [C++], converting formats", "images [C++], stand-alone editing", "Image editor [C++], converting image formats", "graphics [C++], converting formats", "images [C++], converting formats"] ms.assetid: 66db3fb2-cfc1-48a2-9bdd-53f61eb7ee30 --- -# How To: Create an Icon or Other Image +# Create an icon or other image You can create a new image, bitmap, icon, cursor, or toolbar, and then use the **Image Editor** to customize its appearance. You can also create a new bitmap patterned after a [resource template](./how-to-create-a-resource-script-file.md). -## Icons and Cursors: Image Resources for Display Devices +## Image resources for display devices -Icons and cursors are graphical resources that can contain multiple images in different sizes and color schemes for different types of display devices. A cursor also has a hot spot, the location Windows uses to track its position. Both icons and cursors are created and edited using the **Image Editor**, as are bitmaps and other images. +Icons and cursors are graphical resources that can contain multiple images in different sizes and color schemes for different types of display devices. A cursor also has a hot spot, which is the location that Windows uses to track its position. Both icons and cursors are created and edited using the **Image Editor**, as are bitmaps and other images. When you create a new icon or cursor, the **Image Editor** first creates an image of a standard type. The image is initially filled with the screen (transparent) color. If the image is a cursor, the hot spot is initially the upper-left corner with coordinates `0,0`. -By default, the **Image Editor** supports the creation of additional images for the devices shown in the following table. You can create images for other devices by typing width, height, and color-count parameters into the **Custom Image** dialog box. +By default, the **Image Editor** supports the creation of new images for the devices shown in the following table. You can create images for other devices by typing width, height, and color-count parameters into the **Custom Image** dialog box. -|Color|Width (pixels)|Height (pixels)| -|-----------|----------------------|-----------------------| +|Color count|Width (pixels)|Height (pixels)| +|-----|--------------|---------------| |Monochrome|16|16| |Monochrome|32|32| |Monochrome|48|48| @@ -37,12 +38,12 @@ By default, the **Image Editor** supports the creation of additional images for ### Create a device image (icon or cursor) -When you create a new icon or cursor resource, the **Image Editor** first creates an image in a specific style (32 × 32, 16 colors for icons and 32 × 32, Monochrome for cursors). You can then add images in different sizes and styles to the initial icon or cursor and edit each additional image, as needed, for the different display devices. You can also edit an image by using a cut-and-paste operation from an existing image type or from a bitmap created in a graphics program. +When you create a new icon or cursor resource, the **Image Editor** first creates an image in a specific style: 32 × 32 pixels and 16 colors for icons; 32 × 32 pixels and monochrome for cursors. You can then add images in different sizes and styles to the initial icon or cursor, and edit each additional image, as needed, for the different display devices. You can also edit an image by using a cut-and-paste operation from an existing image type or from a bitmap created in a graphics program. When you open the icon or cursor resource in the [Image Editor](../windows/image-editor-for-icons.md), the image most closely matching the current display device is opened by default. > [!NOTE] -> If your project doesn't already contain an .rc file, see [Creating a New Resource Script File](../windows/how-to-create-a-resource-script-file.md). +> If your project doesn't already contain an *`.rc`* file, see [Create Resources (C++)](../windows/how-to-create-a-resource-script-file.md). The **New \ Image Type** dialog box enables you to create a new device image of a specified type. To open the **New \ Image** dialog box, go to menu **Image** > **New Image Type**. The following properties included are **Target Image Type** and **Custom**. @@ -50,40 +51,46 @@ The **Target Image Type** property lists the available image types where you sel :::row::: :::column span=""::: - 16 x 16, 16 colors\ - 32 x 32, 16 colors\ - 48 x 48, 16 colors\ - 64 x 64, 16 colors\ - 96 x 96, 16 colors + 16 x 16, 1 bit\ + 16 x 16, 24 bit\ + 16 x 16, 4 bit\ + 128 x 128, 1 bit\ + 128 x 128, 24 bit\ + 128 x 128, 4 bit\ + 128 x 128, 8 bit :::column-end::: :::column span=""::: - 16 x 16, 256 colors\ - 32 x 32, 256 colors\ - 48 x 48, 256 colors\ - 64 x 64, 256 colors\ - 96 x 96, 256 colors + 256 x 256, 1 bit\ + 256 x 256, 24 bit\ + 256 x 256, 4 bit\ + 256 x 256, 8 bit\ + 32 x 32, 1 bit\ + 32 x 32, 24 bit\ + 32 x 32, 4 bit :::column-end::: :::column span=""::: - 16 x 16, Monochrome\ - 32 x 32, Monochrome\ - 48 x 48, Monochrome\ - 64 x 64, Monochrome\ - 96 x 96, Monochrome + 48 x 48, 1 bit\ + 48 x 48, 24 bit\ + 48 x 48, 4 bit\ + 64 x 64, 1 bit\ + 64 x 64, 24 bit\ + 64 x 64, 4 bit\ + 64 x 64, 8 bit :::column-end::: :::row-end::: > [!NOTE] -> Any existing images will not be displayed in this list. +> Any existing images are not displayed in this list. The **Custom** property opens the **Custom Image** dialog box in which you can create a new image with a custom size and number of colors. -The **Custom Image** dialog box enables you to create a new image with a custom size and number of colors. The following properties included are: +The **Custom Image** dialog box allows you to create a new image with a custom size and number of colors. The following properties included are: |Property|Description| |---|---| -|**Width**|Provides a space for you to enter the width of the custom image in pixels (1 - 512, limit of 2048).| -|**Height**|Provides a space for you to enter the height for the custom image in pixels (1 - 512, limit of 2048).| -|**Colors**|Provides a space for you to choose the number of colors for the custom image: 2, 16, or 256.| +|**Width**|Provides a space for you to enter the width of the custom image in pixels (1 - 512, limit of 2048)| +|**Height**|Provides a space for you to enter the height for the custom image in pixels (1 - 512, limit of 2048)| +|**Colors**|Provides a space for you to choose the number of bits for the custom image: 1, 4, 8, 24| Use the **Open \ Image** dialog box to open device images in C++ projects. It lists existing device images in the current resource (images that are part of the current resource). The following property included is: @@ -93,9 +100,9 @@ Use the **Open \ Image** dialog box to open device images in C++ project #### To create a new icon or cursor -1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *.rc* file, then choose **Insert Resource**. If you already have an existing image resource in your *.rc* file, such as a cursor, you can right-click the **Cursor** folder and select **Insert Cursor**. +1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *`.rc`* file, then choose **Add Resource**. If you already have an existing image resource in your *`.rc`* file, such as a cursor, you can right-click the **Cursor** folder and select **Insert Cursor**. -1. In the [Insert Resource dialog box](./how-to-create-a-resource-script-file.md), select **Icon** or **Cursor** and choose **New**. For icons, this action creates an icon resource with a 32 × 32, 16-color icon. For cursors, a 32 × 32, Monochrome (2-color) image is created. +1. In the [Add Resource dialog box](./how-to-create-a-resource-script-file.md), select **Icon** or **Cursor** and choose **New**. For icons, this action creates an icon resource with a 32 × 32, 16-color icon. For cursors, a 32 × 32, monochrome (two-color) image is created. If a plus sign (**+**) appears next to the image resource type in the **Insert Resource** dialog box, it means that toolbar templates are available. Select the plus sign to expand the list of templates, select a template, and choose **New**. @@ -120,11 +127,11 @@ Use the **Open \ Image** dialog box to open device images in C++ project While the icon image is displayed in the **Image Editor**, go to menu **Image** > **Delete Device Image**. When you delete the last icon image in the resource, the resource is also deleted. > [!NOTE] -> When you press the **Del** key, the images and colors you have drawn on an icon are deleted but the icon remains and you can now redesign it. If you press **Del** by mistake, press **Ctrl**+**Z** to undo the action. +> When you press the **Del** key, the images and colors you drew on an icon are deleted but the icon remains and you can now redesign it. If you press **Del** by mistake, press **Ctrl**+**Z** to undo the action. ### To create transparent or inverse regions in device images -In the [Image Editor](../windows/image-editor-for-icons.md), the initial icon or cursor image has a transparent attribute. Although icon and cursor images are rectangular, many don't appear so because parts of the image are transparent and the underlying image on the screen shows through the icon or cursor. When you drag an icon, parts of the image may appear in an inverted color. You create this effect by setting the screen color and inverse color in the [Colors window](./image-editor-for-icons.md). +In the [Image Editor](../windows/image-editor-for-icons.md), the initial icon or cursor image has a transparent attribute. Although icon and cursor images are rectangular, many don't appear so because parts of the image are transparent and the underlying image on the screen shows through the icon or cursor. When you drag an icon, parts of the image might appear in an inverted color. You create this effect by setting the screen color and inverse color in the [Colors window](./image-editor-for-icons.md). The screen and inverse colors you apply to icons and cursors either shape and color the derived image or assign inverse regions. The colors indicate parts of the image that have those attributes. You can change the colors that represent the screen-color and inverse-color attributes in editing. These changes don't affect the appearance of the icon or cursor in your application. @@ -154,9 +161,9 @@ Using the **Image Editor**, icons and cursors can be sized large (64 × 64) with #### To create a 256-color icon or cursor -1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *.rc* file, then choose **Insert Resource**. If you already have an existing image resource in your *.rc* file, such as a cursor, you can right-click the **Cursor** folder and select **Insert Cursor**. +1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *`.rc`* file, then choose **Add Resource**. If you already have an existing image resource in your *`.rc`* file, such as a cursor, you can right-click the **Cursor** folder and select **Insert Cursor**. -1. In the [Insert Resource dialog box](./how-to-create-a-resource-script-file.md), select **Icon** or **Cursor** and choose **New**. +1. In the [Add Resource dialog box](./how-to-create-a-resource-script-file.md), select **Icon** or **Cursor** and choose **New**. 1. Go to menu **Image** > **New Device Image** and select the 256-color image style you want. @@ -168,7 +175,7 @@ To draw with a selection from the 256-color palette, you need to select the colo 1. Choose a color from the 256 colors displayed in the **Colors** palette in the **Colors** window. - The color selected will become the current color in the **Colors** palette in the **Colors** window. + The color selected becomes the current color in the **Colors** palette in the **Colors** window. > [!NOTE] > The initial palette used for 256-color images matches the palette returned by the `CreateHalftonePalette` Windows API. All icons intended for the Windows shell should use this palette to prevent flicker during palette realization. @@ -185,7 +192,7 @@ The hot spot of a cursor is the point to which Windows refers in tracking the cu ### To create and save a bitmap as a .gif or .jpeg -When you create a bitmap, the image is created in bitmap format (.bmp). You can, however, save the image as a GIF or JPEG or in other graphic formats. +When you create a bitmap, the image is created in bitmap format (*`.bmp`*). You can, however, save the image as a GIF or JPEG or in other graphic formats. > [!NOTE] > This process doesn't apply to icons and cursors. @@ -203,7 +210,7 @@ When you create a bitmap, the image is created in bitmap format (.bmp). You can, 1. In the **Save File As** dialog box, type the name you want to give the file and the extension that denotes the file format you want in the **File Name** box. For example, *myfile.gif*. > [!NOTE] - > You must create or open the bitmap outside of your project in order to save it as another file format. If you create or open it within your project, the **Save As** command will be unavailable. For more information, see [Viewing Resources in a Resource Script File Outside of a Project (Standalone)](./how-to-create-a-resource-script-file.md). + > You must create or open the bitmap outside of your project in order to save it as another file format. If you create or open it within your project, the **Save As** command is unavailable. For more information, see [Viewing Resources in a Resource Script File Outside of a Project (Standalone)](./how-to-create-a-resource-script-file.md). 1. Select **Save**. @@ -221,11 +228,11 @@ You can open GIF or JPEG images in the **Image Editor** and save them as bitmaps ### To add a new image resource to an unmanaged C++ project -1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *.rc* file, then choose **Insert Resource**. If you already have an existing image resource in your *.rc* file, such as a cursor, you can simply right-click the **Cursor** folder and select **Insert Cursor**. +1. In [Resource View](how-to-create-a-resource-script-file.md#create-resources), right-click your *`.rc`* file, then choose **Add Resource**. If you already have an existing image resource in your *`.rc`* file, such as a cursor, you can right-click the **Cursor** folder and select **Insert Cursor**. -1. In the [Insert Resource dialog box](./how-to-create-a-resource-script-file.md), select the type of image resource you'd like to create (**Bitmap**, for example) then choose **New**. +1. In the [Add Resource dialog box](./how-to-create-a-resource-script-file.md), select the type of image resource you'd like to create (**Bitmap**, for example) then choose **New**. - If a plus sign (**+**) appears next to the image resource type in the **Insert Resource** dialog box, it means that toolbar templates are available. Select the plus sign to expand the list of templates, select a template, and choose **New**. + If a plus sign (**+**) appears next to the image resource type in the **Add Resource** dialog box, it means that toolbar templates are available. Select the plus sign to expand the list of templates, select a template, and choose **New**. ### To add a new image resource to a project in a .NET programming language @@ -239,17 +246,13 @@ You can open GIF or JPEG images in the **Image Editor** and save them as bitmaps The resource is added to your project in **Solution Explorer** and the resource opens in the [Image Editor](../windows/image-editor-for-icons.md). You can now use all the tools available in the **Image Editor** to modify your image. For more information on adding images to a managed project, see [Loading a Picture at Design Time](/dotnet/framework/winforms/controls/how-to-load-a-picture-using-the-designer-windows-forms). -## Requirements - -None - -## See also +## Related content -[Image Editor for Icons](../windows/image-editor-for-icons.md)
-[How to: Edit an Image](../windows/selecting-an-area-of-an-image-image-editor-for-icons.md)
-[How to: Use a Drawing Tool](../windows/using-a-drawing-tool-image-editor-for-icons.md)
-[How to: Work with Color](../windows/working-with-color-image-editor-for-icons.md)
-[Accelerator Keys](../windows/accelerator-keys-image-editor-for-icons.md)
+- [Image Editor for Icons](../windows/image-editor-for-icons.md) +- [How to: Edit an Image](../windows/selecting-an-area-of-an-image-image-editor-for-icons.md) +- [How to: Use a Drawing Tool](../windows/using-a-drawing-tool-image-editor-for-icons.md) +- [How to: Work with Color](../windows/working-with-color-image-editor-for-icons.md) +- [Accelerator Keys](../windows/accelerator-keys-image-editor-for-icons.md) 6!AlGr!u|z2&IgMC diff --git a/docs/build-insights/tutorials/media/templates-view-before-fix.png b/docs/build-insights/tutorials/media/templates-view-before-fix.png new file mode 100644 index 0000000000000000000000000000000000000000..5c52be969024c2a7510a1846efa2157f038a8717 GIT binary patch literal 66563 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 Date: Sat, 12 Jul 2025 22:12:29 +0800 Subject: [PATCH 796/981] Fix typos in "What's new for C++ in Visual Studio 2022" topic --- ...what-s-new-for-visual-cpp-in-visual-studio.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index c603b8f916..51b810c8aa 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -91,7 +91,7 @@ A quick highlight of some new features: - **Standard Library enhancements** - - Standard library support for couroutines. In this example from [P2502R2](https://wg21.link/p2502r2), the `fib` function is a coroutine. When the `co_yield` statement is executed, `fib` is suspended and the value is returned to the caller. You can resume the `fib` coroutine later to produce more values without requiring any manual state handling: + - Standard library support for coroutines. In this example from [P2502R2](https://wg21.link/p2502r2), the `fib` function is a coroutine. When the `co_yield` statement is executed, `fib` is suspended and the value is returned to the caller. You can resume the `fib` coroutine later to produce more values without requiring any manual state handling: ```cpp std::generator fib() @@ -137,8 +137,8 @@ A quick highlight of some new features: :::image-end::: To use this feature, ensure the following are turned on: - - **Tools**>**Options**> **Preview Features** > **Pull Request Comments** - - **Tools** >**Options** > **GitHub** > **Copilot** > **Source Control Integration** > **Enable Git preview features**. + - **Tools** > **Options** > **Preview Features** > **Pull Request Comments** + - **Tools** > **Options** > **GitHub** > **Copilot** > **Source Control Integration** > **Enable Git preview features**. - GitHub Copilot Edits is a new feature that can make changes across multiple files in your project. To start a new Edits session, click **Create new edit session** at the top of the GitHub Copilot Chat window: @@ -283,7 +283,7 @@ A partial list of new features: :::image-end::: - **Breakpoint/Tracepoint Creation**: You can now create conditional breakpoints or tracepoints directly from expressions in the source code from the right-click menu. This works on property or field names and values from autos, locals, watch windows, or DataTips. - **Attach to Process Dialog**: The functionality provided by the Attach to Process dialog is more user-friendly. You can now easily switch between tree and list views, organize processes better with collapsible sections, and select code types with a simplified combobox. Also, the "Select/Track Window" feature is now easier to use, allowing two-way tracking: selecting a process highlights its window, and clicking on a window selects its process. -- **GitHub Copilot Integration**: GitHub Copilot and Copilot Chat extensions are now unified and now ship directly in Visual Studio. To install it, install the **GitHub Copilot** component in the **Visual Studio Installer**: +- **GitHub Copilot Integration**: GitHub Copilot and Copilot Chat extensions are now unified and ship directly in Visual Studio. To install it, install the **GitHub Copilot** component in the **Visual Studio Installer**: :::image type="complex" source="media/github-copilot-install-option.png" alt-text="Screenshot of the Visual Studio Installer GitHub Copilot installation option." lightbox="media/github-copilot-install-option-expanded.png"::: The Visual Studio installer is open to the Workloads tab. In the installation details pane, GitHub Copilot is shown as selected. :::image-end::: @@ -347,7 +347,7 @@ A partial list of new features: - More Unreal Engine support: - Unreal Engine Test Adapter lets you discover, run, manage, and debug your Unreal Engine tests without leaving the Visual Studio IDE. - With Unreal Engine Code Snippets, you can find common Unreal Engine constructs as snippets in your member list. - - Build Insights is now integrated with Visual Studio 2022 and works with MSBuild and CMake projects using MSVC. You can now see additional information about the compilation of a function such as how long it took to compile and the number of ForceInlines, and the impact of header files on build time. For more information, see [Tutorial: Troubleshoot function inlining on build time](../build-insights/tutorials/build-insights-function-view.md) and [Tutorial: Troubleshoot header file impact on build time](../build-insights/tutorials/build-insights-included-files-view.md). + - Build Insights is now integrated with Visual Studio 2022 and works with MSBuild and CMake projects using MSVC. You can now see additional information about the compilation of a function such as how long it took to compile, the number of ForceInlines, and the impact of header files on build time. For more information, see [Tutorial: Troubleshoot function inlining on build time](../build-insights/tutorials/build-insights-function-view.md) and [Tutorial: Troubleshoot header file impact on build time](../build-insights/tutorials/build-insights-included-files-view.md). - Remote Linux unit test support now lets you run your CTest and GTest tests on your remote Linux machines from Visual Studio's Test Explorer, just like your local tests. ## What's new for C++ in Visual Studio version 17.7 @@ -402,7 +402,7 @@ A partial list of new features includes: A partial list of new features includes: -- `std::move`, `std::forward`, `std::move_if_noexcept`, and `std::forward_like` now don't produce function calls in generated code, even in debug mode. This change avoids named casts causing unnecessary overhead in debug builds. `/permissive-` (or an option that implies it, such as `/std:c++20` or `std:c++latest`) is required. +- `std::move`, `std::forward`, `std::move_if_noexcept`, and `std::forward_like` now don't produce function calls in generated code, even in debug mode. This change avoids named casts causing unnecessary overhead in debug builds. `/permissive-` (or an option that implies it, such as `/std:c++20` or `/std:c++latest`) is required. - Added [`[[msvc::intrinsic]]`](../cpp/attributes.md#msvcintrinsic). You can apply this attribute to nonrecursive functions consisting of a single cast, which take only one parameter. - Added support for Linux Console in the Integrated Terminal, which allows for terminal I/O. - Added initial experimental support for C11 atomic primitives (``). You can enable this experimental feature with the `/experimental:c11atomics` option in `/std:c11` mode or later. @@ -468,7 +468,7 @@ A partial list of new features in 17.4: (The compiler part isn't implemented yet. The library part was implemented in C++20 mode when Ranges support was initially implemented.) - [P0881R7](https://wg21.link/p0881r7) `` - - [P2301R1](https://wg21.link/p2301r1) Add A `pmr` Alias For `std::stacktrace` + - [P2301R1](https://wg21.link/p2301r1) Add a `pmr` alias for `std::stacktrace` - [P1328R1](https://wg21.link/p1328r1) `constexpr type_info::operator==()` - [P2440R1](https://wg21.link/p2440r1) `ranges::iota`, `ranges::shift_left`, `ranges::shift_right` - [P2441R2](https://wg21.link/p2441r2) `views::join_with` @@ -527,7 +527,7 @@ A partial list of new features in 17.2: - When you double-click an RTOS object in the tool window, it adds a watch for the object. - When you select the start and end values for the stack pointer in the RTOS tool window, it opens in the memory window. - Added thread awareness for device targets to the call stack window. - - Users can now select a pin icon next to peripherals, registers, or fields to pin them the top of the Peripheral View. + - Users can now select a pin icon next to peripherals, registers, or fields to pin them to the top of the Peripheral View. - Added implementations of the remaining C++20 defect reports (also known as *backports*). All C++20 features are now available under the **`/std:c++20`** option. For more information about the implemented backports, see the [VS 2022 Changelog](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-172) in the Microsoft/STL GitHub repository and the [MSVC's STL Completes `/std:c++20`](https://devblogs.microsoft.com/cppblog/msvcs-stl-completes-stdc20/) blog post. - We added various C++23 Library features, available under the **`/std:c++latest`** option. For more information about the new features, see the [STL Repo changelog](https://github.com/microsoft/STL/wiki/Changelog). - Improved performance of the initial C++ indexing by up to 20%, depending on the depth of the include graph. From 613a5b6ac56cbb12001d9ff69c038f1344fbf90c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 22:20:06 +0800 Subject: [PATCH 797/981] Fix undeclared identifier error in "What's new for C++ in Visual Studio 2022" topic --- docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index 51b810c8aa..222147dd0b 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -107,7 +107,7 @@ A quick highlight of some new features: int answer_to_the_universe() { auto rng = fib() | std::views::drop(6) | std::views::take(3); - return std::ranges::fold_left(std::move(range), 0, std::plus{}); + return std::ranges::fold_left(std::move(rng), 0, std::plus{}); } ``` From 154f2c11a642291a3b1a1c73985003e2c0b687d2 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 22:39:32 +0800 Subject: [PATCH 798/981] Update links for "For more information" tables in "What's new for C++ in Visual Studio 2022" topic --- ...what-s-new-for-visual-cpp-in-visual-studio.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md index 222147dd0b..8d0e875857 100644 --- a/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md +++ b/docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md @@ -62,7 +62,7 @@ A quick highlight of some of the new features: |---|---| | What's new for C++ developers | [What's New for C++ Developers in Visual Studio 2022 17.13](https://devblogs.microsoft.com/cppblog/whats-new-for-c-developers-in-visual-studio-2022-17-13/) | | Standard Library (STL) C++26 and C++23 features, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.13](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1713) | -| New features in the IDE |[Visual Studio 2022 version 17.13 Release Notes](/visualstudio/releases/2022/release-notes) | +| New features in the IDE |[Visual Studio 2022 version 17.13 Release Notes](/visualstudio/releases/2022/release-notes-v17.13) | | C++ language updates | [MSVC compiler updates in Visual Studio 2022 17.13](https://devblogs.microsoft.com/cppblog/msvc-compiler-updates-in-visual-studio-2022-version-17-13/) | | C++ language conformance improvements | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.13](cpp-conformance-improvements.md#improvements_1713) | @@ -163,7 +163,7 @@ A quick highlight of some new features: |---|---| | What's new for C++ developers | [What's New for C++ Developers in Visual Studio 2022 17.12](https://devblogs.microsoft.com/cppblog/whats-new-for-c-developers-in-visual-studio-2022-17-12/) | | Standard Library (STL) merged C++26 and C++23 features, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.12](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1712) | -| New features in the Visual Studio 17.12 IDE |[Visual Studio 2022 version 17.12 Release Notes](/visualstudio/releases/2022/release-notes) | +| New features in the Visual Studio 17.12 IDE |[Visual Studio 2022 version 17.12 Release Notes](/visualstudio/releases/2022/release-notes-v17.12) | | C++ language conformance improvements in Visual Studio 2022 17.12 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.12](cpp-conformance-improvements.md#improvements_1712) | A quick highlight of some of the new features: @@ -211,8 +211,8 @@ A quick highlight of some of the new features: | For more information about | See | |---|---| | What's new for C++ developers | [What's New for C++ Developers in Visual Studio 2022 17.11](https://devblogs.microsoft.com/cppblog/whats-new-for-c-developers-in-visual-studio-2022-17-11/) | -| Standard Library (STL) merged C++26 and C++23 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.11](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1711) | -| New features in the Visual Studio 17.11 IDE |[Visual Studio 2022 version 17.11 Release Notes](/visualstudio/releases/2022/release-notes) | +| Standard Library (STL) merged C++26 and C++23 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.11](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-1711) | +| New features in the Visual Studio 17.11 IDE |[Visual Studio 2022 version 17.11 Release Notes](/visualstudio/releases/2022/release-notes-v17.11) | | C++ language conformance improvements in Visual Studio 2022 17.11 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.11](cpp-conformance-improvements.md#improvements_1711) | A partial list of new features: @@ -262,8 +262,8 @@ A partial list of new features: | For more information about | See | |---|---| | What's new for C++ developers | [What's new for C++ Developers in Visual Studio 2022 17.10](https://devblogs.microsoft.com/cppblog/whats-new-for-c-developers-in-visual-studio-2022-17-10/) | -| Standard Library (STL) merged C++26 and C++23 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.10](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1710) | -| New features in the Visual Studio 17.10 IDE |[Visual Studio 2022 version 17.10 Release Notes](/visualstudio/releases/2022/release-notes) | +| Standard Library (STL) merged C++26 and C++23 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.10](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-1710) | +| New features in the Visual Studio 17.10 IDE |[Visual Studio 2022 version 17.10 Release Notes](/visualstudio/releases/2022/release-notes-v17.10) | | C++ language conformance improvements in Visual Studio 2022 17.10 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.10](cpp-conformance-improvements.md#improvements_1710) | A partial list of new features: @@ -484,7 +484,7 @@ A partial list of new features in 17.4: | For more information about | See | |---|---| -| What's new for C++ developers | [C++ improvements in 17.3](https://devblogs.microsoft.com/visualstudio/visual-studio-2022-17-3-is-now-available/#c-improvements) | +| What's new for C++ developers | [C++ improvements in 17.3](https://devblogs.microsoft.com/visualstudio/visual-studio-2022-17-3-is-now-available/#c++-improvements) | | Standard Library (STL) merged C++23 features, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.3](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-173) | | New features in the Visual Studio 17.3 IDE | [Visual Studio 2022 version 17.3 Release Notes](/visualstudio/releases/2022/release-notes-v17.3) | | C++ language conformance improvements in Visual Studio 2022 17.3 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022](cpp-conformance-improvements.md#improvements_173) | @@ -559,7 +559,7 @@ A partial list of new features in 17.1: | For more information about | See | |---|---| | New features in the Visual Studio 17.0 IDE | [Visual Studio 2022 version 17.0 Release Notes](/visualstudio/releases/2022/release-notes-v17.0) | -| Standard Library (STL) merged C++23 and C++26 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.0](https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1710) | +| Standard Library (STL) merged C++23 and C++26 features, C++20 defect reports, Language Working Group (LWG) issue resolutions, performance improvements, enhanced behavior, and fixed bugs | [STL Changelog 17.0](https://github.com/microsoft/STL/wiki/VS-2022-Changelog#vs-2022-170) | | C++ language conformance improvements in Visual Studio 2022 17.0 | [C++ Conformance improvements, behavior changes, and bug fixes in Visual Studio 2022 17.10](cpp-conformance-improvements.md#improvements_170) | An overview of some of the new features in Visual Studio 2022 version 17.0: From 36d9758a419c2da3f27da6fa8148d08d370a8875 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:00:48 +0800 Subject: [PATCH 799/981] Convert C Runtime errors list into a table --- .../c-runtime-errors-r6002-through-r6035.md | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index 97bc308ef1..d9c118743e 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -13,21 +13,23 @@ The C Runtime library (CRT) may report a runtime error when your app is loaded o ## C Runtime errors -[C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) \ -[C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) \ -[C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) \ -[C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) \ -[C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) \ -[C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) \ -[C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) \ -[C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) \ -[C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) \ -[C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) \ -[C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) \ -[C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) \ -[C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) \ -[C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) \ -[C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) +| Error | Message | +|--|--| +| [C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) | floating-point support not loaded | +| [C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) | not enough space for arguments | +| [C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) | not enough space for environment | +| [C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) | not enough space for thread data | +| [C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) | unexpected multithread lock error | +| [C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) | unexpected heap error | +| [C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) | unable to open console device | +| [C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | +| [C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) | pure virtual function call | +| [C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) | unable to initialize heap | +| [C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) | CRT not initialized | +| [C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | +| [C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) | Not enough space for locale information | +| [C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | +| [C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | ## See also From 48ade32f35fce006898badc9e1ce92d08cb7072c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:02:19 +0800 Subject: [PATCH 800/981] Simplify superfluous relative links in "C Runtime errors (Rxxxx)" --- .../c-runtime-errors-r6002-through-r6035.md | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index d9c118743e..1199507c3b 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -9,27 +9,27 @@ ms.assetid: 78019050-9a30-4b61-8250-a5702e0e2393 The C Runtime library (CRT) may report a runtime error when your app is loaded or running. Even though each message refers to the Microsoft Visual C++ runtime library, it doesn't mean there's a bug in the library. These errors indicate either a bug in your app's code, or a condition that the runtime library can't handle, such as low memory. End users of your app may see these errors unless your write your app to prevent them, or to capture the errors and present a friendly error message to your users instead. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## C Runtime errors | Error | Message | |--|--| -| [C Runtime Error R6002](../../error-messages/tool-errors/c-runtime-error-r6002.md) | floating-point support not loaded | -| [C Runtime Error R6008](../../error-messages/tool-errors/c-runtime-error-r6008.md) | not enough space for arguments | -| [C Runtime Error R6009](../../error-messages/tool-errors/c-runtime-error-r6009.md) | not enough space for environment | -| [C Runtime Error R6016](../../error-messages/tool-errors/c-runtime-error-r6016.md) | not enough space for thread data | -| [C Runtime Error R6017](../../error-messages/tool-errors/c-runtime-error-r6017.md) | unexpected multithread lock error | -| [C Runtime Error R6018](../../error-messages/tool-errors/c-runtime-error-r6018.md) | unexpected heap error | -| [C Runtime Error R6019](../../error-messages/tool-errors/c-runtime-error-r6019.md) | unable to open console device | -| [C Runtime Error R6024](../../error-messages/tool-errors/c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | -| [C Runtime Error R6025](../../error-messages/tool-errors/c-runtime-error-r6025.md) | pure virtual function call | -| [C Runtime Error R6028](../../error-messages/tool-errors/c-runtime-error-r6028.md) | unable to initialize heap | -| [C Runtime Error R6030](../../error-messages/tool-errors/c-runtime-error-r6030.md) | CRT not initialized | -| [C Runtime Error R6031](../../error-messages/tool-errors/c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | -| [C Runtime Error R6032](../../error-messages/tool-errors/c-runtime-error-r6032.md) | Not enough space for locale information | -| [C Runtime Error R6033](../../error-messages/tool-errors/c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | -| [C Runtime Error R6035](../../error-messages/tool-errors/c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | +| [C Runtime Error R6002](c-runtime-error-r6002.md) | floating-point support not loaded | +| [C Runtime Error R6008](c-runtime-error-r6008.md) | not enough space for arguments | +| [C Runtime Error R6009](c-runtime-error-r6009.md) | not enough space for environment | +| [C Runtime Error R6016](c-runtime-error-r6016.md) | not enough space for thread data | +| [C Runtime Error R6017](c-runtime-error-r6017.md) | unexpected multithread lock error | +| [C Runtime Error R6018](c-runtime-error-r6018.md) | unexpected heap error | +| [C Runtime Error R6019](c-runtime-error-r6019.md) | unable to open console device | +| [C Runtime Error R6024](c-runtime-error-r6024.md) | not enough space for _onexit/atexit table | +| [C Runtime Error R6025](c-runtime-error-r6025.md) | pure virtual function call | +| [C Runtime Error R6028](c-runtime-error-r6028.md) | unable to initialize heap | +| [C Runtime Error R6030](c-runtime-error-r6030.md) | CRT not initialized | +| [C Runtime Error R6031](c-runtime-error-r6031.md) | Attempt to initialize the CRT more than once. This indicates a bug in your application. | +| [C Runtime Error R6032](c-runtime-error-r6032.md) | Not enough space for locale information | +| [C Runtime Error R6033](c-runtime-error-r6033.md) | Attempt to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain. | +| [C Runtime Error R6035](c-runtime-error-r6035.md) | A module in this application is initializing the module's global security cookie while a function relying on that security cookie is active. Call __security_init_cookie earlier. | ## See also From 580bc08b839a30eea1fada8403128644c42e7b97 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:02:52 +0800 Subject: [PATCH 801/981] Update metadata in "C Runtime errors (Rxxxx)" --- .../tool-errors/c-runtime-errors-r6002-through-r6035.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md index 1199507c3b..cbac956974 100644 --- a/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md +++ b/docs/error-messages/tool-errors/c-runtime-errors-r6002-through-r6035.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: C Runtime errors (Rxxxx)" title: "C Runtime errors" -ms.date: "04/16/2019" +description: "Learn more about: C Runtime errors (Rxxxx)" +ms.date: 04/16/2019 f1_keywords: ["c.errors", "R6000", "R6003", "R6010", "R6022", "R6023", "R6034"] -ms.assetid: 78019050-9a30-4b61-8250-a5702e0e2393 --- # C Runtime errors (Rxxxx) From e6f7b5c2f8f9ccb24884ec9c2917aee8112be4b8 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:09:57 +0800 Subject: [PATCH 802/981] Add blockquotes for error messages in range [C2061, C2080] --- docs/error-messages/compiler-errors-1/compiler-error-c2061.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2062.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2063.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2064.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2066.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2067.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2069.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2070.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2071.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2072.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2074.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2075.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2077.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2078.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2079.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md index 2af16ddaee..da3e1dc683 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md @@ -8,7 +8,7 @@ ms.assetid: b0e61c0c-a205-4820-b9aa-301d6c6fe6eb --- # Compiler Error C2061 -syntax error : identifier 'identifier' +> syntax error : identifier 'identifier' The compiler found an identifier where it wasn't expected. Make sure that `identifier` is declared before you use it. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md index 331da15078..4df2f57d7b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md @@ -8,7 +8,7 @@ ms.assetid: 6cc98353-2ddf-43ab-88a2-9cc91cdd6033 --- # Compiler Error C2062 -type 'type' unexpected +> type 'type' unexpected The compiler did not expect a type name. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md index 6bb9d67d1c..c265fc916c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md @@ -8,7 +8,7 @@ ms.assetid: 0a90c18f-4029-416a-9128-e8713b53e6f1 --- # Compiler Error C2063 -'identifier' : not a function +> 'identifier' : not a function The identifier is used as a function but not declared as a function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md index 6d92b1ba30..e69a7d0431 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md @@ -8,7 +8,7 @@ ms.assetid: 6cda05da-f437-4f50-9813-ae69538713a3 --- # Compiler Error C2064 -term does not evaluate to a function taking N arguments +> term does not evaluate to a function taking N arguments A call is made to a function through an expression. The expression does not evaluate to a pointer to a function that takes the specified number of arguments. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md index 8a0b42ca72..b9256caf49 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md @@ -8,6 +8,6 @@ ms.assetid: f1efc63f-948a-410b-bf6e-ba250d52cd38 --- # Compiler Error C2066 -cast to function type is illegal +> cast to function type is illegal In ANSI C, it is not legal to cast between a function pointer and a data pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md index e5e1e4ab58..29b4d9a264 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md @@ -8,6 +8,6 @@ ms.assetid: 97cab473-a713-489f-8536-ca2cc5792b8c --- # Compiler Error C2067 -cast to array type is illegal +> cast to array type is illegal An object was cast to an array type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md index f0170cb6ac..51e78b2e09 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md @@ -8,6 +8,6 @@ ms.assetid: 0c87445a-9eed-4917-a733-f08217f2d64d --- # Compiler Error C2069 -cast of 'void' term to non-'void' +> cast of 'void' term to non-'void' Type **`void`** cannot be cast to any other type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md index 76cac0d4b8..81c88a5552 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md @@ -8,7 +8,7 @@ ms.assetid: 4c8dea63-1227-4aba-be26-2462537f86fb --- # Compiler Error C2070 -'type': illegal sizeof operand +> 'type': illegal sizeof operand The [sizeof](../../cpp/sizeof-operator.md) operator requires an expression or type name. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md index 1bfd7926e5..c1465d1e59 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md @@ -8,7 +8,7 @@ ms.assetid: f8c09255-a5c4-47e3-8089-3d875ae43cc5 --- # Compiler Error C2071 -'identifier' : illegal storage class +> 'identifier' : illegal storage class `identifier` was declared with an invalid [storage class](../../c-language/c-storage-classes.md). This error can be caused when more than one storage class is specified for an identifier, or when the definition is incompatible with the storage class declaration. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md index 027a73b4a2..4aa6477470 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md @@ -8,6 +8,6 @@ ms.assetid: 0b19a847-61dd-4bc3-b54d-108a637a4424 --- # Compiler Error C2072 -'identifier' : initialization of a function +> 'identifier' : initialization of a function A function initializer was specified incorrectly. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md index 0e2f7f6326..214adb052a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md @@ -8,6 +8,6 @@ ms.assetid: 1abe5934-61db-4374-8c48-1fa7281317f4 --- # Compiler Error C2074 -'identifier' : 'class-key' initialization needs curly braces +> 'identifier' : 'class-key' initialization needs curly braces There were no curly braces around the specified class, structure, or union initializer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md index b83c31b4f7..9551f4a649 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md @@ -8,7 +8,7 @@ ms.assetid: 8b1865d2-540b-4117-b982-e7a58a0b6cf7 --- # Compiler Error C2075 -'identifier' : array initialization needs curly braces +> 'identifier' : array initialization needs curly braces There were no curly braces around the specified array initializer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md index 824efd91f1..f7b4168667 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md @@ -8,6 +8,6 @@ ms.assetid: f046f0e3-1987-477a-a0af-fe543a9f5fcb --- # Compiler Error C2077 -non-scalar field initializer 'identifier' +> non-scalar field initializer 'identifier' You tried to initialize a bit field with a nonscalar (struct, union, array, or class). Use an integer or floating-point value. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md index 6cc3e1e1fe..5d8aa70cdb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md @@ -8,7 +8,7 @@ ms.assetid: 9bead850-4123-46cf-a634-5c77ba974b2b --- # Compiler Error C2078 -too many initializers +> too many initializers The number of initializers exceeds the number of objects to be initialized. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md index c096d8ffb1..bf2561c7b0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md @@ -8,7 +8,7 @@ ms.assetid: ca58d6d5-eccd-40b7-ba14-c003223c5bc7 --- # Compiler Error C2079 -'identifier' uses undefined class/struct/union 'name' +> 'identifier' uses undefined class/struct/union 'name' The specified identifier is an undefined class, structure, or union. From 4db7a0b0c5f940ad40a1eb0ee1969929bf84e466 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:16:44 +0800 Subject: [PATCH 803/981] Add "Remarks" and "Example" headings for error references in range [C2061, C2080] --- docs/error-messages/compiler-errors-1/compiler-error-c2061.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2062.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2063.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2064.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2065.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2066.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2067.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2068.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2069.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2070.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2071.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2072.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2074.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2075.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2076.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2077.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2078.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2079.md | 4 ++++ 18 files changed, 54 insertions(+) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md index da3e1dc683..8d3996f1a3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md @@ -10,12 +10,16 @@ ms.assetid: b0e61c0c-a205-4820-b9aa-301d6c6fe6eb > syntax error : identifier 'identifier' +## Remarks + The compiler found an identifier where it wasn't expected. Make sure that `identifier` is declared before you use it. An initializer may be enclosed by parentheses. To avoid this problem, enclose the declarator in parentheses or make it a **`typedef`**. This error could also be caused when the compiler detects an expression as a class template argument; use [typename](../../cpp/typename.md) to tell the compiler it is a type, as shown in the following example: +## Examples + The following sample generates C2061: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md index 4df2f57d7b..1d85906eeb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md @@ -10,8 +10,12 @@ ms.assetid: 6cc98353-2ddf-43ab-88a2-9cc91cdd6033 > type 'type' unexpected +## Remarks + The compiler did not expect a type name. +## Example + The following sample generates C2062: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md index c265fc916c..8c84de598a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md @@ -10,8 +10,12 @@ ms.assetid: 0a90c18f-4029-416a-9128-e8713b53e6f1 > 'identifier' : not a function +## Remarks + The identifier is used as a function but not declared as a function. +## Example + The following sample generates C2063: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md index e69a7d0431..3b941557e7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md @@ -10,8 +10,12 @@ ms.assetid: 6cda05da-f437-4f50-9813-ae69538713a3 > term does not evaluate to a function taking N arguments +## Remarks + A call is made to a function through an expression. The expression does not evaluate to a pointer to a function that takes the specified number of arguments. +## Examples + In this example, the code attempts to call non-functions as functions. The following sample generates C2064: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2065.md b/docs/error-messages/compiler-errors-1/compiler-error-c2065.md index e18d500450..e510f2cd94 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2065.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2065.md @@ -10,6 +10,8 @@ ms.assetid: 78093376-acb7-45f5-9323-5ed7e0aab1dc > '*identifier*' : undeclared identifier +## Remarks + The compiler can't find the declaration for an identifier. There are many possible causes for this error. The most common causes of C2065 are that the identifier hasn't been declared, the identifier is misspelled, the header where the identifier is declared isn't included in the file, or the identifier is missing a scope qualifier, for example, `cout` instead of `std::cout`. For more information on declarations in C++, see [Declarations and Definitions (C++)](../../cpp/declarations-and-definitions-cpp.md). Here are some common issues and solutions in greater detail. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md index b9256caf49..4679396498 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md @@ -10,4 +10,6 @@ ms.assetid: f1efc63f-948a-410b-bf6e-ba250d52cd38 > cast to function type is illegal +## Remarks + In ANSI C, it is not legal to cast between a function pointer and a data pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md index 29b4d9a264..77cadeb055 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md @@ -10,4 +10,6 @@ ms.assetid: 97cab473-a713-489f-8536-ca2cc5792b8c > cast to array type is illegal +## Remarks + An object was cast to an array type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2068.md b/docs/error-messages/compiler-errors-1/compiler-error-c2068.md index 71ed5cd042..f5d7793cbf 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2068.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2068.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2068"] > illegal use of overloaded function. Missing argument list? +## Remarks + The compiler detected the invalid use of an overloaded function with no arguments. +## Example + For example: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md index 51e78b2e09..2398c11a47 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md @@ -10,4 +10,6 @@ ms.assetid: 0c87445a-9eed-4917-a733-f08217f2d64d > cast of 'void' term to non-'void' +## Remarks + Type **`void`** cannot be cast to any other type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md index 81c88a5552..3f61df7ec5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md @@ -10,8 +10,12 @@ ms.assetid: 4c8dea63-1227-4aba-be26-2462537f86fb > 'type': illegal sizeof operand +## Remarks + The [sizeof](../../cpp/sizeof-operator.md) operator requires an expression or type name. +## Example + The following sample generates C2070: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md index c1465d1e59..3186928324 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md @@ -10,6 +10,8 @@ ms.assetid: f8c09255-a5c4-47e3-8089-3d875ae43cc5 > 'identifier' : illegal storage class +## Remarks + `identifier` was declared with an invalid [storage class](../../c-language/c-storage-classes.md). This error can be caused when more than one storage class is specified for an identifier, or when the definition is incompatible with the storage class declaration. To fix this issue, understand the intended storage class of the identifier—for example, **`static`** or **`extern`**—and correct the declaration to match. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md index 4aa6477470..a0da9ce18a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md @@ -10,4 +10,6 @@ ms.assetid: 0b19a847-61dd-4bc3-b54d-108a637a4424 > 'identifier' : initialization of a function +## Remarks + A function initializer was specified incorrectly. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md index 214adb052a..145db7511d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md @@ -10,4 +10,6 @@ ms.assetid: 1abe5934-61db-4374-8c48-1fa7281317f4 > 'identifier' : 'class-key' initialization needs curly braces +## Remarks + There were no curly braces around the specified class, structure, or union initializer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md index 9551f4a649..89725acb6a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md @@ -10,8 +10,12 @@ ms.assetid: 8b1865d2-540b-4117-b982-e7a58a0b6cf7 > 'identifier' : array initialization needs curly braces +## Remarks + There were no curly braces around the specified array initializer. +## Example + The following sample generates C2075: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2076.md b/docs/error-messages/compiler-errors-1/compiler-error-c2076.md index bd3b76f5c7..c785a44d74 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2076.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2076.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C2076"] > a brace-enclosed initializer list cannot be used in a new-expression whose type contains 'auto/decltype(auto)' +## Remarks + If an **`auto`** type-specifier appears in the specifier sequence of a new type-identifier or the type-identifier of a **`new`** expression, the expression must contain an initializer of the form `( assignment-expression )`. The compiler deduces the type-identifier from the `assignment-expression` in the initializer. For example, ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md index f7b4168667..cda32c1a01 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md @@ -10,4 +10,6 @@ ms.assetid: f046f0e3-1987-477a-a0af-fe543a9f5fcb > non-scalar field initializer 'identifier' +## Remarks + You tried to initialize a bit field with a nonscalar (struct, union, array, or class). Use an integer or floating-point value. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md index 5d8aa70cdb..570f8b72b1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md @@ -10,10 +10,14 @@ ms.assetid: 9bead850-4123-46cf-a634-5c77ba974b2b > too many initializers +## Remarks + The number of initializers exceeds the number of objects to be initialized. The compiler can deduce the correct assignment of initializers to objects and inner objects when inner braces are elided from the initializer list. Complete bracing also eliminates ambiguity and results in correct assignment. Partial bracing can cause C2078 because of ambiguity in the assignment of initializers to objects. +## Example + The following sample generates C2078 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md index bf2561c7b0..d9b681d38c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md @@ -10,10 +10,14 @@ ms.assetid: ca58d6d5-eccd-40b7-ba14-c003223c5bc7 > 'identifier' uses undefined class/struct/union 'name' +## Remarks + The specified identifier is an undefined class, structure, or union. This error can be caused by initializing an anonymous union. +## Examples + The following sample generates C2079: ```cpp From 30a737903a55bf2e55ea12fedc0ff349ff542102 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:18:28 +0800 Subject: [PATCH 804/981] Replace term "sample" with "example" for error references in range [C2061, C2080] --- .../compiler-errors-1/compiler-error-c2061.md | 2 +- .../compiler-errors-1/compiler-error-c2062.md | 2 +- .../compiler-errors-1/compiler-error-c2063.md | 2 +- .../compiler-errors-1/compiler-error-c2064.md | 6 +++--- .../compiler-errors-1/compiler-error-c2070.md | 2 +- .../compiler-errors-1/compiler-error-c2071.md | 4 ++-- .../compiler-errors-1/compiler-error-c2073.md | 2 +- .../compiler-errors-1/compiler-error-c2075.md | 2 +- .../compiler-errors-1/compiler-error-c2078.md | 2 +- .../compiler-errors-1/compiler-error-c2079.md | 2 +- .../compiler-errors-1/compiler-error-c2080.md | 2 +- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md index 8d3996f1a3..5b3a75516d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md @@ -20,7 +20,7 @@ This error could also be caused when the compiler detects an expression as a cla ## Examples -The following sample generates C2061: +The following example generates C2061: ```cpp // C2061.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md index 1d85906eeb..513b160064 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md @@ -16,7 +16,7 @@ The compiler did not expect a type name. ## Example -The following sample generates C2062: +The following example generates C2062: ```cpp // C2062.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md index 8c84de598a..bd327ccf21 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md @@ -16,7 +16,7 @@ The identifier is used as a function but not declared as a function. ## Example -The following sample generates C2063: +The following example generates C2063: ```c // C2063.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md index 3b941557e7..df6f3a3149 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md @@ -16,7 +16,7 @@ A call is made to a function through an expression. The expression does not eval ## Examples -In this example, the code attempts to call non-functions as functions. The following sample generates C2064: +In this example, the code attempts to call non-functions as functions. The following example generates C2064: ```cpp // C2064.cpp @@ -28,7 +28,7 @@ void func() { } ``` -You must call pointers to non-static member functions from the context of an object instance. The following sample generates C2064, and shows how to fix it: +You must call pointers to non-static member functions from the context of an object instance. The following example generates C2064, and shows how to fix it: ```cpp // C2064b.cpp @@ -47,7 +47,7 @@ int main() { } ``` -Within a class, member function pointers must also indicate the calling object context. The following sample generates C2064 and shows how to fix it: +Within a class, member function pointers must also indicate the calling object context. The following example generates C2064 and shows how to fix it: ```cpp // C2064d.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md index 3f61df7ec5..c681538d43 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md @@ -16,7 +16,7 @@ The [sizeof](../../cpp/sizeof-operator.md) operator requires an expression or ty ## Example -The following sample generates C2070: +The following example generates C2070: ```cpp // C2070.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md index 3186928324..d7cf7d7a45 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md @@ -18,7 +18,7 @@ To fix this issue, understand the intended storage class of the identifier—for ## Examples -The following sample generates C2071. +The following example generates C2071. ```cpp // C2071.cpp @@ -31,7 +31,7 @@ struct D { }; ``` -The following sample generates C2071. +The following example generates C2071. ```cpp // C2071_b.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2073.md b/docs/error-messages/compiler-errors-1/compiler-error-c2073.md index c790ea0ffb..2e9414742b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2073.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2073.md @@ -18,7 +18,7 @@ This compiler error is obsolete in Visual Studio 2022. ## Example -The following sample generates C2073. Source file `C2073.cpp`: +The following example generates C2073. Source file `C2073.cpp`: ```cpp // C2073.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md index 89725acb6a..c8bb463e1f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md @@ -16,7 +16,7 @@ There were no curly braces around the specified array initializer. ## Example -The following sample generates C2075: +The following example generates C2075: ```c // C2075.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md index 570f8b72b1..70c56eb65b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md @@ -18,7 +18,7 @@ The compiler can deduce the correct assignment of initializers to objects and in ## Example -The following sample generates C2078 and shows how to fix it: +The following example generates C2078 and shows how to fix it: ```cpp // C2078.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md index d9b681d38c..b440694afd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md @@ -18,7 +18,7 @@ This error can be caused by initializing an anonymous union. ## Examples -The following sample generates C2079: +The following example generates C2079: ```cpp // C2079.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2080.md b/docs/error-messages/compiler-errors-1/compiler-error-c2080.md index 26fa529539..49d72787bd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2080.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2080.md @@ -15,7 +15,7 @@ The compiler can only deduce the type for `auto` or `decltype(auto)` if the decl ## Example -The following sample shows some declarations that cause C2080: +The following example shows some declarations that cause C2080: ```cpp auto x1(1, 2); // C2080 From 53915d54bcd2010de2df5f2f634fb6f3c8ce01d1 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 12 Jul 2025 23:22:41 +0800 Subject: [PATCH 805/981] Update metadata for error references in range [C2061, C2080] --- .../error-messages/compiler-errors-1/compiler-error-c2061.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2062.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2063.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2064.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2065.md | 3 +-- .../error-messages/compiler-errors-1/compiler-error-c2066.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2067.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2068.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2069.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2070.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2071.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2072.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2073.md | 3 +-- .../error-messages/compiler-errors-1/compiler-error-c2074.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2075.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2076.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2077.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2078.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2079.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2080.md | 2 +- 20 files changed, 35 insertions(+), 52 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md index 5b3a75516d..83394157a6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2061.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2061.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2061" title: "Compiler Error C2061" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2061" +ms.date: 11/04/2016 f1_keywords: ["C2061"] helpviewer_keywords: ["C2061"] -ms.assetid: b0e61c0c-a205-4820-b9aa-301d6c6fe6eb --- # Compiler Error C2061 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md index 513b160064..b7cd52a817 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2062.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2062.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2062" title: "Compiler Error C2062" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2062" +ms.date: 11/04/2016 f1_keywords: ["C2062"] helpviewer_keywords: ["C2062"] -ms.assetid: 6cc98353-2ddf-43ab-88a2-9cc91cdd6033 --- # Compiler Error C2062 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md index bd327ccf21..474aaa30fc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2063.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2063.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2063" title: "Compiler Error C2063" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2063" +ms.date: 11/04/2016 f1_keywords: ["C2063"] helpviewer_keywords: ["C2063"] -ms.assetid: 0a90c18f-4029-416a-9128-e8713b53e6f1 --- # Compiler Error C2063 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md index df6f3a3149..2714aee760 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2064.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2064.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2064" title: "Compiler Error C2064" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2064" +ms.date: 11/04/2016 f1_keywords: ["C2064"] helpviewer_keywords: ["C2064"] -ms.assetid: 6cda05da-f437-4f50-9813-ae69538713a3 --- # Compiler Error C2064 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2065.md b/docs/error-messages/compiler-errors-1/compiler-error-c2065.md index e510f2cd94..9081a6fe97 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2065.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2065.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2065" title: "Compiler Error C2065" +description: "Learn more about: Compiler Error C2065" ms.date: 06/29/2022 f1_keywords: ["C2065"] helpviewer_keywords: ["C2065"] -ms.assetid: 78093376-acb7-45f5-9323-5ed7e0aab1dc --- # Compiler Error C2065 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md index 4679396498..a55f64b22f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2066.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2066.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2066" title: "Compiler Error C2066" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2066" +ms.date: 11/04/2016 f1_keywords: ["C2066"] helpviewer_keywords: ["C2066"] -ms.assetid: f1efc63f-948a-410b-bf6e-ba250d52cd38 --- # Compiler Error C2066 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md index 77cadeb055..892535c056 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2067.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2067.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2067" title: "Compiler Error C2067" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2067" +ms.date: 11/04/2016 f1_keywords: ["C2067"] helpviewer_keywords: ["C2067"] -ms.assetid: 97cab473-a713-489f-8536-ca2cc5792b8c --- # Compiler Error C2067 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2068.md b/docs/error-messages/compiler-errors-1/compiler-error-c2068.md index f5d7793cbf..9f31bb8a1d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2068.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2068.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2068" title: "Compiler Error C2068" +description: "Learn more about: Compiler Error C2068" ms.date: 08/18/2022 f1_keywords: ["C2068"] helpviewer_keywords: ["C2068"] diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md index 2398c11a47..ba2b9bea9a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2069.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2069.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2069" title: "Compiler Error C2069" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2069" +ms.date: 11/04/2016 f1_keywords: ["C2069"] helpviewer_keywords: ["C2069"] -ms.assetid: 0c87445a-9eed-4917-a733-f08217f2d64d --- # Compiler Error C2069 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md index c681538d43..2d2828762f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2070.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2070.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2070" title: "Compiler Error C2070" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2070" +ms.date: 11/04/2016 f1_keywords: ["C2070"] helpviewer_keywords: ["C2070"] -ms.assetid: 4c8dea63-1227-4aba-be26-2462537f86fb --- # Compiler Error C2070 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md index d7cf7d7a45..40faec7cb7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2071.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2071.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2071" title: "Compiler Error C2071" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2071" +ms.date: 11/04/2016 f1_keywords: ["C2071"] helpviewer_keywords: ["C2071"] -ms.assetid: f8c09255-a5c4-47e3-8089-3d875ae43cc5 --- # Compiler Error C2071 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md index a0da9ce18a..479dfaf431 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2072.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2072.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2072" title: "Compiler Error C2072" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2072" +ms.date: 11/04/2016 f1_keywords: ["C2072"] helpviewer_keywords: ["C2072"] -ms.assetid: 0b19a847-61dd-4bc3-b54d-108a637a4424 --- # Compiler Error C2072 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2073.md b/docs/error-messages/compiler-errors-1/compiler-error-c2073.md index 2e9414742b..3db2c03db5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2073.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2073.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2073" title: "Compiler Error C2073" +description: "Learn more about: Compiler Error C2073" ms.date: 06/29/2022 f1_keywords: ["C2073"] helpviewer_keywords: ["C2073"] -ms.assetid: 57908234-be7a-4ce9-b0a7-8b1ad621865e --- # Compiler Error C2073 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md index 145db7511d..8221fccd28 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2074.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2074.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2074" title: "Compiler Error C2074" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2074" +ms.date: 11/04/2016 f1_keywords: ["C2074"] helpviewer_keywords: ["C2074"] -ms.assetid: 1abe5934-61db-4374-8c48-1fa7281317f4 --- # Compiler Error C2074 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md index c8bb463e1f..8e47b3cd00 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2075.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2075.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2075" title: "Compiler Error C2075" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2075" +ms.date: 11/04/2016 f1_keywords: ["C2075"] helpviewer_keywords: ["C2075"] -ms.assetid: 8b1865d2-540b-4117-b982-e7a58a0b6cf7 --- # Compiler Error C2075 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2076.md b/docs/error-messages/compiler-errors-1/compiler-error-c2076.md index c785a44d74..e20e53b4fa 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2076.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2076.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2076" title: "Compiler Error C2076" +description: "Learn more about: Compiler Error C2076" ms.date: 08/18/2022 f1_keywords: ["C2076"] helpviewer_keywords: ["C2076"] diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md index cda32c1a01..720cf2cbf3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2077.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2077.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2077" title: "Compiler Error C2077" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2077" +ms.date: 11/04/2016 f1_keywords: ["C2077"] helpviewer_keywords: ["C2077"] -ms.assetid: f046f0e3-1987-477a-a0af-fe543a9f5fcb --- # Compiler Error C2077 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md index 70c56eb65b..f2c6dfa626 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2078.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2078.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2078" title: "Compiler Error C2078" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2078" +ms.date: 11/04/2016 f1_keywords: ["C2078"] helpviewer_keywords: ["C2078"] -ms.assetid: 9bead850-4123-46cf-a634-5c77ba974b2b --- # Compiler Error C2078 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md index b440694afd..b4b8022579 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2079.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2079.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2079" title: "Compiler Error C2079" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2079" +ms.date: 11/04/2016 f1_keywords: ["C2079"] helpviewer_keywords: ["C2079"] -ms.assetid: ca58d6d5-eccd-40b7-ba14-c003223c5bc7 --- # Compiler Error C2079 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2080.md b/docs/error-messages/compiler-errors-1/compiler-error-c2080.md index 49d72787bd..43be41f7b5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2080.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2080.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2080" title: "Compiler Error C2080" +description: "Learn more about: Compiler Error C2080" ms.date: 08/18/2022 f1_keywords: ["C2080"] helpviewer_keywords: ["C2080"] From b4163d3ba8b59cba190674dfb6130895fea59953 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 18:27:28 +0800 Subject: [PATCH 806/981] Standardize capitalization of "See also" sections --- docs/assembler/masm/mmword.md | 2 +- docs/assembler/masm/xmmword.md | 2 +- docs/build/reference/profile-performance-tools-profiler.md | 2 +- docs/code-quality/c28112.md | 2 +- docs/code-quality/c6504.md | 2 +- .../using-sal-annotations-to-reduce-c-cpp-code-defects.md | 2 +- docs/cpp/import-export-module.md | 2 +- docs/ide/adding-a-property-visual-cpp.md | 2 +- docs/ide/live-share-cpp.md | 2 +- docs/ide/read-and-understand-code-cpp.md | 2 +- docs/ide/writing-and-refactoring-code-cpp.md | 2 +- .../set-up-fips-compliant-secure-remote-linux-development.md | 2 +- .../add-interface-definition-library-mfc-property-wizard.md | 2 +- docs/windows/latest-supported-vc-redist.md | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/assembler/masm/mmword.md b/docs/assembler/masm/mmword.md index 563ae8e444..a4ced88dbb 100644 --- a/docs/assembler/masm/mmword.md +++ b/docs/assembler/masm/mmword.md @@ -32,6 +32,6 @@ While both instructions work on 64-bit operands, **QWORD** is the type for 64-bi movq mm0, mmword ptr [ebx] ``` -## See Also +## See also [MASM BNF Grammar](masm-bnf-grammar.md) diff --git a/docs/assembler/masm/xmmword.md b/docs/assembler/masm/xmmword.md index 3722fd23f4..1101076921 100644 --- a/docs/assembler/masm/xmmword.md +++ b/docs/assembler/masm/xmmword.md @@ -24,6 +24,6 @@ Used for 128-bit multimedia operands with MMX and SSE (XMM) instructions. movdqa xmm0, xmmword ptr [ebx] ``` -## See Also +## See also [MASM BNF Grammar](masm-bnf-grammar.md) diff --git a/docs/build/reference/profile-performance-tools-profiler.md b/docs/build/reference/profile-performance-tools-profiler.md index d1273f084d..a2b50606bc 100644 --- a/docs/build/reference/profile-performance-tools-profiler.md +++ b/docs/build/reference/profile-performance-tools-profiler.md @@ -57,7 +57,7 @@ Because a **CMake** project doesn't have the usual **Property Pages** support, t 1. Rebuild your solution. -## See Also +## See also [MSVC linker reference](linking.md)\ [MSVC linker options](linker-options.md) diff --git a/docs/code-quality/c28112.md b/docs/code-quality/c28112.md index 530ab51bc0..61e0a5588e 100644 --- a/docs/code-quality/c28112.md +++ b/docs/code-quality/c28112.md @@ -35,7 +35,7 @@ InterlockedDecrement(&inter_var); InterlockedIncrement(&inter_var); ``` -## See Also +## See also [InterlockedIncrement function (wdm.h)](/windows-hardware/drivers/ddi/wdm/nf-wdm-interlockedincrement)\ [InterlockedDecrement function (wdm.h)](/windows-hardware/drivers/ddi/wdm/nf-wdm-interlockeddecrement) diff --git a/docs/code-quality/c6504.md b/docs/code-quality/c6504.md index e77e99df28..1fc3a179ee 100644 --- a/docs/code-quality/c6504.md +++ b/docs/code-quality/c6504.md @@ -60,6 +60,6 @@ void g(Point& pt) } ``` -## See Also +## See also [Annotation Properties](using-sal-annotations-to-reduce-c-cpp-code-defects.md) diff --git a/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md b/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md index 381e526ebc..af73328a59 100644 --- a/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md +++ b/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md @@ -47,6 +47,6 @@ The articles in this section of the documentation discuss aspects of SAL, provid Provides examples that show how to use SAL annotations. Also explains common pitfalls. -## See Also +## See also [SAL 2.0 Annotations for Windows Drivers](/windows-hardware/drivers/devtest/sal-2-annotations-for-windows-drivers) diff --git a/docs/cpp/import-export-module.md b/docs/cpp/import-export-module.md index ae7d37a4fe..498af52c78 100644 --- a/docs/cpp/import-export-module.md +++ b/docs/cpp/import-export-module.md @@ -109,7 +109,7 @@ import // Always an identifier, never a keyword **End Microsoft Specific** -## See Also +## See also [Overview of modules in C++](modules-cpp.md)\ [Import the C++ standard library using modules](tutorial-import-stl-named-module.md) \ No newline at end of file diff --git a/docs/ide/adding-a-property-visual-cpp.md b/docs/ide/adding-a-property-visual-cpp.md index 9feff5ef6e..8fe7391a5c 100644 --- a/docs/ide/adding-a-property-visual-cpp.md +++ b/docs/ide/adding-a-property-visual-cpp.md @@ -53,7 +53,7 @@ The following section describes the UI that you'll use to add a property: For ATL interfaces **Put function** makes the property writable; that is, it creates the `Put` method for setting, or "putting," this property of the object. Select **Get**, **Put**, or both. -## See Also +## See also [Add IDL Property](add-interface-definition-library-property-wizard.md) diff --git a/docs/ide/live-share-cpp.md b/docs/ide/live-share-cpp.md index 4a5fecdd50..9099be1d6c 100644 --- a/docs/ide/live-share-cpp.md +++ b/docs/ide/live-share-cpp.md @@ -44,7 +44,7 @@ To end a session, select **End Collaboration Session** from the **Sharing** drop For more information about **Live Share** in Visual Studio, see [What is Visual Studio Live Share?](/visualstudio/liveshare/). For more information about Live Share in Visual Studio Code, see [ Live Share](https://marketplace.visualstudio.com/items?itemName=ms-vsliveshare.vsliveshare). -## See Also +## See also [Edit and refactor code (C++)](writing-and-refactoring-code-cpp.md)
[Navigate your C++ code base in Visual Studio](navigate-code-cpp.md)
diff --git a/docs/ide/read-and-understand-code-cpp.md b/docs/ide/read-and-understand-code-cpp.md index 119efc1076..ff4d5bdb93 100644 --- a/docs/ide/read-and-understand-code-cpp.md +++ b/docs/ide/read-and-understand-code-cpp.md @@ -106,7 +106,7 @@ Right click on any function call and view a recursive list of all the functions ![Screenshot of the Call Hierarchy window which shows calls to and from Floating_to_wstring(). For example, to_wstring() calls Floating_to_wstring().](../ide/media/vs2015_cpp_call_hierarchy.png) -## See Also +## See also [Edit and refactor code (C++)](writing-and-refactoring-code-cpp.md)
[Navigate your C++ code base in Visual Studio](navigate-code-cpp.md)
diff --git a/docs/ide/writing-and-refactoring-code-cpp.md b/docs/ide/writing-and-refactoring-code-cpp.md index 7c3edfb3da..96428ae971 100644 --- a/docs/ide/writing-and-refactoring-code-cpp.md +++ b/docs/ide/writing-and-refactoring-code-cpp.md @@ -178,7 +178,7 @@ Options for enabling and configuring C++-specific editing features are located u Experimental features, which may or may not be included in a future version of Visual Studio, are found in the [Text Editor C++ Experimental](/visualstudio/ide/reference/options-text-editor-c-cpp-experimental) dialog. In Visual Studio 2017 and later you can enable **Predictive IntelliSense** in this dialog. -## See Also +## See also [Read and understand C++ code](read-and-understand-code-cpp.md)
[Navigate your C++ code base in Visual Studio](navigate-code-cpp.md)
diff --git a/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md b/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md index b358186376..180ceb8cd6 100644 --- a/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md +++ b/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md @@ -160,7 +160,7 @@ Microsoft blog post on [Why We're Not Recommending "FIPS mode" Anymore](https:// [SSH Server Configuration](https://www.ssh.com/ssh/sshd_config) -## See Also +## See also [Configure a Linux project](configure-a-linux-project.md)\ [Configure a Linux CMake project](cmake-linux-project.md)\ diff --git a/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md b/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md index 5ac27990ea..2c86901f62 100644 --- a/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md +++ b/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md @@ -167,7 +167,7 @@ If you're adding a property to an MFC dispinterface, you can choose one of the f |`ReadyState`|Returns or sets the control's `ReadyState` property.
A control can be uninitialized, initialized, loading, interactive, or complete.
For more information, see [READYSTATE](/previous-versions/aa768362\(v=vs.85\)) in the *Internet SDK*.| |`Text`|Returns or sets the text contained in a control.
Has no **Member variable** implementation type.| -## See Also +## See also [Add Property](../../ide/adding-a-property-visual-cpp.md) diff --git a/docs/windows/latest-supported-vc-redist.md b/docs/windows/latest-supported-vc-redist.md index fdcd864604..974db31485 100644 --- a/docs/windows/latest-supported-vc-redist.md +++ b/docs/windows/latest-supported-vc-redist.md @@ -117,7 +117,7 @@ Download Redistributable files for other languages and architectures from: - Redistributable files for X86, X64, and IA64 architectures are available from [Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package MFC Security Update](https://www.microsoft.com/download/details.aspx?id=26347). -## See Also +## See also - [C++ binary compatibility between Visual Studio versions](../porting/binary-compat-2015-2017.md) - [How to audit Visual C++ Runtime version usage](redist-version-auditing.md) From 3de4bf0a5d36388304dddcc49afe56378b84310f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 18:30:02 +0800 Subject: [PATCH 807/981] Update metadata in 10 topics --- docs/assembler/masm/mmword.md | 5 ++--- docs/assembler/masm/xmmword.md | 5 ++--- docs/build/reference/profile-performance-tools-profiler.md | 2 +- docs/code-quality/c6504.md | 3 +-- .../using-sal-annotations-to-reduce-c-cpp-code-defects.md | 3 +-- docs/cpp/import-export-module.md | 2 +- docs/ide/adding-a-property-visual-cpp.md | 2 +- docs/ide/live-share-cpp.md | 2 +- docs/ide/writing-and-refactoring-code-cpp.md | 2 +- .../add-interface-definition-library-mfc-property-wizard.md | 4 ++-- 10 files changed, 13 insertions(+), 17 deletions(-) diff --git a/docs/assembler/masm/mmword.md b/docs/assembler/masm/mmword.md index a4ced88dbb..98ca862949 100644 --- a/docs/assembler/masm/mmword.md +++ b/docs/assembler/masm/mmword.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: MMWORD" title: "MMWORD" -ms.date: "12/17/2019" +description: "Learn more about: MMWORD" +ms.date: 12/17/2019 f1_keywords: ["MMWORD"] helpviewer_keywords: ["MMWORD directive"] -ms.assetid: b4c5a104-9078-4fb4-afc3-d1e63abe562a --- # MMWORD diff --git a/docs/assembler/masm/xmmword.md b/docs/assembler/masm/xmmword.md index 1101076921..9e4ef7c064 100644 --- a/docs/assembler/masm/xmmword.md +++ b/docs/assembler/masm/xmmword.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: XMMWORD" title: "XMMWORD" -ms.date: "12/17/2019" +description: "Learn more about: XMMWORD" +ms.date: 12/17/2019 f1_keywords: ["XMMWORD"] helpviewer_keywords: ["XMMWORD directive"] -ms.assetid: 18026d32-5cab-403e-ad7e-382fb41aa9b8 --- # XMMWORD diff --git a/docs/build/reference/profile-performance-tools-profiler.md b/docs/build/reference/profile-performance-tools-profiler.md index a2b50606bc..bff93bcfd7 100644 --- a/docs/build/reference/profile-performance-tools-profiler.md +++ b/docs/build/reference/profile-performance-tools-profiler.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: /PROFILE (Performance Tools Profiler)" title: "/PROFILE (Performance Tools Profiler)" +description: "Learn more about: /PROFILE (Performance Tools Profiler)" ms.date: 10/13/2021 f1_keywords: ["VC.Project.VCLinkerTool.Profile"] helpviewer_keywords: ["-PROFILE linker option", "/PROFILE linker option"] diff --git a/docs/code-quality/c6504.md b/docs/code-quality/c6504.md index 1fc3a179ee..d7683b709d 100644 --- a/docs/code-quality/c6504.md +++ b/docs/code-quality/c6504.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Warning C6504" title: Warning C6504 +description: "Learn more about: Warning C6504" ms.date: 10/03/2022 f1_keywords: ["C6504", "NULL_ON_NON_POINTER", "__WARNING_NULL_ON_NON_POINTER"] helpviewer_keywords: ["C6504"] -ms.assetid: 6baeed46-e73d-4974-af16-7487c55b3473 --- # Warning C6504 diff --git a/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md b/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md index af73328a59..3426d695a2 100644 --- a/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md +++ b/docs/code-quality/using-sal-annotations-to-reduce-c-cpp-code-defects.md @@ -1,13 +1,12 @@ --- -description: "Learn more about: Using SAL Annotations to Reduce C/C++ Code Defects" title: Using SAL Annotations to Reduce C/C++ Code Defects +description: "Learn more about: Using SAL Annotations to Reduce C/C++ Code Defects" ms.date: 11/04/2016 ms.topic: "concept-article" helpviewer_keywords: - "annotations" - "SAL annotations" - "code analysis, annotation" -ms.assetid: a16e47d0-6f3e-4ed6-8883-459b2874e9a4 --- # Using SAL Annotations to Reduce C/C++ Code Defects diff --git a/docs/cpp/import-export-module.md b/docs/cpp/import-export-module.md index 498af52c78..360717d20f 100644 --- a/docs/cpp/import-export-module.md +++ b/docs/cpp/import-export-module.md @@ -1,9 +1,9 @@ --- title: "module, import, export" +description: Use import and export declarations to access and to publish types and functions defined in the specified module. ms.date: 02/13/2025 f1_keywords: ["module_cpp", "import_cpp", "export_cpp"] helpviewer_keywords: ["modules [C++]", "modules [C++], import", "modules [C++], export"] -description: Use import and export declarations to access and to publish types and functions defined in the specified module. --- # `module`, `import`, `export` diff --git a/docs/ide/adding-a-property-visual-cpp.md b/docs/ide/adding-a-property-visual-cpp.md index 8fe7391a5c..4ec27fc8d6 100644 --- a/docs/ide/adding-a-property-visual-cpp.md +++ b/docs/ide/adding-a-property-visual-cpp.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Add a property to an interface in a Microsoft Visual Studio C++ project" title: "Add a property" +description: "Learn more about: Add a property to an interface in a Microsoft Visual Studio C++ project" ms.date: 04/12/2022 f1_keywords: ["vc.codewiz.prop.overview"] helpviewer_keywords: ["interfaces, adding properties", "properties [C++], adding to interfaces", "names, add property wizard", "add property wizard", "stock properties, about stock properties", "stock properties"] diff --git a/docs/ide/live-share-cpp.md b/docs/ide/live-share-cpp.md index 9099be1d6c..6825a02fc2 100644 --- a/docs/ide/live-share-cpp.md +++ b/docs/ide/live-share-cpp.md @@ -1,7 +1,7 @@ --- title: "Collaborate with Live Share for C++ in Visual Studio" description: "Use Live Share for C++ in Visual Studio to collaborate and share code in real time." -ms.date: "05/24/2019" +ms.date: 05/24/2019 --- # Collaborate using Live Share for C++ diff --git a/docs/ide/writing-and-refactoring-code-cpp.md b/docs/ide/writing-and-refactoring-code-cpp.md index 96428ae971..72dc71d8b4 100644 --- a/docs/ide/writing-and-refactoring-code-cpp.md +++ b/docs/ide/writing-and-refactoring-code-cpp.md @@ -1,7 +1,7 @@ --- title: "Edit and refactor C++ code in Visual Studio" description: "Use the C++ code editor in Visual Studio to format, navigate, understand and refactor your code." -ms.date: "09/20/2022" +ms.date: 09/20/2022 ms.topic: "overview" ms.custom: intro-overview --- diff --git a/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md b/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md index 2c86901f62..91fc8ecb27 100644 --- a/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md +++ b/docs/mfc/reference/add-interface-definition-library-mfc-property-wizard.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Use the Microsoft Visual Studio Add IDL MFC property wizard to add a property to an IDL interface in your MFC or ATL project" title: "Add an IDL MFC property" -ms.date: "04/14/2022" +description: "Learn more about: Use the Microsoft Visual Studio Add IDL MFC property wizard to add a property to an IDL interface in your MFC or ATL project" +ms.date: 04/14/2022 f1_keywords: ["vc.codewiz.prop.overview"] helpviewer_keywords: ["interfaces, adding properties", "properties [C++], adding to interfaces", "names, add property wizard", "add property wizard", "stock properties, about stock properties", "stock properties"] ms.custom: devdivchpfy22 From 12da1a406604aa9a44b07ba80a6adfb7df7982e7 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 22:16:34 +0800 Subject: [PATCH 808/981] Resolve cut off name for `/FU` in `toc.yml` --- docs/build/toc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/toc.yml b/docs/build/toc.yml index 444ec54501..9fced4f681 100644 --- a/docs/build/toc.yml +++ b/docs/build/toc.yml @@ -552,7 +552,7 @@ items: href: ../build/reference/fp-name-dot-pch-file.md - name: /FR, /Fr (Create .Sbr file) href: ../build/reference/fr-fr-create-dot-sbr-file.md - - name: /FU (Name forced + - name: "/FU (Name forced #using file)" href: ../build/reference/fu-name-forced-hash-using-file.md - name: /Fx (Merge injected code) href: ../build/reference/fx-merge-injected-code.md From c21763a259e42b1da474c1256d706750962e5632 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 22:28:37 +0800 Subject: [PATCH 809/981] Convert BSCMAKE errors and warnings list into a table --- .../bscmake-errors-bk1500-through-bk4505.md | 38 ++++++++++--------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md index cf53a0fd92..567c9895c3 100644 --- a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md +++ b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md @@ -12,26 +12,30 @@ This section is a reference to the errors and warnings generated by the BSCMAKE ## Error messages -[BSCMAKE error BK1503](bscmake-error-bk1503.md) \ -[BSCMAKE error BK1504](bscmake-error-bk1504.md) \ -[BSCMAKE error BK1505](bscmake-error-bk1505.md) \ -[BSCMAKE error BK1506](bscmake-error-bk1506.md) \ -[BSCMAKE error BK1507](bscmake-error-bk1507.md) \ -[BSCMAKE error BK1508](bscmake-error-bk1508.md) \ -[BSCMAKE error BK1509](bscmake-error-bk1509.md) \ -[BSCMAKE error BK1510](bscmake-error-bk1510.md) \ -[BSCMAKE error BK1512](bscmake-error-bk1512.md) \ -[BSCMAKE error BK1513](bscmake-error-bk1513.md) \ -[BSCMAKE error BK1514](bscmake-error-bk1514.md) \ -[BSCMAKE error BK1515](bscmake-error-bk1515.md) \ -[BSCMAKE error BK1516](bscmake-error-bk1516.md) \ -[BSCMAKE error BK1517](bscmake-error-bk1517.md) +| Error | Message | +|--|--| +| [BSCMAKE error BK1503](bscmake-error-bk1503.md) | cannot write to file 'filename' [: reason] | +| [BSCMAKE error BK1504](bscmake-error-bk1504.md) | cannot position in file 'filename' [: reason] | +| [BSCMAKE error BK1505](bscmake-error-bk1505.md) | cannot read from file 'filename' [: reason] | +| [BSCMAKE error BK1506](bscmake-error-bk1506.md) | cannot open file 'filename' [: reason] | +| [BSCMAKE error BK1507](bscmake-error-bk1507.md) | cannot open temporary file 'filename' [: reason] | +| [BSCMAKE error BK1508](bscmake-error-bk1508.md) | cannot delete temporary file 'filename' [: reason] | +| [BSCMAKE error BK1509](bscmake-error-bk1509.md) | out of heap space | +| [BSCMAKE error BK1510](bscmake-error-bk1510.md) | corrupt .SBR file filename | +| [BSCMAKE error BK1512](bscmake-error-bk1512.md) | filename: capacity exceeded | +| [BSCMAKE error BK1513](bscmake-error-bk1513.md) | nonincremental update requires all .SBR files | +| [BSCMAKE error BK1514](bscmake-error-bk1514.md) | all .SBR files truncated, none found in filename | +| [BSCMAKE error BK1515](bscmake-error-bk1515.md) | bscfile: incompatible version: cannot incrementally update | +| [BSCMAKE error BK1516](bscmake-error-bk1516.md) | bscfile corrupt; cannot incrementally update | +| [BSCMAKE error BK1517](bscmake-error-bk1517.md) | source file for sbrfile compiled with both /Yc and /Yu | ## Warning messages -[BSCMAKE warning BK4502](bscmake-warning-bk4502.md) \ -[BSCMAKE warning BK4503](bscmake-warning-bk4503.md) \ -[BSCMAKE warning BK4504](bscmake-warning-bk4504.md) +| Warning | Message | +|--|--| +| [BSCMAKE warning BK4502](bscmake-warning-bk4502.md) | truncated .SBR file 'filename' not in filename | +| [BSCMAKE warning BK4503](bscmake-warning-bk4503.md) | minor error in .SBR file filename ignored | +| [BSCMAKE warning BK4504](bscmake-warning-bk4504.md) | file contains too many references; ignoring further references from this source | ## See also From 11598355b4f9f61c784a07d5e0dc14f0864fde43 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 22:29:30 +0800 Subject: [PATCH 810/981] Simplify superfluous relative links in "BSCMAKE errors and warnings (BKxxxx)" --- .../tool-errors/bscmake-errors-bk1500-through-bk4505.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md index 567c9895c3..68d2fef944 100644 --- a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md +++ b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md @@ -8,7 +8,7 @@ ms.assetid: 3767baa6-e639-472e-99fd-7543fd945cd3 This section is a reference to the errors and warnings generated by the BSCMAKE build tool. BSCMAKE errors and warnings have the form BK*xxxx*, where *xxxx* is a four-digit number. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## Error messages From 2e76b3f360b57cde51f94e73a70f2296fd224f6c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 22:30:10 +0800 Subject: [PATCH 811/981] Remove space before escape in "BSCMAKE errors and warnings (BKxxxx)" --- .../tool-errors/bscmake-errors-bk1500-through-bk4505.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md index 68d2fef944..022c3ee6cc 100644 --- a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md +++ b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md @@ -39,5 +39,5 @@ This section is a reference to the errors and warnings generated by the BSCMAKE ## See also -[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md) \ +[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md)\ [BSCMake reference](../../build/reference/bscmake-reference.md) From b4dcc163b93d6f7df09e3c0793901cd7bda47d28 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 13 Jul 2025 22:30:47 +0800 Subject: [PATCH 812/981] Update metadata in "BSCMAKE errors and warnings (BKxxxx)" --- .../tool-errors/bscmake-errors-bk1500-through-bk4505.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md index 022c3ee6cc..59030414a3 100644 --- a/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md +++ b/docs/error-messages/tool-errors/bscmake-errors-bk1500-through-bk4505.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: BSCMAKE errors and warnings (BKxxxx)" title: "BSCMAKE errors and warnings" -ms.date: "04/16/2019" -ms.assetid: 3767baa6-e639-472e-99fd-7543fd945cd3 +description: "Learn more about: BSCMAKE errors and warnings (BKxxxx)" +ms.date: 04/16/2019 --- # BSCMAKE errors and warnings (BKxxxx) From 221669395c9c88fed7349545d845c42912242d26 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 22:37:34 +0800 Subject: [PATCH 813/981] Standardize paragraph about ASCII, SBCS, and MBCS --- .../single-byte-and-multibyte-character-sets.md | 2 +- docs/text/text-and-strings-in-visual-cpp.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md b/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md index 7d409c365c..b045b2d565 100644 --- a/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md +++ b/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md @@ -8,7 +8,7 @@ ms.assetid: 2cbc78ea-33c0-4cfb-b0df-7ce2458431ce --- # Single-byte and multibyte character sets -The ASCII character set defines characters in the range 0x00 - 0x7F. There are many other character sets, primarily European, that define the characters within the range 0x00 - 0x7F identically to the ASCII character set and also define an extended character set from 0x80 - 0xFF. An 8-bit, single-byte-character set (SBCS) is sufficient to represent the ASCII character set and the character sets for many European languages. However, some non-European character sets, such as Japanese Kanji, include many more characters than can be represented in a single-byte coding scheme, and so require multibyte-character set (MBCS) encoding. +The ASCII character set defines characters in the range 0x00 - 0x7F. There are other character sets, primarily European, that define the characters within the range 0x00 - 0x7F identically to the ASCII character set and also define an extended character set from 0x80 - 0xFF. Thus, an 8-bit, single-byte-character set (SBCS) is sufficient to represent the ASCII character set and the character sets for many European languages. However, some non-European character sets, such as Japanese Kanji, include many more characters than a single-byte coding scheme can represent, and therefore require multibyte-character set (MBCS) encoding. > [!NOTE] > Many Microsoft run-time library SBCS routines handle multibyte bytes, characters, and strings as appropriate. Many multibyte-character sets define the ASCII character set as a subset. In many multibyte character sets, each character in the range 0x00 - 0x7F is identical to the character that has the same value in the ASCII character set. For example, in both ASCII and MBCS character strings, the one-byte null character ('\0') has value 0x00 and indicates the terminating null character. diff --git a/docs/text/text-and-strings-in-visual-cpp.md b/docs/text/text-and-strings-in-visual-cpp.md index f7802b9879..feed7da2b4 100644 --- a/docs/text/text-and-strings-in-visual-cpp.md +++ b/docs/text/text-and-strings-in-visual-cpp.md @@ -7,7 +7,7 @@ ms.assetid: a1bb27ac-abe5-4c6b-867d-f761d4b93205 --- # Text and Strings in Visual C++ -An important aspect of developing applications for international markets is the adequate representation of local character sets. The ASCII character set defines characters in the range 0x00 to 0x7F. There are other character sets, primarily European, that define the characters within the range 0x00 to 0x7F identically to the ASCII character set and also define an extended character set from 0x80 to 0xFF. Thus, an 8-bit, single-byte-character set (SBCS) is sufficient to represent the ASCII character set, as well as the character sets for many European languages. However, some non-European character sets, such as Japanese Kanji, include many more characters than a single-byte coding scheme can represent, and therefore require multibyte-character set (MBCS) encoding. +An important aspect of developing applications for international markets is the adequate representation of local character sets. The ASCII character set defines characters in the range 0x00 - 0x7F. There are other character sets, primarily European, that define the characters within the range 0x00 - 0x7F identically to the ASCII character set and also define an extended character set from 0x80 - 0xFF. Thus, an 8-bit, single-byte-character set (SBCS) is sufficient to represent the ASCII character set and the character sets for many European languages. However, some non-European character sets, such as Japanese Kanji, include many more characters than a single-byte coding scheme can represent, and therefore require multibyte-character set (MBCS) encoding. ## In This Section From df6a32bbc87052d41b93f233d9b56b1e55ad1748 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 22:38:24 +0800 Subject: [PATCH 814/981] Update metadata in 2 topics --- .../single-byte-and-multibyte-character-sets.md | 3 +-- docs/text/text-and-strings-in-visual-cpp.md | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md b/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md index b045b2d565..cbebeccee2 100644 --- a/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md +++ b/docs/c-runtime-library/single-byte-and-multibyte-character-sets.md @@ -1,10 +1,9 @@ --- title: "Single-Byte and Multibyte Character Sets" description: "An introduction to single and multi-byte character sets in the Microsoft runtime library." +ms.date: 11/04/2016 ms.topic: "concept-article" -ms.date: "11/04/2016" helpviewer_keywords: ["SBCS (single byte character set)", "MBCS [C++], about MBCS", "character sets [C++], multibyte", "character sets [C++], single byte"] -ms.assetid: 2cbc78ea-33c0-4cfb-b0df-7ce2458431ce --- # Single-byte and multibyte character sets diff --git a/docs/text/text-and-strings-in-visual-cpp.md b/docs/text/text-and-strings-in-visual-cpp.md index feed7da2b4..2334f6557e 100644 --- a/docs/text/text-and-strings-in-visual-cpp.md +++ b/docs/text/text-and-strings-in-visual-cpp.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Text and Strings in Visual C++" title: "Text and Strings in Visual C++" -ms.date: "11/04/2016" +description: "Learn more about: Text and Strings in Visual C++" +ms.date: 11/04/2016 helpviewer_keywords: ["globalization [C++], character sets", "programming [C++], international", "multiple language support [C++]", "Unicode [C++]", "international applications [C++], about international applications", "portability [C++]", "translation [C++], character sets", "non-European characters [C++]", "character sets [C++]", "globalization [C++]", "Japanese characters [C++]", "Kanji character support [C++]", "local character sets [C++]", "ASCII characters [C++]", "character sets [C++], about character sets", "localization [C++], character sets", "translating code [C++]", "localization [C++]", "character sets [C++], non-European", "portability [C++], character sets", "MBCS [C++], international programming"] -ms.assetid: a1bb27ac-abe5-4c6b-867d-f761d4b93205 --- # Text and Strings in Visual C++ From dcd44803548566b76d1f18ced6a0276db65147fe Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 22:58:25 +0800 Subject: [PATCH 815/981] Add blockquotes for error messages in range [C2101, C2120] --- docs/error-messages/compiler-errors-1/compiler-error-c2101.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2102.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2103.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2104.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2105.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2106.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2107.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2109.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2110.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2111.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2112.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2113.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2114.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2115.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2117.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2118.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2120.md | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md index a01fe6598c..1109b661fb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2101"] --- # Compiler Error C2101 -'&' on constant +> '&' on constant The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must have an l-value as operand. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md index 292bbccacc..cbacfcf1fe 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2102"] --- # Compiler Error C2102 -'&' requires l-value +> '&' requires l-value The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must have an l-value as operand. Address of temporary values cannot be taken. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md index 3809ebf983..3239ca1c65 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2103"] --- # Compiler Error C2103 -'&' on register variable +> '&' on register variable You cannot take the address of a register. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md index b2640fdd2d..db3b70032a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md @@ -8,7 +8,7 @@ ms.assetid: 2ea78896-72a6-4901-a1fa-f33ea88ad61b --- # Compiler Error C2104 -'&' on bit field ignored +> '&' on bit field ignored You cannot take the address of a bit field. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md index 68cf1a2ad6..581dc71d05 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md @@ -8,7 +8,7 @@ ms.assetid: 19b7f7bc-a9da-4d23-8193-005b6d09274f --- # Compiler Error C2105 -'operator' needs l-value +> 'operator' needs l-value The operator must have an l-value as operand. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md index 58fec648a5..9686f9988c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md @@ -8,7 +8,7 @@ ms.assetid: d5c91a2e-04e4-4770-8478-788b98c52a53 --- # Compiler Error C2106 -'operator' : left operand must be l-value +> 'operator' : left operand must be l-value The operator must have an l-value as its left operand. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md index 1644f15337..6367dfbfe1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md @@ -8,7 +8,7 @@ ms.assetid: 2866a121-884e-4bb5-8613-36de5817000e --- # Compiler Error C2107 -illegal index, indirection not allowed +> illegal index, indirection not allowed A subscript is applied to an expression that does not evaluate to a pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md index c6bff1af2d..07ba1eaf88 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md @@ -8,7 +8,7 @@ ms.assetid: 2d1ac79d-a985-4904-a38b-b270578d664d --- # Compiler Error C2109 -subscript requires array or pointer type +> subscript requires array or pointer type The subscript was used on a variable that was not an array. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md index 42bfa8a939..3c3a048278 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2110"] --- # Compiler Error C2110 -'+' : cannot add two pointers +> '+' : cannot add two pointers An attempt was made to add two pointer values using the plus (`+`) operator. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md index d0d6444cac..7e91f34521 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2111"] --- # Compiler Error C2111 -'+' : pointer addition requires integral operand +> '+' : pointer addition requires integral operand An attempt was made to add a nonintegral value to a pointer using the plus (`+`) operator. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md index 8c4236d97a..9fac4a7529 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md @@ -8,6 +8,6 @@ ms.assetid: 527a2fea-f585-4d00-bbb4-477aee17144b --- # Compiler Error C2112 -'-' : pointer subtraction requires integral or pointer operand +> '-' : pointer subtraction requires integral or pointer operand An attempt was made to subtract pointers that point to different types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md index e22c5d9a14..cda3417c34 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md @@ -8,6 +8,6 @@ ms.assetid: be85cb5e-b0ed-4fc9-b062-032bf7f59a4e --- # Compiler Error C2113 -'-' : pointer can only be subtracted from another pointer +> '-' : pointer can only be subtracted from another pointer The right operand in a subtraction operation was a pointer, but the left operand was not. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md index ada8074812..0aebc899cd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md @@ -8,6 +8,6 @@ ms.assetid: c1b2445f-74eb-4dc8-8d5a-6c8627775ee8 --- # Compiler Error C2114 -'operator' : pointer on left; needs integral value on right +> 'operator' : pointer on left; needs integral value on right The left operand of `operator` was a pointer, so the right operand must be an integer value. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md index 2125c5674c..f6e011db5f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md @@ -8,6 +8,6 @@ ms.assetid: 95d76ab5-ddd7-4e29-8cac-24285dccc490 --- # Compiler Error C2115 -'identifier' : incompatible types +> 'identifier' : incompatible types An expression contained incompatible types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md index 1b5aeb3f18..636e562d5d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md @@ -8,7 +8,7 @@ ms.assetid: b947379d-5861-42fc-ac26-170318579cbd --- # Compiler Error C2117 -'identifier' : array bounds overflow +> 'identifier' : array bounds overflow An array has too many initializers: diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md index b10252e5e5..0960f36502 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md @@ -8,7 +8,7 @@ ms.assetid: bf4315d0-f085-4323-b813-96ee61a13bde --- # Compiler Error C2118 -negative subscript +> negative subscript The value defining the array size is larger than the maximum array size or smaller than zero. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md index fe8ca7df9c..d0b39b784f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md @@ -8,7 +8,7 @@ ms.assetid: b0f3f66c-6cd2-4f48-9ea3-c270b53c2b8c --- # Compiler Error C2120 -'void' illegal with all types +> 'void' illegal with all types The **`void`** type is used in a declaration with another type. From 2b194ace9dc9aaaf7592ae1b3ff8cb3badaeb1b2 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 23:02:44 +0800 Subject: [PATCH 816/981] Add "Remarks" and "Example" headings for error references in range [C2101, C2120] --- docs/error-messages/compiler-errors-1/compiler-error-c2101.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2102.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2103.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2104.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2105.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2106.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2107.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2109.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2110.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2111.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2112.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2113.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2114.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2115.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2116.md | 4 ++-- docs/error-messages/compiler-errors-1/compiler-error-c2117.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2118.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2120.md | 4 ++++ 18 files changed, 60 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md index 1109b661fb..6a3e6cabd9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2101"] > '&' on constant +## Remarks + The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must have an l-value as operand. +## Example + The following sample generates C2101: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md index cbacfcf1fe..76e9cd695d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2102"] > '&' requires l-value +## Remarks + The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must have an l-value as operand. Address of temporary values cannot be taken. +## Example + The following sample generates C2102: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md index 3239ca1c65..035ccbed3f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2103"] > '&' on register variable +## Remarks + You cannot take the address of a register. +## Example + The following sample generates C2103: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md index db3b70032a..0a5de3eada 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md @@ -10,8 +10,12 @@ ms.assetid: 2ea78896-72a6-4901-a1fa-f33ea88ad61b > '&' on bit field ignored +## Remarks + You cannot take the address of a bit field. +## Example + The following sample generates C2104: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md index 581dc71d05..9620990629 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md @@ -10,8 +10,12 @@ ms.assetid: 19b7f7bc-a9da-4d23-8193-005b6d09274f > 'operator' needs l-value +## Remarks + The operator must have an l-value as operand. +## Examples + The following sample generates C2105: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md index 9686f9988c..feedd96d54 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md @@ -10,8 +10,12 @@ ms.assetid: d5c91a2e-04e4-4770-8478-788b98c52a53 > 'operator' : left operand must be l-value +## Remarks + The operator must have an l-value as its left operand. +## Example + The following sample generates C2106: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md index 6367dfbfe1..1a112e3604 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md @@ -10,6 +10,8 @@ ms.assetid: 2866a121-884e-4bb5-8613-36de5817000e > illegal index, indirection not allowed +## Remarks + A subscript is applied to an expression that does not evaluate to a pointer. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md index 07ba1eaf88..2baed1bfb7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md @@ -10,8 +10,12 @@ ms.assetid: 2d1ac79d-a985-4904-a38b-b270578d664d > subscript requires array or pointer type +## Remarks + The subscript was used on a variable that was not an array. +## Example + The following sample generates C2109: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md index 3c3a048278..408ca97425 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2110"] > '+' : cannot add two pointers +## Remarks + An attempt was made to add two pointer values using the plus (`+`) operator. +## Example + The following sample generates C2110: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md index 7e91f34521..e6aa6a5f1c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2111"] > '+' : pointer addition requires integral operand +## Remarks + An attempt was made to add a nonintegral value to a pointer using the plus (`+`) operator. +## Example + The following sample generates C2111: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md index 9fac4a7529..d871b857be 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md @@ -10,4 +10,6 @@ ms.assetid: 527a2fea-f585-4d00-bbb4-477aee17144b > '-' : pointer subtraction requires integral or pointer operand +## Remarks + An attempt was made to subtract pointers that point to different types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md index cda3417c34..24077d5da1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md @@ -10,4 +10,6 @@ ms.assetid: be85cb5e-b0ed-4fc9-b062-032bf7f59a4e > '-' : pointer can only be subtracted from another pointer +## Remarks + The right operand in a subtraction operation was a pointer, but the left operand was not. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md index 0aebc899cd..df955eab59 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md @@ -10,4 +10,6 @@ ms.assetid: c1b2445f-74eb-4dc8-8d5a-6c8627775ee8 > 'operator' : pointer on left; needs integral value on right +## Remarks + The left operand of `operator` was a pointer, so the right operand must be an integer value. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md index f6e011db5f..885ddc3e28 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md @@ -10,4 +10,6 @@ ms.assetid: 95d76ab5-ddd7-4e29-8cac-24285dccc490 > 'identifier' : incompatible types +## Remarks + An expression contained incompatible types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2116.md b/docs/error-messages/compiler-errors-1/compiler-error-c2116.md index 9dfd0d52b9..6a9849eb03 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2116.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2116.md @@ -10,10 +10,10 @@ ms.assetid: 0089a23f-e6bd-4956-9b58-3bcca09ab5ad > function parameter lists do not match between declarations -The parameter list of a redeclared function doesn't match the parameter list used in an earlier declaration. - ## Remarks +The parameter list of a redeclared function doesn't match the parameter list used in an earlier declaration. + This error can occur if you use different types for the parameters when you redeclare an `extern "C"` function. This error may occur after an upgrade because of conformance changes in Visual Studio 2019. Starting in Visual Studio 2019 version 16.3, the [`/Zc:externC-`](../../build/reference/zc-externc.md) compiler option relaxes this check. The option must come after any [`/permissive-`](../../build/reference/permissive-standards-conformance.md) option on the command line. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md index 636e562d5d..586d683a6b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md @@ -10,12 +10,16 @@ ms.assetid: b947379d-5861-42fc-ac26-170318579cbd > 'identifier' : array bounds overflow +## Remarks + An array has too many initializers: - Array elements and initializers do not match in size and quantity. - No space for the null terminator in a string. +## Example + The following sample generates C2117: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md index 0960f36502..0fc8d6d616 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md @@ -10,8 +10,12 @@ ms.assetid: bf4315d0-f085-4323-b813-96ee61a13bde > negative subscript +## Remarks + The value defining the array size is larger than the maximum array size or smaller than zero. +## Example + The following sample generates C2118: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md index d0b39b784f..537aa366d1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md @@ -10,8 +10,12 @@ ms.assetid: b0f3f66c-6cd2-4f48-9ea3-c270b53c2b8c > 'void' illegal with all types +## Remarks + The **`void`** type is used in a declaration with another type. +## Example + The following sample generates C2120: ```cpp From 0f853979a167c8595d93c77f5f91e07d224cdc33 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 23:04:48 +0800 Subject: [PATCH 817/981] Replace term "sample" with "example" for error references in range [C2101, C2120] --- docs/error-messages/compiler-errors-1/compiler-error-c2101.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2102.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2103.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2104.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2105.md | 4 ++-- docs/error-messages/compiler-errors-1/compiler-error-c2106.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2107.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2108.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2109.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2110.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2111.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2117.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2118.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2120.md | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md index 6a3e6cabd9..51325fe83c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md @@ -15,7 +15,7 @@ The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must h ## Example -The following sample generates C2101: +The following example generates C2101: ```cpp // C2101.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md index 76e9cd695d..3dad89e5d6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md @@ -15,7 +15,7 @@ The [address-of operator (**`&`**)](../../cpp/address-of-operator-amp.md) must h ## Example -The following sample generates C2102: +The following example generates C2102: ```cpp // C2102.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md index 035ccbed3f..2ffdba8f0a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md @@ -15,7 +15,7 @@ You cannot take the address of a register. ## Example -The following sample generates C2103: +The following example generates C2103: ```c // C2103.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md index 0a5de3eada..1ceadd9b37 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md @@ -16,7 +16,7 @@ You cannot take the address of a bit field. ## Example -The following sample generates C2104: +The following example generates C2104: ```cpp // C2104.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md index 9620990629..ca4104402e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md @@ -16,7 +16,7 @@ The operator must have an l-value as operand. ## Examples -The following sample generates C2105: +The following example generates C2105: ```cpp // C2105.cpp @@ -33,7 +33,7 @@ int main() { } ``` -The following sample generates C2105: +The following example generates C2105: ```cpp // C2105b.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md index feedd96d54..04773102b5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md @@ -16,7 +16,7 @@ The operator must have an l-value as its left operand. ## Example -The following sample generates C2106: +The following example generates C2106: ```cpp // C2106.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md index 1a112e3604..e1c59745f9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md @@ -18,7 +18,7 @@ A subscript is applied to an expression that does not evaluate to a pointer. C2107 can occur if you incorrectly use the **`this`** pointer of a value type to access the type's default indexer. For more information, see [Semantics of the `this` pointer](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Semantics_of_the_this_pointer). -The following sample generates C2107. +The following example generates C2107. ```cpp // C2107.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2108.md b/docs/error-messages/compiler-errors-1/compiler-error-c2108.md index 4560690ae7..01b4a01fba 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2108.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2108.md @@ -18,7 +18,7 @@ The array subscript is a non-integer expression. C2108 can occur if you incorrectly use the **`this`** pointer of a value type to access the type's default indexer. For more information, see [Semantics of the `this` pointer](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Semantics_of_the_this_pointer). -The following sample generates C2108. +The following example generates C2108. ```cpp // C2108.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md index 2baed1bfb7..a2090f2a2e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md @@ -16,7 +16,7 @@ The subscript was used on a variable that was not an array. ## Example -The following sample generates C2109: +The following example generates C2109: ```cpp // C2109.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md index 408ca97425..480293e439 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2110.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2110.md @@ -15,7 +15,7 @@ An attempt was made to add two pointer values using the plus (`+`) operator. ## Example -The following sample generates C2110: +The following example generates C2110: ```cpp // C2110.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md index e6aa6a5f1c..f8a9305aa9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2111.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2111.md @@ -15,7 +15,7 @@ An attempt was made to add a nonintegral value to a pointer using the plus (`+`) ## Example -The following sample generates C2111: +The following example generates C2111: ```cpp // C2111.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md index 586d683a6b..67ce47c2b6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md @@ -20,7 +20,7 @@ An array has too many initializers: ## Example -The following sample generates C2117: +The following example generates C2117: ```cpp // C2117.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md index 0fc8d6d616..1225f230b1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md @@ -16,7 +16,7 @@ The value defining the array size is larger than the maximum array size or small ## Example -The following sample generates C2118: +The following example generates C2118: ```cpp // C2118.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md index 537aa366d1..ed345afb47 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md @@ -16,7 +16,7 @@ The **`void`** type is used in a declaration with another type. ## Example -The following sample generates C2120: +The following example generates C2120: ```cpp // C2120.cpp From 43e8603c7a20477f323fc269e7d09c3db0a03ecf Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 14 Jul 2025 23:08:00 +0800 Subject: [PATCH 818/981] Update metadata for error references in range [C2101, C2120] --- .../error-messages/compiler-errors-1/compiler-error-c2101.md | 4 ++-- .../error-messages/compiler-errors-1/compiler-error-c2102.md | 4 ++-- .../error-messages/compiler-errors-1/compiler-error-c2103.md | 4 ++-- .../error-messages/compiler-errors-1/compiler-error-c2104.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2105.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2106.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2107.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2108.md | 3 +-- .../error-messages/compiler-errors-1/compiler-error-c2109.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2112.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2113.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2114.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2115.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2116.md | 3 +-- .../error-messages/compiler-errors-1/compiler-error-c2117.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2118.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2120.md | 5 ++--- 17 files changed, 32 insertions(+), 46 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md index 51325fe83c..e2703e5d86 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2101.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2101.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2101" title: "Compiler Error C2101" -ms.date: "03/04/2024" +description: "Learn more about: Compiler Error C2101" +ms.date: 03/04/2024 f1_keywords: ["C2101"] helpviewer_keywords: ["C2101"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md index 3dad89e5d6..7db34d038f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2102.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2102.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2102" title: "Compiler Error C2102" -ms.date: "03/03/2024" +description: "Learn more about: Compiler Error C2102" +ms.date: 03/03/2024 f1_keywords: ["C2102"] helpviewer_keywords: ["C2102"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md index 2ffdba8f0a..af055b688c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2103.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2103.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2103" title: "Compiler Error C2103" -ms.date: "03/04/2024" +description: "Learn more about: Compiler Error C2103" +ms.date: 03/04/2024 f1_keywords: ["C2103"] helpviewer_keywords: ["C2103"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md index 1ceadd9b37..957f09c7a3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2104.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2104.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2104" title: "Compiler Error C2104" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2104" +ms.date: 11/04/2016 f1_keywords: ["C2104"] helpviewer_keywords: ["C2104"] -ms.assetid: 2ea78896-72a6-4901-a1fa-f33ea88ad61b --- # Compiler Error C2104 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md index ca4104402e..55de44e830 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2105.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2105.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2105" title: "Compiler Error C2105" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2105" +ms.date: 11/04/2016 f1_keywords: ["C2105"] helpviewer_keywords: ["C2105"] -ms.assetid: 19b7f7bc-a9da-4d23-8193-005b6d09274f --- # Compiler Error C2105 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md index 04773102b5..e22d82019d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2106.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2106.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2106" title: "Compiler Error C2106" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2106" +ms.date: 11/04/2016 f1_keywords: ["C2106"] helpviewer_keywords: ["C2106"] -ms.assetid: d5c91a2e-04e4-4770-8478-788b98c52a53 --- # Compiler Error C2106 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md index e1c59745f9..51bcd37722 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2107.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2107.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2107" title: "Compiler Error C2107" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2107" +ms.date: 11/04/2016 f1_keywords: ["C2107"] helpviewer_keywords: ["C2107"] -ms.assetid: 2866a121-884e-4bb5-8613-36de5817000e --- # Compiler Error C2107 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2108.md b/docs/error-messages/compiler-errors-1/compiler-error-c2108.md index 01b4a01fba..fa7b26db53 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2108.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2108.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2108" title: "Compiler Error C2108" +description: "Learn more about: Compiler Error C2108" ms.date: 06/03/2022 f1_keywords: ["C2108"] helpviewer_keywords: ["C2108"] -ms.assetid: c84f0b47-5e2c-47d2-8edb-427a40e17c36 --- # Compiler Error C2108 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md index a2090f2a2e..8092ba9001 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2109.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2109.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2109" title: "Compiler Error C2109" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2109" +ms.date: 11/04/2016 f1_keywords: ["C2109"] helpviewer_keywords: ["C2109"] -ms.assetid: 2d1ac79d-a985-4904-a38b-b270578d664d --- # Compiler Error C2109 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md index d871b857be..1928506edc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2112.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2112.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2112" title: "Compiler Error C2112" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2112" +ms.date: 11/04/2016 f1_keywords: ["C2112"] helpviewer_keywords: ["C2112"] -ms.assetid: 527a2fea-f585-4d00-bbb4-477aee17144b --- # Compiler Error C2112 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md index 24077d5da1..bfeb4b2390 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2113.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2113.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2113" title: "Compiler Error C2113" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2113" +ms.date: 11/04/2016 f1_keywords: ["C2113"] helpviewer_keywords: ["C2113"] -ms.assetid: be85cb5e-b0ed-4fc9-b062-032bf7f59a4e --- # Compiler Error C2113 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md index df955eab59..75831e51f9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2114.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2114.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2114" title: "Compiler Error C2114" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2114" +ms.date: 11/04/2016 f1_keywords: ["C2114"] helpviewer_keywords: ["C2114"] -ms.assetid: c1b2445f-74eb-4dc8-8d5a-6c8627775ee8 --- # Compiler Error C2114 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md index 885ddc3e28..52147bca16 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2115.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2115.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2115" title: "Compiler Error C2115" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2115" +ms.date: 11/04/2016 f1_keywords: ["C2115"] helpviewer_keywords: ["C2115"] -ms.assetid: 95d76ab5-ddd7-4e29-8cac-24285dccc490 --- # Compiler Error C2115 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2116.md b/docs/error-messages/compiler-errors-1/compiler-error-c2116.md index 6a9849eb03..f0b37397e6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2116.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2116.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2116" title: "Compiler Error C2116" +description: "Learn more about: Compiler Error C2116" ms.date: 12/02/2021 f1_keywords: ["C2116"] helpviewer_keywords: ["C2116"] -ms.assetid: 0089a23f-e6bd-4956-9b58-3bcca09ab5ad --- # Compiler Error C2116 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md index 67ce47c2b6..9776f59ce2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2117.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2117.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2117" title: "Compiler Error C2117" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2117" +ms.date: 11/04/2016 f1_keywords: ["C2117"] helpviewer_keywords: ["C2117"] -ms.assetid: b947379d-5861-42fc-ac26-170318579cbd --- # Compiler Error C2117 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md index 1225f230b1..b033bb8ddc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2118.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2118.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2118" title: "Compiler Error C2118" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2118" +ms.date: 11/04/2016 f1_keywords: ["C2118"] helpviewer_keywords: ["C2118"] -ms.assetid: bf4315d0-f085-4323-b813-96ee61a13bde --- # Compiler Error C2118 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md index ed345afb47..b3f630d7c1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2120.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2120.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2120" title: "Compiler Error C2120" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2120" +ms.date: 11/04/2016 f1_keywords: ["C2120"] helpviewer_keywords: ["C2120"] -ms.assetid: b0f3f66c-6cd2-4f48-9ea3-c270b53c2b8c --- # Compiler Error C2120 From 021add5ae944feb1a5c8ff8f2a6394e2acb7a6ac Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 12:45:56 -0700 Subject: [PATCH 819/981] List corresponding toolset versions for `_MSC_VER` --- docs/overview/compiler-versions.md | 90 +++++++++++++++--------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index 60666e3f29..e28beaf6d0 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -79,51 +79,51 @@ When the major version changed between Visual Studio 2013 and Visual Studio 2015 An example of a minor change is from Visual Studio 2022 17.1 to Visual Studio 2022 17.2. In that case, `_MSC_VER` changed from 1931 to 1932. -The following table lists the Visual C++ compiler `_MSC_VER` for each Visual Studio release: - -| Visual Studio version | `_MSC_VER` | -|--|--| -| Visual Studio 6.0 | 1200 | -| Visual Studio .NET 2002 (7.0) | 1300 | -| Visual Studio .NET 2003 (7.1) | 1310 | -| Visual Studio 2005 (8.0) | 1400 | -| Visual Studio 2008 (9.0) | 1500 | -| Visual Studio 2010 (10.0) | 1600 | -| Visual Studio 2012 (11.0) | 1700 | -| Visual Studio 2013 (12.0) | 1800 | -| Visual Studio 2015 (14.0) | 1900 | -| Visual Studio 2017 RTW (15.0) | 1910 | -| Visual Studio 2017 version 15.3 | 1911 | -| Visual Studio 2017 version 15.5 | 1912 | -| Visual Studio 2017 version 15.6 | 1913 | -| Visual Studio 2017 version 15.7 | 1914 | -| Visual Studio 2017 version 15.8 | 1915 | -| Visual Studio 2017 version 15.9 | 1916 | -| Visual Studio 2019 RTW 16.0 | 1920 | -| Visual Studio 2019 version 16.1 | 1921 | -| Visual Studio 2019 version 16.2 | 1922 | -| Visual Studio 2019 version 16.3 | 1923 | -| Visual Studio 2019 version 16.4 | 1924 | -| Visual Studio 2019 version 16.5 | 1925 | -| Visual Studio 2019 version 16.6 | 1926 | -| Visual Studio 2019 version 16.7 | 1927 | -| Visual Studio 2019 version 16.8, 16.9 a | 1928 | -| Visual Studio 2019 version 16.10, 16.11 b | 1929 | -| Visual Studio 2022 RTW 17.0 | 1930 | -| Visual Studio 2022 version 17.1 | 1931 | -| Visual Studio 2022 version 17.2 | 1932 | -| Visual Studio 2022 version 17.3 | 1933 | -| Visual Studio 2022 version 17.4 | 1934 | -| Visual Studio 2022 version 17.5 | 1935 | -| Visual Studio 2022 version 17.6 | 1936 | -| Visual Studio 2022 version 17.7 | 1937 | -| Visual Studio 2022 version 17.8 | 1938 | -| Visual Studio 2022 version 17.9 | 1939 | -| Visual Studio 2022 version 17.10 | 1940 | -| Visual Studio 2022 version 17.11 | 1941 | -| Visual Studio 2022 version 17.12 | 1942 | -| Visual Studio 2022 version 17.13 | 1943 | -| Visual Studio 2022 version 17.14 | 1944 | +The following table lists the Visual C++ compiler `_MSC_VER` for each corresponding Visual Studio and toolset release: + +| Visual Studio version | `_MSC_VER` | toolset version | +|--|--|--| +| Visual Studio 6.0 | 1200 | 6.0 | +| Visual Studio .NET 2002 (7.0) | 1300 | 7.0 | +| Visual Studio .NET 2003 (7.1) | 1310 | 7.1 | +| Visual Studio 2005 (8.0) | 1400 | 8.00 | +| Visual Studio 2008 (9.0) | 1500 | 9.00 | +| Visual Studio 2010 (10.0) | 1600 | 10.00 | +| Visual Studio 2012 (11.0) | 1700 | 11.00 | +| Visual Studio 2013 (12.0) | 1800 | 12.00 | +| Visual Studio 2015 (14.0) | 1900 | 14.00 | +| Visual Studio 2017 RTW (15.0) | 1910 | 14.10 | +| Visual Studio 2017 version 15.3 | 1911 | 14.11 | +| Visual Studio 2017 version 15.5 | 1912 | 14.12 | +| Visual Studio 2017 version 15.6 | 1913 | 14.13 | +| Visual Studio 2017 version 15.7 | 1914 | 14.14 | +| Visual Studio 2017 version 15.8 | 1915 | 14.15 | +| Visual Studio 2017 version 15.9 | 1916 | 14. 16| +| Visual Studio 2019 RTW 16.0 | 1920 | 14.20 | +| Visual Studio 2019 version 16.1 | 1921 | 14.21 | +| Visual Studio 2019 version 16.2 | 1922 | 14.22 | +| Visual Studio 2019 version 16.3 | 1923 | 14.23 | +| Visual Studio 2019 version 16.4 | 1924 | 14.24 | +| Visual Studio 2019 version 16.5 | 1925 | 14.25 | +| Visual Studio 2019 version 16.6 | 1926 | 14.26 | +| Visual Studio 2019 version 16.7 | 1927 | 14.27 | +| Visual Studio 2019 version 16.8, 16.9 a | 1928 | 14.28 | +| Visual Studio 2019 version 16.10, 16.11 b | 1929 | 14.29 | +| Visual Studio 2022 RTW 17.0 | 1930 | 14.30 | +| Visual Studio 2022 version 17.1 | 1931 | 14.31 | +| Visual Studio 2022 version 17.2 | 1932 | 14.32 | +| Visual Studio 2022 version 17.3 | 1933 | 14.33 | +| Visual Studio 2022 version 17.4 | 1934 | 14.34 | +| Visual Studio 2022 version 17.5 | 1935 | 14.35 | +| Visual Studio 2022 version 17.6 | 1936 | 14.36 | +| Visual Studio 2022 version 17.7 | 1937 | 14.37 | +| Visual Studio 2022 version 17.8 | 1938 | 14.38 | +| Visual Studio 2022 version 17.9 | 1939 | 14.39 | +| Visual Studio 2022 version 17.10 | 1940 | 14.40 | +| Visual Studio 2022 version 17.11 | 1941 | 14.41 | +| Visual Studio 2022 version 17.12 | 1942 | 14.42 | +| Visual Studio 2022 version 17.13 | 1943 | 14.43 | +| Visual Studio 2022 version 17.14 | 1944 | 14.44 | a Visual Studio 2019 16.8 and 16.9 share the same major and minor versions (and so have the same value for `_MSC_VER`). To distinguish them, use `_MSC_FULL_VER`. The minimum value of `_MSC_FULL_VER` for Visual Studio 2019 16.8 is 192829333. The minimum value of `_MSC_FULL_VER` for Visual Studio 2019 16.9 is 192829910. From 66a78d93cd1a96df9c5302ba4c6f721191af100c Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 12:47:10 -0700 Subject: [PATCH 820/981] remove extra whitespace --- docs/overview/compiler-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index e28beaf6d0..25311d7645 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -98,7 +98,7 @@ The following table lists the Visual C++ compiler `_MSC_VER` for each correspond | Visual Studio 2017 version 15.6 | 1913 | 14.13 | | Visual Studio 2017 version 15.7 | 1914 | 14.14 | | Visual Studio 2017 version 15.8 | 1915 | 14.15 | -| Visual Studio 2017 version 15.9 | 1916 | 14. 16| +| Visual Studio 2017 version 15.9 | 1916 | 14.16| | Visual Studio 2019 RTW 16.0 | 1920 | 14.20 | | Visual Studio 2019 version 16.1 | 1921 | 14.21 | | Visual Studio 2019 version 16.2 | 1922 | 14.22 | From f17075b5aca076e57947efcb729d572e4ce9fe00 Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 12:47:33 -0700 Subject: [PATCH 821/981] have common spacing --- docs/overview/compiler-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index 25311d7645..c2d54fb968 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -98,7 +98,7 @@ The following table lists the Visual C++ compiler `_MSC_VER` for each correspond | Visual Studio 2017 version 15.6 | 1913 | 14.13 | | Visual Studio 2017 version 15.7 | 1914 | 14.14 | | Visual Studio 2017 version 15.8 | 1915 | 14.15 | -| Visual Studio 2017 version 15.9 | 1916 | 14.16| +| Visual Studio 2017 version 15.9 | 1916 | 14.16 | | Visual Studio 2019 RTW 16.0 | 1920 | 14.20 | | Visual Studio 2019 version 16.1 | 1921 | 14.21 | | Visual Studio 2019 version 16.2 | 1922 | 14.22 | From ac6f3fc99e365b3bcdd7ba9baf2403e798a0883d Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 12:58:10 -0700 Subject: [PATCH 822/981] Document ASan's `continue_on_error` flag --- docs/sanitizers/asan-runtime.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/sanitizers/asan-runtime.md b/docs/sanitizers/asan-runtime.md index b4894a00b6..3d9c36279a 100644 --- a/docs/sanitizers/asan-runtime.md +++ b/docs/sanitizers/asan-runtime.md @@ -160,6 +160,8 @@ Boolean (false by default), set to `true` to enable the process to terminate wit >[!NOTE] >When abort_on_error value is set to true, on Windows the program terminates with an exit(3). In order to not change current behavior we decided to introduce this new option instead. If both abort_on_error and windows_fast_fail_on_error are true, the program will exit with the __fastfail. +- [`continue_on_error`](./asan-continue-on-error) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. + ## AddressSanitizer list of intercepted functions (Windows) The AddressSanitizer runtime hotpatches many functions to enable memory safety checks at runtime. Here's a non-exhaustive list of the functions that the AddressSanitizer runtime monitors. From a105ba5c3c42d201804e50118b5c76040e26d4c4 Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 12:59:14 -0700 Subject: [PATCH 823/981] capitalize toolset --- docs/overview/compiler-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index c2d54fb968..818b7df810 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -81,7 +81,7 @@ An example of a minor change is from Visual Studio 2022 17.1 to Visual Studio 20 The following table lists the Visual C++ compiler `_MSC_VER` for each corresponding Visual Studio and toolset release: -| Visual Studio version | `_MSC_VER` | toolset version | +| Visual Studio version | `_MSC_VER` | Toolset version | |--|--|--| | Visual Studio 6.0 | 1200 | 6.0 | | Visual Studio .NET 2002 (7.0) | 1300 | 7.0 | From 70b7bce1115ecab70a1e72f16716e3d31dcf05e3 Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 13:27:11 -0700 Subject: [PATCH 824/981] clarify that toolset = MSVC toolset --- docs/overview/compiler-versions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index 818b7df810..57c03deb47 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -79,9 +79,9 @@ When the major version changed between Visual Studio 2013 and Visual Studio 2015 An example of a minor change is from Visual Studio 2022 17.1 to Visual Studio 2022 17.2. In that case, `_MSC_VER` changed from 1931 to 1932. -The following table lists the Visual C++ compiler `_MSC_VER` for each corresponding Visual Studio and toolset release: +The following table lists the Visual C++ compiler `_MSC_VER` for each corresponding Visual Studio and MSVC toolset release: -| Visual Studio version | `_MSC_VER` | Toolset version | +| Visual Studio version | `_MSC_VER` | MSVC toolset version | |--|--|--| | Visual Studio 6.0 | 1200 | 6.0 | | Visual Studio .NET 2002 (7.0) | 1300 | 7.0 | From 14a493b171f7d37a012c4a95a375ecea343b4c3f Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 13:30:48 -0700 Subject: [PATCH 825/981] remove `./` from local href --- docs/sanitizers/asan-runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanitizers/asan-runtime.md b/docs/sanitizers/asan-runtime.md index 3d9c36279a..531262c750 100644 --- a/docs/sanitizers/asan-runtime.md +++ b/docs/sanitizers/asan-runtime.md @@ -160,7 +160,7 @@ Boolean (false by default), set to `true` to enable the process to terminate wit >[!NOTE] >When abort_on_error value is set to true, on Windows the program terminates with an exit(3). In order to not change current behavior we decided to introduce this new option instead. If both abort_on_error and windows_fast_fail_on_error are true, the program will exit with the __fastfail. -- [`continue_on_error`](./asan-continue-on-error) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. +- [`continue_on_error`](asan-continue-on-error) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. ## AddressSanitizer list of intercepted functions (Windows) From ec732f1cef8601c2c2efe88d6d744c8606d81cae Mon Sep 17 00:00:00 2001 From: David Justo Date: Mon, 14 Jul 2025 14:05:50 -0700 Subject: [PATCH 826/981] add missing `.md` --- docs/sanitizers/asan-runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanitizers/asan-runtime.md b/docs/sanitizers/asan-runtime.md index 531262c750..eefff67b8e 100644 --- a/docs/sanitizers/asan-runtime.md +++ b/docs/sanitizers/asan-runtime.md @@ -160,7 +160,7 @@ Boolean (false by default), set to `true` to enable the process to terminate wit >[!NOTE] >When abort_on_error value is set to true, on Windows the program terminates with an exit(3). In order to not change current behavior we decided to introduce this new option instead. If both abort_on_error and windows_fast_fail_on_error are true, the program will exit with the __fastfail. -- [`continue_on_error`](asan-continue-on-error) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. +- [`continue_on_error`](asan-continue-on-error.md) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. ## AddressSanitizer list of intercepted functions (Windows) From 14011eba1b2195ee04c0b1d4e9c9bcc75dedb7ee Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Mon, 14 Jul 2025 14:34:13 -0700 Subject: [PATCH 827/981] draft --- .../tutorials/build-insights-template-view.md | 101 +++++++++--------- 1 file changed, 48 insertions(+), 53 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index 1c46be7da1..cdd12cc4eb 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -9,7 +9,7 @@ ms.topic: troubleshooting-general Use Build Insights **Templates** view to analyze the impact of template instantiations on C++ build time. This feature is especially useful for projects that make heavy use of templates, such as those using template metaprogramming or large generic libraries. -Templates view is designed to be familiar to users of the [Functions view](build-insights-function-view.md), with similar UI and workflow. +Templates view will seem familiar to users of Build Insight's [Functions view](build-insights-function-view.md) due to similar UI and workflow. ## Prerequisites @@ -23,13 +23,11 @@ Templates view is designed to be familiar to users of the [Functions view](build ## Overview -Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as **Templates** view, which helps diagnose expensive template instantiations during build time. It displays the time it takes to instantiate each template and shows which template instantiations add the most to your build time. +Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as **Templates** view, which displays the time it takes to instantiate each template and shows which template instantiations add the most to your build time. -For optimized builds, the time spent on template instantiation contributes significantly to the total build time. In general, C++ template instantiation happens quickly. In exceptional cases, some template instantiations can noticeably slow down your builds. +In general, C++ template instantiation happens quickly. In exceptional cases, some template instantiations can noticeably slow down your builds. -In this article, learn how to use the Build Insights **Templates** view to find template instantiation bottlenecks in your build. - -Follow along to create a project that demonstrates template instantiation, run Build Insights to gather template instantiation times, and analyze the results. +In this article, follow along to create a project that demonstrates template instantiation impact on build time, run Build Insights to gather template instantiation times, and analyze the results. ## Create a template test project @@ -109,9 +107,9 @@ Template instantiation time collection is off by default to minimize build overh :::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantion checkbox is selected."::: > [!Note] -> Collecting template instantiation times may increase build time due to the extra data collected. Only enable it when you want to analyze template instantiation bottlenecks. +> Collecting template instantiation times increases build time due to the extra data collected. Only enable it when you want to analyze template instantiation bottlenecks. -## Run Build Insights to get template instantiation times +## Run Build Insights to get template instantiation data From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. You can also right-click a project in the solution explorer and choose **Run Build Insights** > **Rebuild**. Choose **Rebuild** instead of **Build** to measure the build time for the entire project. @@ -119,19 +117,23 @@ From the main menu, select **Build** > **Run Build Insights on Selection** > **R When the build finishes, an Event Trace Log (ETL) file opens.The generated name is based on the collection time. -## Use Templates view to optimize build time - -The **Templates** view lists the template instantiations that contributed significantly to build time. Columns provide information about: +## Understanding Templates view results -The **Time [sec, %]** column shows how long it took to instantiate each template in [wall clock responsibility time (WCTR)](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time/#:~:text=Today%2C%20we%E2%80%99d%20like%20to%20teach%20you%20about%20a,your%20build%2C%20even%20in%20the%20presence%20of%20parallelism). This metric distributes the wall clock time among template instantiations based on their use of parallel compiler threads. +When interpreting Templates view results, keep these points in mind: -The **Specialization Name** column shows the specific template instantiation, including the template arguments that were used. This helps you identify which template specializations are most expensive. +- **Empty view**: If nothing shows up in the Templates view, it means your build time isn't dominated by template instantiations. This is good news because your templates are not a build bottleneck. +- **Duplicate instantiations**: The same template instantiation appearing multiple times with different translation units indicates that multiple source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. +- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold to avoid noise from trivial instantiations. +- **Time aggregation**: The time shown represents the total time spent on that specific template instantiation, including any nested instantiations it triggers. -The **Translation Unit** column shows which source file caused this template instantiation. Multiple files can cause the same template instantiation if they include the same header with the template definition. +## Use Templates view to optimize build time -The **Instantiation File Path** column shows where in your source code the template instantiation happens. This helps you locate the exact line of code responsible for the expensive instantiation. +The **Templates** view lists the template instantiations that contributed significantly to build time. Columns provide information about: -The view only shows instantiations whose contribution exceeds a certain threshold. If you don't see anything in the **Templates** view, it means the build time isn't dominated by template instantiations. +- **Time [sec, %]** shows how long it took to instantiate each template in [wall clock responsibility time (WCTR)](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time/#:~:text=Today%2C%20we%E2%80%99d%20like%20to%20teach%20you%20about%20a,your%20build%2C%20even%20in%20the%20presence%20of%20parallelism). This metric distributes the wall clock time among template instantiations based on their use of parallel compiler threads. +- **Specialization Name** shows each template instantiation, including the template arguments that were used. This helps you identify which template specializations are most expensive. +- **Translation Unit** shows which source file each template instantiation happened in. Multiple files can cause the same template instantiation if they include the same header with the template definition. +- **Instantiation File Path** shows where in your source code the template instantiation happens. This helps you locate the exact line of code responsible for the expensive instantiation. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations."::: The Templates view shows two template instantiations of struct S3 taking most (79.4480%) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. @@ -143,16 +145,15 @@ The Templates view shows two template instantiations of struct S3 taking most (7 ## Improve build time by optimizing template instantiations -In our example, we can see that two template instantiations of `S3` are taking 83% of the entire build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation to be included in the build. +In the example, we can see that two template instantiations of `S3` are taking 83% of the entire build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation to be included in the build. -Since the **Instantiation File Path** and the **Specialization Name** are the same for both entries, we can derive that there's one expensive template instantiation affecting both of our source files. This explains why the time of each of the two template instantiations are about equal. By including `Templates.h` in both source files, we are causing one template instantiation to add significant time to our build. +Since the **Instantiation File Path** and the **Specialization Name** are the same for both entries, we can infer that there's one expensive template instantiation affecting both of our source files. This explains why the time of each of the two template instantiations are about equal. By including `Templates.h` in both source files, we are causing one template instantiation to add significant time to our build. From the **Specialization Name** column, we can see that the expensive instantiation is `S3>`, which corresponds to this code in `Templates.h`: ```cpp inline size_t LargeValue() { - return sizeof(S3>); }; ``` @@ -161,21 +162,10 @@ There are three main ways to decrease the cost of template instantiations: ### Remove unused templates -Review the template in question and determine if it's being used. If it's not being used, the easiest solution is to remove the function or template. In our example, `LargeValue()` is being used by `LargeValue.cpp`, so we cannot remove it. +Review the template in question and determine if it's being used. If it's not being used, the easiest solution is to remove the function or template. In the example, `LargeValue()` is being used by `LargeValue.cpp`, so we can't remove it. You can also consider removing include directives that bring in unnecessary template instantiations. It's easy to forget to remove header files when you're no longer using them, and unused includes can cause significant impact on build time. -### Optimize the template implementation - -Look at the template instantiation and determine if there is a way to optimize the code. Some optimization techniques include: - -- Reducing the complexity of template metaprogramming -- Using simpler template patterns -- Avoiding recursive template instantiation patterns that lead to exponential growth -- Using `if constexpr` instead of SFINAE where possible - -For more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/), which provides detailed examples of reducing template instantiation overhead. - ### Move template instantiations to source files For our purposes, let's assume that we need the template instantiation as-is. We can rely on the third approach: moving the definition that causes the expensive template instantiation to a source file. @@ -209,37 +199,42 @@ The build time has significantly decreased. While the template instantiation of This technique scales well to larger projects. If multiple files included `Templates.h`, each of those files would have added the instantiation time of `LargeValue()` to the total build time. By moving the definition of `LargeValue()` to a dedicated source file, we minimize our build time. -## Understanding Templates view results +### Optimize the template implementation -When interpreting Templates view results, keep these points in mind: +Look at the template instantiation and determine if there's a way to optimize the code. Some optimization techniques include: -- **Empty view**: If nothing shows up in the Templates view, it means your build time is not dominated by template instantiations. This is actually good news - your templates are not a build bottleneck. -- **Duplicate instantiations**: The same template instantiation appearing multiple times with different translation units indicates that multiple source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. -- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold to avoid noise from trivial instantiations. -- **Time aggregation**: The time shown represents the total time spent on that specific template instantiation, including any nested instantiations it may trigger. +- Using simpler template patterns +- Reducing the complexity of template metaprogramming +- Avoiding recursive template instantiation patterns that lead to exponential growth +- Use `if constexpr` instead of SFINAE where possible + +For more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/), which provides detailed examples of reducing template instantiation overhead. -For more strategies on improving build times in template-heavy code, see: -- [Templates View for Build Insights in Visual Studio](https://devblogs.microsoft.com/cppblog/templates-view-for-build-insights-in-visual-studio-2/) -- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) +## Tips -The first article provides an overview of the Templates view and how to use it. The second article dives deeper into template metaprogramming techniques that can reduce build time, with practical examples. +- You can **File** > **Save As** the ETL file to a more permanent location to keep a record of the build time. You can then compare it to future builds to see if your changes are improving build time. +- If you inadvertently close the Build Insights window, reopen it by finding the `.etl` file in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. +- To dig into the Build Insights data with Windows Performance Analyzer (WPA), click the **Open in WPA** button in the bottom right of the ETL window. +- Drag columns to change the order of the columns. For instance, you may prefer moving the **Time** column to be the first column. You can hide columns by right-clicking on the column header and deselecting the columns you don't want to see. +- The **Templates** view provides a filter box to find a specific template instantiation. It does partial matches on the name you provide. +- If you forget how to interpret what the **Templates** view is trying to show you, hover over the tab to see a tooltip that describes the view. ## Troubleshooting -- **Templates view does not appear:** Ensure you are using Visual Studio 2022 17.10 or later and that the C++ Build Insights component is installed. Also, make sure Templates view is enabled in the options. -- **No templates listed:** Your project may not have template instantiations that take significant build time, or you may need to build in Release mode with optimizations enabled. -- **Build is much slower with Templates view enabled:** This is expected due to the extra data collection. Disable Templates view when not needed. +**Templates view is empty**: This could mean: + +- Template data collection is not enabled (check your options settings). +- Your build time is not dominated by template instantiations. +- Do a rebuild instead of a build. The Build Insights window doesn't appear if nothing builds, which may be the case if no files changed since the last build. +- Ensure you are using Visual Studio 2022 17.10 or later and that the C++ Build Insights component is installed. + +**Build is much slower with Templates view enabled:** This is expected due to the extra data collection. Disable **Templates** view when not needed. ## See also - [Build Insights tips and tricks](build-insights-tips.md) +- [#include cleanup in Visual Studio](https://devblogs.microsoft.com/cppblog/include-cleanup-in-visual-studio/) +- [Troubleshoot header file impact on build time](build-insights-included-files-view.md) - [Troubleshoot function inlining on build time](build-insights-function-view.md) -- [Build Insights now available in Visual Studio 2022](build-insights-now-available-in-visual-studio-2022.md) -- [Functions View for Build Insights in Visual Studio 2022 17.8](functions-view-for-build-insights-in-visual-studio-2022-17-8.md) -- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) - ---- - -**Summary of additional important points from the blog post:** -- The blog post provides more advanced examples, such as using SFINAE and type traits, which can be referenced for deeper dives but are not included in this basic walkthrough. - +- [Build Insights now available in Visual Studio 2022](https://devblogs.microsoft.com/cppblog/build-insights-now-available-in-visual-studio-2022) +- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) \ No newline at end of file From fa6e3fe2860158ec666e730e0f8bb18681f34e14 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Mon, 14 Jul 2025 15:11:10 -0700 Subject: [PATCH 828/981] draft --- .../tutorials/build-insights-template-view.md | 30 +++++++----------- .../media/templates-view-after-fix.png | Bin 0 -> 26143 bytes .../media/templates-view-before-fix.png | Bin 66563 -> 66831 bytes 3 files changed, 12 insertions(+), 18 deletions(-) create mode 100644 docs/build-insights/tutorials/media/templates-view-after-fix.png diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index cdd12cc4eb..fdba6806a9 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -136,7 +136,7 @@ The **Templates** view lists the template instantiations that contributed signif - **Instantiation File Path** shows where in your source code the template instantiation happens. This helps you locate the exact line of code responsible for the expensive instantiation. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations."::: -The Templates view shows two template instantiations of struct S3 taking most (79.4480%) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. +The Templates view shows two template instantiations of struct S3 taking most (79.448%) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. :::image-end::: - Sort by **Time** to find the templates that take the longest to instantiate. @@ -145,9 +145,9 @@ The Templates view shows two template instantiations of struct S3 taking most (7 ## Improve build time by optimizing template instantiations -In the example, we can see that two template instantiations of `S3` are taking 83% of the entire build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation to be included in the build. +In the example, we can see that two template instantiations of `S3` are taking 79% of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation to be included in the build. -Since the **Instantiation File Path** and the **Specialization Name** are the same for both entries, we can infer that there's one expensive template instantiation affecting both of our source files. This explains why the time of each of the two template instantiations are about equal. By including `Templates.h` in both source files, we are causing one template instantiation to add significant time to our build. +Since the **Instantiation File Path** and the **Specialization Name** are the same for both entries, we infer that there's one expensive template instantiation affecting both of our source files. This explains why the time of each of the two template instantiations are about equal. By including `Templates.h` in both source files, we are causing one template instantiation to add significant time to the build. From the **Specialization Name** column, we can see that the expensive instantiation is `S3>`, which corresponds to this code in `Templates.h`: @@ -170,15 +170,13 @@ You can also consider removing include directives that bring in unnecessary temp For our purposes, let's assume that we need the template instantiation as-is. We can rely on the third approach: moving the definition that causes the expensive template instantiation to a source file. -Since `LargeValue.cpp` is the only source file that calls `LargeValue()`, we can move the definition to `LargeValue.cpp`. This prevents the template instantiation from happening in every translation unit that includes `Templates.h`. - -To do this, remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: +Since `LargeValue.cpp` is the only source file that calls `LargeValue()`, we can move the definition to `LargeValue.cpp`. This prevents the template instantiation from happening in every translation unit that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: ```cpp size_t LargeValue(); ``` -Then, inside `LargeValue.cpp` add the definition: +Inside `LargeValue.cpp` add the definition: ```cpp size_t LargeValue() @@ -187,16 +185,14 @@ size_t LargeValue() } ``` -Now, when you rebuild the project and run Build Insights again, you should see that the expensive template instantiation is no longer listed in the **Templates** view. The build time should also decrease significantly. - -:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization showing reduced template instantiation time."::: +Rebuild the project and run Build Insights again. From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. -The Templates view now shows only one instantiation of S3 instead of two, and the total build time has been significantly reduced. +The build time has significantly decreased. While the template instantiation of `S3` is still contributing to the build time, we've been able to roughly halve the total time by only including necessary template instantiations. You can see the count of `S3` instantiations is now 1 instead of 2. +:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization showing reduced template instantiation time."::: +The Templates view now shows only one instantiation of S3 instead of two, and the total build time is significantly less at 3.152 seconds. :::image-end::: -The build time has significantly decreased. While the template instantiation of `S3` is still contributing to the build time, we've been able to roughly halve the total time by only including necessary template instantiations. You can see the count of `S3` instantiations is now 1 instead of 2. - This technique scales well to larger projects. If multiple files included `Templates.h`, each of those files would have added the instantiation time of `LargeValue()` to the total build time. By moving the definition of `LargeValue()` to a dedicated source file, we minimize our build time. ### Optimize the template implementation @@ -212,12 +208,10 @@ For more advanced template optimization techniques, see [Build Throughput Series ## Tips -- You can **File** > **Save As** the ETL file to a more permanent location to keep a record of the build time. You can then compare it to future builds to see if your changes are improving build time. -- If you inadvertently close the Build Insights window, reopen it by finding the `.etl` file in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. -- To dig into the Build Insights data with Windows Performance Analyzer (WPA), click the **Open in WPA** button in the bottom right of the ETL window. -- Drag columns to change the order of the columns. For instance, you may prefer moving the **Time** column to be the first column. You can hide columns by right-clicking on the column header and deselecting the columns you don't want to see. +- You can use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time. You can then compare it to future builds to see if your changes are improving build time. +- If you inadvertently close the Build Insights window, reopen it by finding the `.etl` file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. +- Drag columns to change the order of the columns. For instance, you may prefer moving the **Wall Time Responsibility** column to be the first column. You can add or hide columns by right-clicking on the column header and selecting or deselecting the columns you don't want to add or hide. - The **Templates** view provides a filter box to find a specific template instantiation. It does partial matches on the name you provide. -- If you forget how to interpret what the **Templates** view is trying to show you, hover over the tab to see a tooltip that describes the view. ## Troubleshooting diff --git a/docs/build-insights/tutorials/media/templates-view-after-fix.png b/docs/build-insights/tutorials/media/templates-view-after-fix.png new file mode 100644 index 0000000000000000000000000000000000000000..7acc1cf276c034591d4b1130bb4f0abe29ec9013 GIT binary patch literal 26143 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 y7XZHx9oCa%DCeNxuK@!+5EJGs=1o+DU literal 0 HcmV?d00001 diff --git a/docs/build-insights/tutorials/media/templates-view-before-fix.png b/docs/build-insights/tutorials/media/templates-view-before-fix.png index 5c52be969024c2a7510a1846efa2157f038a8717..22bd3ba5fd4e642d3ac87506d5ede96a7cd12214 100644 GIT binary patch literal 66831 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

NNt1P$r?@4#%z_x8+ON&|tJ*L6JY2V$HFizj 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 literal 66563 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 Date: Mon, 14 Jul 2025 15:58:38 -0700 Subject: [PATCH 829/981] draft --- docs/build-insights/toc.yml | 2 +- .../tutorials/build-insights-function-view.md | 8 +- .../tutorials/build-insights-template-view.md | 93 +++++++++---------- 3 files changed, 51 insertions(+), 52 deletions(-) diff --git a/docs/build-insights/toc.yml b/docs/build-insights/toc.yml index 5641215a9c..d5f07030b9 100644 --- a/docs/build-insights/toc.yml +++ b/docs/build-insights/toc.yml @@ -6,7 +6,7 @@ items: - name: "Tutorials" expanded: true items: - - name: "Troubleshoot function inlining on build time" + - name: "Troubleshoot function inlining impact on build time" href: ../build-insights/tutorials/build-insights-function-view.md - name: "Troubleshoot template instantiation impact on build time" href: ../build-insights/tutorials/build-insights-template-view.md diff --git a/docs/build-insights/tutorials/build-insights-function-view.md b/docs/build-insights/tutorials/build-insights-function-view.md index 6b78c38d12..35c96d5d19 100644 --- a/docs/build-insights/tutorials/build-insights-function-view.md +++ b/docs/build-insights/tutorials/build-insights-function-view.md @@ -1,11 +1,11 @@ --- -title: "Troubleshoot function inlining on build time" +title: "Troubleshoot function inlining impact on build time" description: "Tutorial for how to use Build Insights function view to troubleshoot the impact of function inlining on build time in your C++ projects." ms.date: 5/30/2024 helpviewer_keywords: ["C++ Build Insights", "inline function analysis", "build time analysis", "__forceinline analysis", "inlines analysis"] ms.topic: troubleshooting-general --- -# Troubleshoot function inlining on build time +# Troubleshoot function inlining impact on build time Use Build Insights **Functions** view to troubleshoot the impact of function inlining on build time in your C++ projects. @@ -128,8 +128,8 @@ Double-click, right-click, or press **Enter** while on a file in the **Functions ## Tips -- You can **File** > **Save As** the ETL file to a more permanent location to keep a record of the build time. You can then compare it to future builds to see if your changes are improving build time. -- If you inadvertently close the Build Insights window, reopen it by finding the `.etl` file in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. +- Use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time information. You can then compare it to future builds to see how your changes are improving things. +- If you close the Build Insights window, reopen it by finding the `.etl` file in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. - To dig into the Build Insights data with Windows Performance Analyzer (WPA), click the **Open in WPA** button in the bottom right of the ETL window. - Drag columns to change the order of the columns. For instance, you may prefer moving the **Time** column to be the first column. You can hide columns by right-clicking on the column header and deselecting the columns you don't want to see. - The **Functions** view provides a filter box to find a function that you're interested in. It does partial matches on the name you provide. diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index fdba6806a9..3177e3af3d 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -1,35 +1,35 @@ --- title: "Troubleshoot template instantiation impact on build time" description: "Tutorial for how to use Build Insights template view to analyze and optimize the impact of template instantiations on build time in your C++ projects." -ms.date: 7/9/2025 +ms.date: 07/14/2025 helpviewer_keywords: ["C++ Build Insights", "template instantiation analysis", "build time analysis"] ms.topic: troubleshooting-general --- + # Troubleshoot template instantiation impact on build time -Use Build Insights **Templates** view to analyze the impact of template instantiations on C++ build time. This feature is especially useful for projects that make heavy use of templates, such as those using template metaprogramming or large generic libraries. +Use Build Insights **Templates** view to analyze the impact of template instantiation on C++ build time. This feature is especially useful for projects that make heavy use of templates, such as those using template metaprogramming or large generic libraries. -Templates view will seem familiar to users of Build Insight's [Functions view](build-insights-function-view.md) due to similar UI and workflow. +**Templates** view will seem familiar to users of Build Insight's [Functions view](build-insights-function-view.md) due to similar UI and workflow. ## Prerequisites - Visual Studio 2022 version 17.10 or later. -- The **C++ Build Insights** component must be installed. It's installed as part of either the Desktop development with C++ workload or the Game development with C++ workload. You can ensure that it is installed by following these steps: +- The **C++ Build Insights** component must be installed. It's installed as part of either the Desktop development with C++ workload or the Game development with C++ workload. You can ensure that it's installed by following these steps: 1. Open the Visual Studio Installer. 1. Choose to modify your Visual Studio installation. - 1. Under the **Individual components** tab, search for and then select **C++ Build Insights**. + 1. Under the **Individual components** tab, search for and then select **C++ Build Insights**, then select **Modify** to install the component. :::image type="complex" source="./media/installer-build-insights.png" alt-text="Screenshot of the Visual Studio Installer":::The search box contains C++ build insights. The item C++ Build Insights is visible and selected.":::image-end::: - 1. Click **Modify** to install the component. - + ## Overview Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as **Templates** view, which displays the time it takes to instantiate each template and shows which template instantiations add the most to your build time. In general, C++ template instantiation happens quickly. In exceptional cases, some template instantiations can noticeably slow down your builds. -In this article, follow along to create a project that demonstrates template instantiation impact on build time, run Build Insights to gather template instantiation times, and analyze the results. +In this article, follow along to create a project that demonstrates template instantiation impact on build time, run Build Insights to analyze that impact, and use those insights to make the build faster. -## Create a template test project +## Create a test project 1. Open Visual Studio and create a new **C++ Console App** project and name it `TemplateAnalysis`. 1. Create a header file called `Templates.h` and replace its contents with the following code: @@ -104,7 +104,7 @@ Template instantiation time collection is off by default to minimize build overh 1. You can also choose where to save the report by selecting **Store Build Insights reports in this directory** and specifying a directory. By default, it's saved in the folder pointed to by the Windows `TEMP` environment variable. 1. Select **OK**. -:::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantion checkbox is selected."::: +:::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantiation checkbox is selected."::: > [!Note] > Collecting template instantiation times increases build time due to the extra data collected. Only enable it when you want to analyze template instantiation bottlenecks. @@ -115,25 +115,16 @@ From the main menu, select **Build** > **Run Build Insights on Selection** > **R :::image type="content" source="./media/build-insights-rebuild-project.png" alt-text="Screenshot of the main menu with Run Build Insights on Selection > Rebuild selected."::: -When the build finishes, an Event Trace Log (ETL) file opens.The generated name is based on the collection time. - -## Understanding Templates view results - -When interpreting Templates view results, keep these points in mind: - -- **Empty view**: If nothing shows up in the Templates view, it means your build time isn't dominated by template instantiations. This is good news because your templates are not a build bottleneck. -- **Duplicate instantiations**: The same template instantiation appearing multiple times with different translation units indicates that multiple source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. -- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold to avoid noise from trivial instantiations. -- **Time aggregation**: The time shown represents the total time spent on that specific template instantiation, including any nested instantiations it triggers. +When the build finishes, an Event Trace Log (ETL) file opens. The filename is based on the collection time. ## Use Templates view to optimize build time -The **Templates** view lists the template instantiations that contributed significantly to build time. Columns provide information about: +The **Templates** view lists the template instantiations that contributed significantly to build time. The columns provide information about: - **Time [sec, %]** shows how long it took to instantiate each template in [wall clock responsibility time (WCTR)](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time/#:~:text=Today%2C%20we%E2%80%99d%20like%20to%20teach%20you%20about%20a,your%20build%2C%20even%20in%20the%20presence%20of%20parallelism). This metric distributes the wall clock time among template instantiations based on their use of parallel compiler threads. -- **Specialization Name** shows each template instantiation, including the template arguments that were used. This helps you identify which template specializations are most expensive. -- **Translation Unit** shows which source file each template instantiation happened in. Multiple files can cause the same template instantiation if they include the same header with the template definition. -- **Instantiation File Path** shows where in your source code the template instantiation happens. This helps you locate the exact line of code responsible for the expensive instantiation. +- **Specialization Name** shows each template instantiation, including the template arguments used. This helps you identify which template specializations are most expensive. +- **Translation Unit** shows the source files where each template instantiation happens. Multiple files can cause the same template instantiation if they include the same header with the template definition. +- **Instantiation File Name** shows where the template is defined that is being instantiated. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations."::: The Templates view shows two template instantiations of struct S3 taking most (79.448%) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. @@ -143,13 +134,22 @@ The Templates view shows two template instantiations of struct S3 taking most (7 - Expand a template to see its various instantiations and where they happened. - Use the search box to focus on specific templates. +### Understanding Templates view results + +When interpreting Templates view results, keep this in mind: + +- **Empty view**: If nothing shows up in the **Templates** view, it means template instantiations don't dominate your build time. This is good news because your templates aren't a build bottleneck. +- **Duplicate instantiations**: If the same template instantiation appears multiple times across different translation units, that indicates that multiple source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. +- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold to avoid noise from trivial instantiations. +- **Time aggregation**: The time shown represents the total time spent on that specific template instantiation, including any nested instantiations. + ## Improve build time by optimizing template instantiations -In the example, we can see that two template instantiations of `S3` are taking 79% of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation to be included in the build. +In this example, we can see that two template instantiations of `S3` are taking 79% of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation. -Since the **Instantiation File Path** and the **Specialization Name** are the same for both entries, we infer that there's one expensive template instantiation affecting both of our source files. This explains why the time of each of the two template instantiations are about equal. By including `Templates.h` in both source files, we are causing one template instantiation to add significant time to the build. +Since the **Instantiation File Name** and the **Specialization Name** are the same for both entries, we infer that there's one expensive template instantiation affecting both of our source files. This explains why the time for each of the two template instantiations are roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. -From the **Specialization Name** column, we can see that the expensive instantiation is `S3>`, which corresponds to this code in `Templates.h`: +From the **Specialization Name** column, we can see that the expensive instantiation is `S3>`, which is instantiated in this code in `Templates.h`: ```cpp inline size_t LargeValue() @@ -158,17 +158,17 @@ inline size_t LargeValue() }; ``` -There are three main ways to decrease the cost of template instantiations: +There are three main ways to decrease the cost of template instantiations. ### Remove unused templates -Review the template in question and determine if it's being used. If it's not being used, the easiest solution is to remove the function or template. In the example, `LargeValue()` is being used by `LargeValue.cpp`, so we can't remove it. +See if the expensive template is being used. If it's not, the easiest solution is to remove the function or template. In the example, `LargeValue()` is being used in `LargeValue.cpp`, so we can't remove it. You can also consider removing include directives that bring in unnecessary template instantiations. It's easy to forget to remove header files when you're no longer using them, and unused includes can cause significant impact on build time. ### Move template instantiations to source files -For our purposes, let's assume that we need the template instantiation as-is. We can rely on the third approach: moving the definition that causes the expensive template instantiation to a source file. +In this example, we can rely on the third approach: move the definition that causes the expensive template instantiation to a source file. Since `LargeValue.cpp` is the only source file that calls `LargeValue()`, we can move the definition to `LargeValue.cpp`. This prevents the template instantiation from happening in every translation unit that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: @@ -185,9 +185,9 @@ size_t LargeValue() } ``` -Rebuild the project and run Build Insights again. From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. +Rebuild the project and run Build Insights again from the main menu: select **Build** > **Run Build Insights on Selection** > **Rebuild**. -The build time has significantly decreased. While the template instantiation of `S3` is still contributing to the build time, we've been able to roughly halve the total time by only including necessary template instantiations. You can see the count of `S3` instantiations is now 1 instead of 2. +The build time has decreased. While the template instantiation of `S3` is still contributing to the build time, by only including necessary template instantiations the build time is nearly half what it was before. The count of `S3` instantiations is now 1 instead of 2. :::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization showing reduced template instantiation time."::: The Templates view now shows only one instantiation of S3 instead of two, and the total build time is significantly less at 3.152 seconds. @@ -197,38 +197,37 @@ This technique scales well to larger projects. If multiple files included `Templ ### Optimize the template implementation -Look at the template instantiation and determine if there's a way to optimize the code. Some optimization techniques include: +Some other optimization techniques include: -- Using simpler template patterns -- Reducing the complexity of template metaprogramming -- Avoiding recursive template instantiation patterns that lead to exponential growth -- Use `if constexpr` instead of SFINAE where possible +- Use simpler template patterns +- Use `if constexpr` instead of Substitution Failure Is Not An Error (SFINAE) where possible +- Avoid recursive template instantiation patterns that lead to exponential growth -For more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/), which provides detailed examples of reducing template instantiation overhead. +For information about more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) which provides detailed examples of reducing template instantiation overhead. ## Tips -- You can use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time. You can then compare it to future builds to see if your changes are improving build time. -- If you inadvertently close the Build Insights window, reopen it by finding the `.etl` file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. -- Drag columns to change the order of the columns. For instance, you may prefer moving the **Wall Time Responsibility** column to be the first column. You can add or hide columns by right-clicking on the column header and selecting or deselecting the columns you don't want to add or hide. +- Use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time information. You can then compare it to future builds to see how your changes are improving things. +- If you close the Build Insights window, reopen it by finding the `.etl` file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. +- Drag columns to change the order of the columns. For instance, you may prefer moving the **Wall Time Responsibility** column to be the first column. You can add or hide columns by right-clicking on the column header and selecting or deselecting the columns you want. - The **Templates** view provides a filter box to find a specific template instantiation. It does partial matches on the name you provide. ## Troubleshooting **Templates view is empty**: This could mean: -- Template data collection is not enabled (check your options settings). -- Your build time is not dominated by template instantiations. +- Your build time isn't dominated by template instantiations. +- Template data collection isn't enabled. To turn it on, see [Enable build time data collection](#enable-build-time-data-collection). - Do a rebuild instead of a build. The Build Insights window doesn't appear if nothing builds, which may be the case if no files changed since the last build. -- Ensure you are using Visual Studio 2022 17.10 or later and that the C++ Build Insights component is installed. +- Ensure you're using Visual Studio 2022 17.10 or later and that the C++ Build Insights component is installed. -**Build is much slower with Templates view enabled:** This is expected due to the extra data collection. Disable **Templates** view when not needed. +**Build is much slower with Templates view enabled:** This is expected due to the extra data collection. Turn off template instantiation collection when not needed. For more information, see [Enable build time data collection](#enable-build-time-data-collection). ## See also - [Build Insights tips and tricks](build-insights-tips.md) -- [#include cleanup in Visual Studio](https://devblogs.microsoft.com/cppblog/include-cleanup-in-visual-studio/) +- [#include cleanup in Visual Studio](https://devblogs.microsoft.com/cppblog/include-cleanup-in-visual-studio) - [Troubleshoot header file impact on build time](build-insights-included-files-view.md) - [Troubleshoot function inlining on build time](build-insights-function-view.md) - [Build Insights now available in Visual Studio 2022](https://devblogs.microsoft.com/cppblog/build-insights-now-available-in-visual-studio-2022) -- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) \ No newline at end of file +- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming) \ No newline at end of file From 48b34df669624cbc99afdac590374999822c824e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 21:58:44 +0800 Subject: [PATCH 830/981] Adjust some semicolon placements --- ...me-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md | 4 ++-- ...ol-containers-using-controls-in-a-non-dialog-container_3.h | 3 +-- docs/standard-library/auto-ptr-class.md | 3 +-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md b/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md index efbd48aaa0..7a13c0f253 100644 --- a/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md +++ b/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md @@ -30,8 +30,8 @@ errno_t _ctime32_s( errno_t _ctime64_s( char* buffer, size_t numberOfElements, - const __time64_t *sourceTime ) -; + const __time64_t *sourceTime +); errno_t _wctime_s( wchar_t* buffer, size_t numberOfElements, diff --git a/docs/mfc/codesnippet/CPP/activex-control-containers-using-controls-in-a-non-dialog-container_3.h b/docs/mfc/codesnippet/CPP/activex-control-containers-using-controls-in-a-non-dialog-container_3.h index b28bf3a66d..bdd7ac78c8 100644 --- a/docs/mfc/codesnippet/CPP/activex-control-containers-using-controls-in-a-non-dialog-container_3.h +++ b/docs/mfc/codesnippet/CPP/activex-control-containers-using-controls-in-a-non-dialog-container_3.h @@ -3,5 +3,4 @@ CCirc m_myCtl; public: afx_msg void OnViewCircdlg(); -} -; \ No newline at end of file +}; diff --git a/docs/standard-library/auto-ptr-class.md b/docs/standard-library/auto-ptr-class.md index 69bdeb67bf..3eda9ff361 100644 --- a/docs/standard-library/auto-ptr-class.md +++ b/docs/standard-library/auto-ptr-class.md @@ -20,8 +20,7 @@ For more information about `throw()` and exception handling, see [Exception Spec class auto_ptr { typedef Type element_type; explicit auto_ptr(Type* ptr = 0) throw(); - auto_ptr(auto_ptr& right) throw() - ; + auto_ptr(auto_ptr& right) throw(); template operator auto_ptr() throw(); template From 11822859112493acc1af1f8c3860027d0cf4ee50 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:00:10 +0800 Subject: [PATCH 831/981] Update metadata in `ctime_s` and variants reference --- ...e-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md b/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md index 7a13c0f253..fcf23eb2ce 100644 --- a/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md +++ b/docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s" title: "ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s" -ms.date: "4/2/2020" +description: "Learn more about: ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s" +ms.date: 4/2/2020 api_name: ["_ctime64_s", "_wctime32_s", "ctime_s", "_wctime64_s", "_ctime32_s", "_wctime_s", "_o__ctime32_s", "_o__ctime64_s", "_o__wctime32_s", "_o__wctime64_s"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-time-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["ctime64_s", "_ctime32_s", "_tctime32_s", "_ctime64_s", "_wctime_s", "_tctime_s", "_tctime64_s", "ctime_s", "ctime32_s"] helpviewer_keywords: ["_wctime32_s function", "ctime64_s function", "_tctime64_s function", "_wctime_s function", "tctime_s function", "_wctime64_s function", "ctime_s function", "ctime32_s function", "_ctime64_s function", "tctime64_s function", "wctime64_s function", "wctime_s function", "_tctime_s function", "tctime32_s function", "wctime32_s function", "time, converting", "_ctime32_s function", "_tctime32_s function"] -ms.assetid: 36ac419a-8000-4389-9fd8-d78b747a009b --- # `ctime_s`, `_ctime32_s`, `_ctime64_s`, `_wctime_s`, `_wctime32_s`, `_wctime64_s` From 765705ef7da8b041a65527766eb5512abfd59168 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:39:36 +0800 Subject: [PATCH 832/981] Convert Command-line errors and warnings list into a table --- ...command-line-errors-d8000-through-d9999.md | 42 ++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md index 5eb48e048e..ad2391255c 100644 --- a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md +++ b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md @@ -12,28 +12,32 @@ The articles in this section provide a reference to the command-line errors and ## Command-line error messages -[Command-Line Error D8016](../../error-messages/tool-errors/command-line-error-d8016.md) \ -[Command-Line Error D8021](../../error-messages/tool-errors/command-line-error-d8021.md) \ -[Command-Line Error D8022](../../error-messages/tool-errors/command-line-error-d8022.md) \ -[Command-Line Error D8027](../../error-messages/tool-errors/command-line-error-d8027.md) \ -[Command-Line Error D8036](../../error-messages/tool-errors/command-line-error-d8036.md) \ -[Command-Line Error D8037](../../error-messages/tool-errors/command-line-error-d8037.md) \ -[Command-Line Error D8045](../../error-messages/tool-errors/command-line-error-d8045.md) \ -[Command-Line Error D8048](../../error-messages/tool-errors/command-line-error-d8048.md) \ -[Command-Line Error D8049](../../error-messages/tool-errors/command-line-error-d8049.md) +| Error | Message | +|--|--| +| [Command-Line Error D8016](../../error-messages/tool-errors/command-line-error-d8016.md) | 'option1' and 'option2' command-line options are incompatible | +| [Command-Line Error D8021](../../error-messages/tool-errors/command-line-error-d8021.md) | invalid numeric argument 'number' | +| [Command-Line Error D8022](../../error-messages/tool-errors/command-line-error-d8022.md) | cannot open 'messagefile' | +| [Command-Line Error D8027](../../error-messages/tool-errors/command-line-error-d8027.md) | cannot execute 'component' | +| [Command-Line Error D8036](../../error-messages/tool-errors/command-line-error-d8036.md) | '/option' not allowed with multiple source files | +| [Command-Line Error D8037](../../error-messages/tool-errors/command-line-error-d8037.md) | cannot create temporary il file; clean temp directory of old il files | +| [Command-Line Error D8045](../../error-messages/tool-errors/command-line-error-d8045.md) | cannot compile C file 'file' with the /clr option | +| [Command-Line Error D8048](../../error-messages/tool-errors/command-line-error-d8048.md) | cannot compile C file '*file-name*' with /ZW option | +| [Command-Line Error D8049](../../error-messages/tool-errors/command-line-error-d8049.md) | cannot execute '*compiler-component*': command line is too long to fit in debug record | ## Command-line warning messages -[Command-Line Warning D9024](../../error-messages/tool-errors/command-line-warning-d9024.md) \ -[Command-Line Warning D9025](../../error-messages/tool-errors/command-line-warning-d9025.md) \ -[Command-Line Warning D9026](../../error-messages/tool-errors/command-line-warning-d9026.md) \ -[Command-Line Warning D9027](../../error-messages/tool-errors/command-line-warning-d9027.md) \ -[Command-Line Warning D9028](../../error-messages/tool-errors/command-line-warning-d9028.md) \ -[Command-Line Warning D9035](../../error-messages/tool-errors/command-line-warning-d9035.md) \ -[Command-Line Warning D9036](../../error-messages/tool-errors/command-line-warning-d9036.md) \ -[Command-Line Warning D9040](../../error-messages/tool-errors/command-line-warning-d9040.md) \ -[Command-Line Warning D9041](../../error-messages/tool-errors/command-line-warning-d9041.md) \ -[Command-Line Warning D9043](../../error-messages/tool-errors/command-line-warning-d9043.md) +| Warning | Message | +|--|--| +| [Command-Line Warning D9024](../../error-messages/tool-errors/command-line-warning-d9024.md) | unrecognized source file type 'filename', object file assumed | +| [Command-Line Warning D9025](../../error-messages/tool-errors/command-line-warning-d9025.md) | overriding 'option1' with 'option2' | +| [Command-Line Warning D9026](../../error-messages/tool-errors/command-line-warning-d9026.md) | options apply to entire command line | +| [Command-Line Warning D9027](../../error-messages/tool-errors/command-line-warning-d9027.md) | source file '\' ignored | +| [Command-Line Warning D9028](../../error-messages/tool-errors/command-line-warning-d9028.md) | minimal rebuild failure, reverting to normal build | +| [Command-Line Warning D9035](../../error-messages/tool-errors/command-line-warning-d9035.md) | option '*option*' has been deprecated and will be removed in a future release | +| [Command-Line Warning D9036](../../error-messages/tool-errors/command-line-warning-d9036.md) | '*option\_2*' instead of '*option\_1*' | +| [Command-Line Warning D9040](../../error-messages/tool-errors/command-line-warning-d9040.md) | ignoring option '/analyze'; Code Analysis warnings are not available in this edition of the compiler | +| [Command-Line Warning D9041](../../error-messages/tool-errors/command-line-warning-d9041.md) | invalid value '*option-value*' for '/*option-name*'; assuming '*assumed-value*'; add '/analyze' to command-line options when specifying this warning | +| [Command-Line Warning D9043](../../error-messages/tool-errors/command-line-warning-d9043.md) | invalid value 'warning_level' for 'compiler_option'; assuming '4999'; Code Analysis warnings are not associated with warning levels | ## See also From 0652a0a47e6ca9079bbfb2ec0d1aef5d0edc3ec9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:41:04 +0800 Subject: [PATCH 833/981] Simplify superfluous relative links in "Command-line errors and warnings" --- ...command-line-errors-d8000-through-d9999.md | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md index ad2391255c..ff2098ed1c 100644 --- a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md +++ b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md @@ -8,36 +8,36 @@ ms.assetid: d02ec7df-26a5-4198-ac92-87b29ec9d5c8 The articles in this section provide a reference to the command-line errors and warnings generated by the build tools. These messages have the form `Dxxxx`, where *xxxx* is a four-digit number. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## Command-line error messages | Error | Message | |--|--| -| [Command-Line Error D8016](../../error-messages/tool-errors/command-line-error-d8016.md) | 'option1' and 'option2' command-line options are incompatible | -| [Command-Line Error D8021](../../error-messages/tool-errors/command-line-error-d8021.md) | invalid numeric argument 'number' | -| [Command-Line Error D8022](../../error-messages/tool-errors/command-line-error-d8022.md) | cannot open 'messagefile' | -| [Command-Line Error D8027](../../error-messages/tool-errors/command-line-error-d8027.md) | cannot execute 'component' | -| [Command-Line Error D8036](../../error-messages/tool-errors/command-line-error-d8036.md) | '/option' not allowed with multiple source files | -| [Command-Line Error D8037](../../error-messages/tool-errors/command-line-error-d8037.md) | cannot create temporary il file; clean temp directory of old il files | -| [Command-Line Error D8045](../../error-messages/tool-errors/command-line-error-d8045.md) | cannot compile C file 'file' with the /clr option | -| [Command-Line Error D8048](../../error-messages/tool-errors/command-line-error-d8048.md) | cannot compile C file '*file-name*' with /ZW option | -| [Command-Line Error D8049](../../error-messages/tool-errors/command-line-error-d8049.md) | cannot execute '*compiler-component*': command line is too long to fit in debug record | +| [Command-Line Error D8016](command-line-error-d8016.md) | 'option1' and 'option2' command-line options are incompatible | +| [Command-Line Error D8021](command-line-error-d8021.md) | invalid numeric argument 'number' | +| [Command-Line Error D8022](command-line-error-d8022.md) | cannot open 'messagefile' | +| [Command-Line Error D8027](command-line-error-d8027.md) | cannot execute 'component' | +| [Command-Line Error D8036](command-line-error-d8036.md) | '/option' not allowed with multiple source files | +| [Command-Line Error D8037](command-line-error-d8037.md) | cannot create temporary il file; clean temp directory of old il files | +| [Command-Line Error D8045](command-line-error-d8045.md) | cannot compile C file 'file' with the /clr option | +| [Command-Line Error D8048](command-line-error-d8048.md) | cannot compile C file '*file-name*' with /ZW option | +| [Command-Line Error D8049](command-line-error-d8049.md) | cannot execute '*compiler-component*': command line is too long to fit in debug record | ## Command-line warning messages | Warning | Message | |--|--| -| [Command-Line Warning D9024](../../error-messages/tool-errors/command-line-warning-d9024.md) | unrecognized source file type 'filename', object file assumed | -| [Command-Line Warning D9025](../../error-messages/tool-errors/command-line-warning-d9025.md) | overriding 'option1' with 'option2' | -| [Command-Line Warning D9026](../../error-messages/tool-errors/command-line-warning-d9026.md) | options apply to entire command line | -| [Command-Line Warning D9027](../../error-messages/tool-errors/command-line-warning-d9027.md) | source file '\' ignored | -| [Command-Line Warning D9028](../../error-messages/tool-errors/command-line-warning-d9028.md) | minimal rebuild failure, reverting to normal build | -| [Command-Line Warning D9035](../../error-messages/tool-errors/command-line-warning-d9035.md) | option '*option*' has been deprecated and will be removed in a future release | -| [Command-Line Warning D9036](../../error-messages/tool-errors/command-line-warning-d9036.md) | '*option\_2*' instead of '*option\_1*' | -| [Command-Line Warning D9040](../../error-messages/tool-errors/command-line-warning-d9040.md) | ignoring option '/analyze'; Code Analysis warnings are not available in this edition of the compiler | -| [Command-Line Warning D9041](../../error-messages/tool-errors/command-line-warning-d9041.md) | invalid value '*option-value*' for '/*option-name*'; assuming '*assumed-value*'; add '/analyze' to command-line options when specifying this warning | -| [Command-Line Warning D9043](../../error-messages/tool-errors/command-line-warning-d9043.md) | invalid value 'warning_level' for 'compiler_option'; assuming '4999'; Code Analysis warnings are not associated with warning levels | +| [Command-Line Warning D9024](command-line-warning-d9024.md) | unrecognized source file type 'filename', object file assumed | +| [Command-Line Warning D9025](command-line-warning-d9025.md) | overriding 'option1' with 'option2' | +| [Command-Line Warning D9026](command-line-warning-d9026.md) | options apply to entire command line | +| [Command-Line Warning D9027](command-line-warning-d9027.md) | source file '\' ignored | +| [Command-Line Warning D9028](command-line-warning-d9028.md) | minimal rebuild failure, reverting to normal build | +| [Command-Line Warning D9035](command-line-warning-d9035.md) | option '*option*' has been deprecated and will be removed in a future release | +| [Command-Line Warning D9036](command-line-warning-d9036.md) | '*option\_2*' instead of '*option\_1*' | +| [Command-Line Warning D9040](command-line-warning-d9040.md) | ignoring option '/analyze'; Code Analysis warnings are not available in this edition of the compiler | +| [Command-Line Warning D9041](command-line-warning-d9041.md) | invalid value '*option-value*' for '/*option-name*'; assuming '*assumed-value*'; add '/analyze' to command-line options when specifying this warning | +| [Command-Line Warning D9043](command-line-warning-d9043.md) | invalid value 'warning_level' for 'compiler_option'; assuming '4999'; Code Analysis warnings are not associated with warning levels | ## See also From 043adf56028b2e4f9cef93c1a18341eb9e08a2ef Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:41:56 +0800 Subject: [PATCH 834/981] Update metadata in "Command-line errors and warnings" --- .../tool-errors/command-line-errors-d8000-through-d9999.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md index ff2098ed1c..af66c94022 100644 --- a/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md +++ b/docs/error-messages/tool-errors/command-line-errors-d8000-through-d9999.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: Command-line errors and warnings" title: "Command-line errors and warnings" -ms.date: "04/17/2019" -ms.assetid: d02ec7df-26a5-4198-ac92-87b29ec9d5c8 +description: "Learn more about: Command-line errors and warnings" +ms.date: 04/17/2019 --- # Command-line errors and warnings From fb09af6a2f22c90c1a65f594b64ecf65631f297a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:48:21 +0800 Subject: [PATCH 835/981] Add blockquotes for error messages in range [C2121, C2140] --- docs/error-messages/compiler-errors-1/compiler-error-c2121.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2122.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2124.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2128.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2129.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2130.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2132.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2133.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2134.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2135.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2137.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2138.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2140.md | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md index bcd354b2fc..75a1bf4ff4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md @@ -8,6 +8,6 @@ ms.assetid: e04f32da-3736-4df3-8a1c-d687afcecf5c --- # Compiler Error C2121 -'#' : invalid character : possibly the result of a macro expansion +> '#' : invalid character : possibly the result of a macro expansion An invalid # character may have been inserted by an incorrect macro that uses the token-pasting operator (##) instead of the stringizing operator (#). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md index a71d88a415..ed31a971b0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md @@ -8,6 +8,6 @@ ms.assetid: bc060002-cd38-481b-a144-65af035ce851 --- # Compiler Error C2122 -'identifier' : prototype parameter in name list illegal +> 'identifier' : prototype parameter in name list illegal The parameter is not a legal type. ANSI C does not support user-defined types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md index 66e5e748be..3fc796a071 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md @@ -8,7 +8,7 @@ ms.assetid: 93392aaa-5582-4d68-8cc5-bd9c62a0ae7e --- # Compiler Error C2124 -divide or mod by zero +> divide or mod by zero A constant expression has a zero denominator. To resolve the error, do not divide by zero. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md index 242935dcf8..df54aa05d3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2128"] --- # Compiler Error C2128 -'function' : alloc_text/same_seg applicable only to functions with C linkage +> 'function' : alloc_text/same_seg applicable only to functions with C linkage `#pragma alloc_text` can only be used with functions declared to have C linkage. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md index bc65e65142..d8f050c22a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md @@ -8,7 +8,7 @@ ms.assetid: 21a8223e-1d22-4baa-9ca1-922b7f751dd0 --- # Compiler Error C2129 -static function 'function' declared but not defined +> static function 'function' declared but not defined A forward reference is made to a **`static`** function that is never defined. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md index cf56b31a74..89d450172e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md @@ -8,7 +8,7 @@ ms.assetid: c6fd5a7e-8f28-4f67-99d1-95a13b0dff90 --- # Compiler Error C2130 -\#line expected a string containing the filename, found 'token' +> #line expected a string containing the filename, found 'token' The optional file name token following [#line](../../preprocessor/hash-line-directive-c-cpp.md) `linenumber` must be a string. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md index c4c2161533..e76e5f7de4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md @@ -8,6 +8,6 @@ ms.assetid: 32902472-49d1-4513-888f-b52d336839d5 --- # Compiler Error C2132 -syntax error : unexpected identifier +> syntax error : unexpected identifier An identifier appears in an unsupported context. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md index bc9e05e319..f5b4f95f43 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md @@ -8,7 +8,7 @@ ms.assetid: 8942f9e8-9818-468f-97db-09dbd124fcae --- # Compiler Error C2133 -'identifier' : unknown size +> 'identifier' : unknown size An unsized array is declared as a member of a class, structure, union, or enumeration. The /Za (ANSI C) option does not allow unsized member arrays. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md index 0436d94a76..08e323bc30 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2134"] --- # Compiler Error C2134 -'function' : call does not result in a constant expression +> 'function' : call does not result in a constant expression A function declared as constexpr can only call other functions declared as constexpr. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md index d830da92ac..1b4b9d2335 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md @@ -8,7 +8,7 @@ ms.assetid: aa360d22-4f79-4de1-b384-93cadd10975f --- # Compiler Error C2135 -'bit operator' : illegal bit field operation +> 'bit operator' : illegal bit field operation The address-of operator (`&`) cannot be applied to a bit field. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md index bb5b13eaa6..deaf8d1bef 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md @@ -8,7 +8,7 @@ ms.assetid: 984687ee-7766-4f6b-ae15-0c9a010e2366 --- # Compiler Error C2137 -empty character constant +> empty character constant The empty character constant ( ' ' ) is not permitted. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md index 77a93bb632..d2519e1c57 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md @@ -8,6 +8,6 @@ ms.assetid: 59fd1a58-3605-45dd-b9c1-0981e8aab26d --- # Compiler Error C2138 -illegal to define an enumeration without any members +> illegal to define an enumeration without any members An enumeration must have at least one member when /Za (disable Microsoft extensions) is selected. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md index 59c8c1212f..948aeead5f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md @@ -8,7 +8,7 @@ ms.assetid: d44a0500-002c-4632-9e5e-c71c3a473ec4 --- # Compiler Error C2140 -'type' : a type that is dependent on a generic type parameter is not allowed as an argument to compiler intrinsic type trait 'trait' +> 'type' : a type that is dependent on a generic type parameter is not allowed as an argument to compiler intrinsic type trait 'trait' An invalid type specifier was passed to a type trait. From cf0fb9bd2693bdcbff0e1d8e00e3fe14ebf5143f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:53:37 +0800 Subject: [PATCH 836/981] Add "Remarks" and "Example" headings for error references in range [C2121, C2140] --- docs/error-messages/compiler-errors-1/compiler-error-c2121.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2122.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2124.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2128.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2129.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2130.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2131.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2132.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2133.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2134.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2135.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2137.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2138.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2139.md | 4 ++-- docs/error-messages/compiler-errors-1/compiler-error-c2140.md | 2 ++ 15 files changed, 46 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md index 75a1bf4ff4..cd01d8c718 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md @@ -10,4 +10,6 @@ ms.assetid: e04f32da-3736-4df3-8a1c-d687afcecf5c > '#' : invalid character : possibly the result of a macro expansion +## Remarks + An invalid # character may have been inserted by an incorrect macro that uses the token-pasting operator (##) instead of the stringizing operator (#). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md index ed31a971b0..10bb751e34 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md @@ -10,4 +10,6 @@ ms.assetid: bc060002-cd38-481b-a144-65af035ce851 > 'identifier' : prototype parameter in name list illegal +## Remarks + The parameter is not a legal type. ANSI C does not support user-defined types. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md index 3fc796a071..396e7e1b5a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md @@ -10,8 +10,12 @@ ms.assetid: 93392aaa-5582-4d68-8cc5-bd9c62a0ae7e > divide or mod by zero +## Remarks + A constant expression has a zero denominator. To resolve the error, do not divide by zero. +## Example + The following sample generates C2124: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md index df54aa05d3..f751504c26 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2128"] > 'function' : alloc_text/same_seg applicable only to functions with C linkage +## Remarks + `#pragma alloc_text` can only be used with functions declared to have C linkage. +## Example + The following sample generates C2128: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md index d8f050c22a..67fa66a900 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md @@ -10,10 +10,14 @@ ms.assetid: 21a8223e-1d22-4baa-9ca1-922b7f751dd0 > static function 'function' declared but not defined +## Remarks + A forward reference is made to a **`static`** function that is never defined. A **`static`** function must be defined within file scope. If the function is defined in another file, it must be declared **`extern`**. +## Example + The following sample generates C2129: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md index 89d450172e..475e387324 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md @@ -10,8 +10,12 @@ ms.assetid: c6fd5a7e-8f28-4f67-99d1-95a13b0dff90 > #line expected a string containing the filename, found 'token' +## Remarks + The optional file name token following [#line](../../preprocessor/hash-line-directive-c-cpp.md) `linenumber` must be a string. +## Example + The following sample generates C2130: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2131.md b/docs/error-messages/compiler-errors-1/compiler-error-c2131.md index 90733559e1..948814f5e2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2131.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2131.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C2131"] > expression did not evaluate to a constant +## Remarks + An expression declared as **`const`** or **`constexpr`** didn't evaluate to a constant at compile time. The compiler must be able to determine the value of the expression at the point it's used. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md index e76e5f7de4..c06820f9c1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md @@ -10,4 +10,6 @@ ms.assetid: 32902472-49d1-4513-888f-b52d336839d5 > syntax error : unexpected identifier +## Remarks + An identifier appears in an unsupported context. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md index f5b4f95f43..b18736dbd1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md @@ -10,8 +10,12 @@ ms.assetid: 8942f9e8-9818-468f-97db-09dbd124fcae > 'identifier' : unknown size +## Remarks + An unsized array is declared as a member of a class, structure, union, or enumeration. The /Za (ANSI C) option does not allow unsized member arrays. +## Example + The following sample generates C2133: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md index 08e323bc30..6ce299e1b1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2134"] > 'function' : call does not result in a constant expression +## Remarks + A function declared as constexpr can only call other functions declared as constexpr. +## Example + The following sample generates C2134: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md index 1b4b9d2335..00bf1ae4c8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md @@ -10,8 +10,12 @@ ms.assetid: aa360d22-4f79-4de1-b384-93cadd10975f > 'bit operator' : illegal bit field operation +## Remarks + The address-of operator (`&`) cannot be applied to a bit field. +## Example + The following sample generates C2135: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md index deaf8d1bef..5325f43e5a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md @@ -10,8 +10,12 @@ ms.assetid: 984687ee-7766-4f6b-ae15-0c9a010e2366 > empty character constant +## Remarks + The empty character constant ( ' ' ) is not permitted. +## Example + The following sample generates C2137: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md index d2519e1c57..71e8e331da 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md @@ -10,4 +10,6 @@ ms.assetid: 59fd1a58-3605-45dd-b9c1-0981e8aab26d > illegal to define an enumeration without any members +## Remarks + An enumeration must have at least one member when /Za (disable Microsoft extensions) is selected. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md index e14f1709bf..77019c0ed3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md @@ -9,10 +9,10 @@ helpviewer_keywords: ["C2139"] > '*type*' : an undefined class is not allowed as an argument to compiler intrinsic type trait '*trait*' -An invalid argument was passed to a type trait. - ## Remarks +An invalid argument was passed to a type trait. + For more information, see [Compiler Support for Type Traits](../../extensions/compiler-support-for-type-traits-cpp-component-extensions.md). ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md index 948aeead5f..e32ff6b772 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md @@ -10,6 +10,8 @@ ms.assetid: d44a0500-002c-4632-9e5e-c71c3a473ec4 > 'type' : a type that is dependent on a generic type parameter is not allowed as an argument to compiler intrinsic type trait 'trait' +## Remarks + An invalid type specifier was passed to a type trait. For more information, see [Compiler Support for Type Traits](../../extensions/compiler-support-for-type-traits-cpp-component-extensions.md). From 1fd9c96db680087bc7f919203a990eb44ced5e47 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:54:39 +0800 Subject: [PATCH 837/981] Replace term "sample" with "example" for error references in range [C2121, C2140] --- docs/error-messages/compiler-errors-1/compiler-error-c2124.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2128.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2129.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2130.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2133.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2134.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2135.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2137.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2139.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2140.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md index 396e7e1b5a..a46e8a8c79 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md @@ -16,7 +16,7 @@ A constant expression has a zero denominator. To resolve the error, do not divid ## Example -The following sample generates C2124: +The following example generates C2124: ```cpp // C2124.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md index f751504c26..276d6f4de7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md @@ -15,7 +15,7 @@ helpviewer_keywords: ["C2128"] ## Example -The following sample generates C2128: +The following example generates C2128: ```cpp // C2128.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md index 67fa66a900..30689baf01 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md @@ -18,7 +18,7 @@ A **`static`** function must be defined within file scope. If the function is de ## Example -The following sample generates C2129: +The following example generates C2129: ```cpp // C2129.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md index 475e387324..37e799f129 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md @@ -16,7 +16,7 @@ The optional file name token following [#line](../../preprocessor/hash-line-dire ## Example -The following sample generates C2130: +The following example generates C2130: ```cpp // C2130.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md index b18736dbd1..65a62e0334 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md @@ -16,7 +16,7 @@ An unsized array is declared as a member of a class, structure, union, or enumer ## Example -The following sample generates C2133: +The following example generates C2133: ```cpp // C2133.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md index 6ce299e1b1..2e79ffe2bb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2134.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2134.md @@ -15,7 +15,7 @@ A function declared as constexpr can only call other functions declared as const ## Example -The following sample generates C2134: +The following example generates C2134: ```cpp // C2134.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md index 00bf1ae4c8..eb6ff4869a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md @@ -16,7 +16,7 @@ The address-of operator (`&`) cannot be applied to a bit field. ## Example -The following sample generates C2135: +The following example generates C2135: ```cpp // C2135.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md index 5325f43e5a..22ce7ae577 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md @@ -16,7 +16,7 @@ The empty character constant ( ' ' ) is not permitted. ## Example -The following sample generates C2137: +The following example generates C2137: ```cpp // C2137.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md index 77019c0ed3..6df0479ed1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md @@ -17,7 +17,7 @@ For more information, see [Compiler Support for Type Traits](../../extensions/co ## Example -The following sample generates C2139. +The following example generates C2139. ```cpp // C2139.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md index e32ff6b772..72316738fd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md @@ -18,7 +18,7 @@ For more information, see [Compiler Support for Type Traits](../../extensions/co ## Example -The following sample generates C2140. +The following example generates C2140. ```cpp // C2140.cpp From 51f00f1bb67c243774fc21a95d90f3f09ebaa2ed Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 15 Jul 2025 22:57:14 +0800 Subject: [PATCH 838/981] Update metadata for error references in range [C2121, C2140] --- .../error-messages/compiler-errors-1/compiler-error-c2121.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2122.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2124.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2128.md | 4 ++-- .../error-messages/compiler-errors-1/compiler-error-c2129.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2130.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2131.md | 4 ++-- .../error-messages/compiler-errors-1/compiler-error-c2132.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2133.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2135.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2137.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2138.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2139.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2140.md | 5 ++--- 14 files changed, 27 insertions(+), 38 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md index cd01d8c718..3c2b477056 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2121.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2121.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2121" title: "Compiler Error C2121" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2121" +ms.date: 11/04/2016 f1_keywords: ["C2121"] helpviewer_keywords: ["C2121"] -ms.assetid: e04f32da-3736-4df3-8a1c-d687afcecf5c --- # Compiler Error C2121 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md index 10bb751e34..31ae2f699a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2122.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2122.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2122" title: "Compiler Error C2122" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2122" +ms.date: 11/04/2016 f1_keywords: ["C2122"] helpviewer_keywords: ["C2122"] -ms.assetid: bc060002-cd38-481b-a144-65af035ce851 --- # Compiler Error C2122 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md index a46e8a8c79..e20cba89e6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2124.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2124.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2124" title: "Compiler Error C2124" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2124" +ms.date: 11/04/2016 f1_keywords: ["C2124"] helpviewer_keywords: ["C2124"] -ms.assetid: 93392aaa-5582-4d68-8cc5-bd9c62a0ae7e --- # Compiler Error C2124 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md index 276d6f4de7..a2d21596f7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2128.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2128.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2128" title: "Compiler Error C2128" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2128" +ms.date: 11/04/2016 f1_keywords: ["C2128"] helpviewer_keywords: ["C2128"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md index 30689baf01..161c15cfb9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2129.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2129.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2129" title: "Compiler Error C2129" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2129" +ms.date: 11/04/2016 f1_keywords: ["C2129"] helpviewer_keywords: ["C2129"] -ms.assetid: 21a8223e-1d22-4baa-9ca1-922b7f751dd0 --- # Compiler Error C2129 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md index 37e799f129..5f1fd27161 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2130.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2130.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2130" title: "Compiler Error C2130" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2130" +ms.date: 11/04/2016 f1_keywords: ["C2130"] helpviewer_keywords: ["C2130"] -ms.assetid: c6fd5a7e-8f28-4f67-99d1-95a13b0dff90 --- # Compiler Error C2130 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2131.md b/docs/error-messages/compiler-errors-1/compiler-error-c2131.md index 948814f5e2..32855ce431 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2131.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2131.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2131" title: "Compiler Error C2131" -ms.date: "02/28/2019" +description: "Learn more about: Compiler Error C2131" +ms.date: 02/28/2019 f1_keywords: ["C2131"] helpviewer_keywords: ["C2131"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md index c06820f9c1..0bf9a33074 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2132.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2132.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2132" title: "Compiler Error C2132" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2132" +ms.date: 11/04/2016 f1_keywords: ["C2132"] helpviewer_keywords: ["C2132"] -ms.assetid: 32902472-49d1-4513-888f-b52d336839d5 --- # Compiler Error C2132 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md index 65a62e0334..fbeed35e5b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2133.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2133.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2133" title: "Compiler Error C2133" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2133" +ms.date: 11/04/2016 f1_keywords: ["C2133"] helpviewer_keywords: ["C2133"] -ms.assetid: 8942f9e8-9818-468f-97db-09dbd124fcae --- # Compiler Error C2133 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md index eb6ff4869a..4af1d4f1b4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2135.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2135.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2135" title: "Compiler Error C2135" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2135" +ms.date: 11/04/2016 f1_keywords: ["C2135"] helpviewer_keywords: ["C2135"] -ms.assetid: aa360d22-4f79-4de1-b384-93cadd10975f --- # Compiler Error C2135 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md index 22ce7ae577..283c3c3777 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2137.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2137.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2137" title: "Compiler Error C2137" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2137" +ms.date: 11/04/2016 f1_keywords: ["C2137"] helpviewer_keywords: ["C2137"] -ms.assetid: 984687ee-7766-4f6b-ae15-0c9a010e2366 --- # Compiler Error C2137 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md index 71e8e331da..3b597d22ad 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2138.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2138.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2138" title: "Compiler Error C2138" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2138" +ms.date: 11/04/2016 f1_keywords: ["C2138"] helpviewer_keywords: ["C2138"] -ms.assetid: 59fd1a58-3605-45dd-b9c1-0981e8aab26d --- # Compiler Error C2138 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md index 6df0479ed1..3f09eaac25 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2139.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2139.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2139" title: "Compiler Error C2139" +description: "Learn more about: Compiler Error C2139" ms.date: 05/03/2021 f1_keywords: ["C2139"] helpviewer_keywords: ["C2139"] diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md index 72316738fd..5d5a064807 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2140.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2140.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2140" title: "Compiler Error C2140" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2140" +ms.date: 11/04/2016 f1_keywords: ["C2140"] helpviewer_keywords: ["C2140"] -ms.assetid: d44a0500-002c-4632-9e5e-c71c3a473ec4 --- # Compiler Error C2140 From a4dacbd473f7fa5d0b748f341276f7815e1a3473 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 15 Jul 2025 15:34:04 -0700 Subject: [PATCH 839/981] alphabetize list --- docs/sanitizers/asan-runtime.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/sanitizers/asan-runtime.md b/docs/sanitizers/asan-runtime.md index eefff67b8e..52fac2efa2 100644 --- a/docs/sanitizers/asan-runtime.md +++ b/docs/sanitizers/asan-runtime.md @@ -140,13 +140,9 @@ For more information, see the [Differences with Clang 12.0](asan.md#differences) ### MSVC-specific AddressSanitizer runtime options -- `windows_hook_legacy_allocators` - Boolean, set to `false` to disable interception of [`GlobalAlloc`](/windows/win32/api/winbase/nf-winbase-globalalloc) and [`LocalAlloc`](/windows/win32/api/winbase/nf-winbase-localalloc) allocators. +- [`continue_on_error`](asan-continue-on-error.md) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. + - > [!NOTE] - > The option `windows_hook_legacy_allocators` wasn't available in the public llvm-project runtime when this article was written. The option may eventually be contributed back to the public project; however, it's dependent on code review and community acceptance. - > - > The option `windows_hook_rtl_allocators`, previously an opt-in feature while AddressSanitizer was experimental, is now enabled by default. In versions before Visual Studio 2022 version 17.4.6, the default option value is `false`. In Visual Studio 2022 version 17.4.6 and later versions, the option `windows_hook_rtl_allocators` defaults to `true`. - `iat_overwrite` String, set to `"error"` by default. Other possible values are `"protect"` and `"ignore"`. Some modules may overwrite the [`import address table`](/windows/win32/debug/pe-format#import-address-table) of other modules to customize implementations of certain functions. For example, drivers commonly provide custom implementations for specific hardware. The `iat_overwrite` option manages the AddressSanitizer runtime's protection against overwrites for specific [`memoryapi.h`](/windows/win32/api/memoryapi/) functions. The runtime currently tracks the [`VirtualAlloc`](/windows/win32/api/memoryapi/nf-memoryapi-virtualalloc), [`VirtualProtect`](/windows/win32/api/memoryapi/nf-memoryapi-virtualprotect), and [`VirtualQuery`](/windows/win32/api/memoryapi/nf-memoryapi-virtualquery) functions for protection. This option is available in Visual Studio 2022 version 17.5 Preview 1 and later versions. The following `iat_overwrite` values control how the runtime reacts when protected functions are overwritten: @@ -160,7 +156,14 @@ Boolean (false by default), set to `true` to enable the process to terminate wit >[!NOTE] >When abort_on_error value is set to true, on Windows the program terminates with an exit(3). In order to not change current behavior we decided to introduce this new option instead. If both abort_on_error and windows_fast_fail_on_error are true, the program will exit with the __fastfail. -- [`continue_on_error`](asan-continue-on-error.md) Boolean, set to `false` by default. When set to `true`, it allows the program to continue executing after a memory violation is reported, allowing you to collect multiple error reports. +- `windows_hook_legacy_allocators` + Boolean, set to `false` to disable interception of [`GlobalAlloc`](/windows/win32/api/winbase/nf-winbase-globalalloc) and [`LocalAlloc`](/windows/win32/api/winbase/nf-winbase-localalloc) allocators. + + > [!NOTE] + > The option `windows_hook_legacy_allocators` wasn't available in the public llvm-project runtime when this article was written. The option may eventually be contributed back to the public project; however, it's dependent on code review and community acceptance. + > + > The option `windows_hook_rtl_allocators`, previously an opt-in feature while AddressSanitizer was experimental, is now enabled by default. In versions before Visual Studio 2022 version 17.4.6, the default option value is `false`. In Visual Studio 2022 version 17.4.6 and later versions, the option `windows_hook_rtl_allocators` defaults to `true`. + ## AddressSanitizer list of intercepted functions (Windows) From e1793134bbd30e3629a3033d3ac17ddb9e946cf4 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 15 Jul 2025 16:25:01 -0700 Subject: [PATCH 840/981] edit pass --- .../tutorials/build-insights-template-view.md | 94 +++++++++---------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index 3177e3af3d..f43f2eecf6 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -8,31 +8,31 @@ ms.topic: troubleshooting-general # Troubleshoot template instantiation impact on build time -Use Build Insights **Templates** view to analyze the impact of template instantiation on C++ build time. This feature is especially useful for projects that make heavy use of templates, such as those using template metaprogramming or large generic libraries. +Use the Build Insights **Templates** view to see how template instantiation affects C++ build time. It's especially helpful for projects that use lots of templates, like those with template metaprogramming or large generic libraries. -**Templates** view will seem familiar to users of Build Insight's [Functions view](build-insights-function-view.md) due to similar UI and workflow. +The **Templates** view works like the Build Insights [Functions view](build-insights-function-view.md). ## Prerequisites - Visual Studio 2022 version 17.10 or later. -- The **C++ Build Insights** component must be installed. It's installed as part of either the Desktop development with C++ workload or the Game development with C++ workload. You can ensure that it's installed by following these steps: +- The **C++ Build Insights** component must be installed. It's included in either the Desktop development with C++ workload or the Game development with C++ workload. To check if it's installed, follow these steps: 1. Open the Visual Studio Installer. - 1. Choose to modify your Visual Studio installation. - 1. Under the **Individual components** tab, search for and then select **C++ Build Insights**, then select **Modify** to install the component. - :::image type="complex" source="./media/installer-build-insights.png" alt-text="Screenshot of the Visual Studio Installer":::The search box contains C++ build insights. The item C++ Build Insights is visible and selected.":::image-end::: + 1. Select **Modify** to change your Visual Studio installation. + 1. On the **Individual components** tab, search for and select **C++ Build Insights**, then select **Close** to finish installing the component. + :::image type="content" source="./media/installer-build-insights.png" alt-text="Screenshot of the Visual Studio Installer. The search box contains C++ Build Insights. The item C++ Build Insights is visible and selected."::: ## Overview -Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as **Templates** view, which displays the time it takes to instantiate each template and shows which template instantiations add the most to your build time. +Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as the **Templates** view, which shows the time it takes to instantiate each template and which template instantiations add the most to your build time. -In general, C++ template instantiation happens quickly. In exceptional cases, some template instantiations can noticeably slow down your builds. +In general, C++ template instantiation happens quickly. In rare cases, some template instantiations can noticeably slow down your build. -In this article, follow along to create a project that demonstrates template instantiation impact on build time, run Build Insights to analyze that impact, and use those insights to make the build faster. +In this article, you create a project that shows how template instantiation affects build time, run Build Insights to analyze the impact, and use those insights to make the build faster. ## Create a test project -1. Open Visual Studio and create a new **C++ Console App** project and name it `TemplateAnalysis`. -1. Create a header file called `Templates.h` and replace its contents with the following code: +1. Open Visual Studio and create a new **C++ Console App** project. Name it `TemplateAnalysis`. +1. Create a header file named `Templates.h`, then replace its contents with the following code: ```cpp #pragma once @@ -63,7 +63,7 @@ In this article, follow along to create a project that demonstrates template ins } ``` -1. Create a source file called `LargeValue.cpp` and replace its contents with the following code: +1. Create a source file named `LargeValue.cpp`, then replace its contents with the following code: ```cpp #include "Templates.h" @@ -96,12 +96,12 @@ In this article, follow along to create a project that demonstrates template ins ## Enable build time data collection -Template instantiation time collection is off by default to minimize build overhead. To enable it: +Template instantiation time collection is off by default to minimize build overhead. To turn it on: 1. In Visual Studio, go to **Tools** > **Options**. 1. In the **Options** dialog, expand **Build Insights** in the left navigation. 1. Select **Collect Template Instantiation**. -1. You can also choose where to save the report by selecting **Store Build Insights reports in this directory** and specifying a directory. By default, it's saved in the folder pointed to by the Windows `TEMP` environment variable. +1. To choose where to save the report, select **Store Build Insights reports in this directory** and enter a directory. By default, it's saved in the folder pointed to by the Windows `TEMP` environment variable. 1. Select **OK**. :::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantiation checkbox is selected."::: @@ -111,45 +111,45 @@ Template instantiation time collection is off by default to minimize build overh ## Run Build Insights to get template instantiation data -From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. You can also right-click a project in the solution explorer and choose **Run Build Insights** > **Rebuild**. Choose **Rebuild** instead of **Build** to measure the build time for the entire project. +From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. You can also right-click a project in Solution Explorer and select **Run Build Insights** > **Rebuild**. Choose **Rebuild** instead of **Build** to measure the build time for the entire project. :::image type="content" source="./media/build-insights-rebuild-project.png" alt-text="Screenshot of the main menu with Run Build Insights on Selection > Rebuild selected."::: -When the build finishes, an Event Trace Log (ETL) file opens. The filename is based on the collection time. +When the build finishes, an Event Trace Log (ETL) file opens. The file name is based on the collection time. ## Use Templates view to optimize build time The **Templates** view lists the template instantiations that contributed significantly to build time. The columns provide information about: -- **Time [sec, %]** shows how long it took to instantiate each template in [wall clock responsibility time (WCTR)](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time/#:~:text=Today%2C%20we%E2%80%99d%20like%20to%20teach%20you%20about%20a,your%20build%2C%20even%20in%20the%20presence%20of%20parallelism). This metric distributes the wall clock time among template instantiations based on their use of parallel compiler threads. -- **Specialization Name** shows each template instantiation, including the template arguments used. This helps you identify which template specializations are most expensive. -- **Translation Unit** shows the source files where each template instantiation happens. Multiple files can cause the same template instantiation if they include the same header with the template definition. -- **Instantiation File Name** shows where the template is defined that is being instantiated. +- **Time [sec, %]** shows how long it takes to instantiate each template in [wall clock responsibility time (WCTR)](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time/#:~:text=Today%2C%20we%E2%80%99d%20like%20to%20teach%20you%20about%20a,your%20build%2C%20even%20in%20the%20presence%20of%20parallelism). This metric distributes the wall clock time among template instantiations based on their use of parallel compiler threads. +- **Specialization Name** shows each template instantiation, including the template arguments used. This helps you find which template specializations are most expensive. +- **Translation Unit** shows the source files where each template instantiation happens. Different files can cause the same template instantiation if they include the same header with the template definition. +- **Instantiation File Name** shows where the template is defined. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations."::: -The Templates view shows two template instantiations of struct S3 taking most (79.448%) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. +The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. :::image-end::: - Sort by **Time** to find the templates that take the longest to instantiate. -- Expand a template to see its various instantiations and where they happened. +- Expand a template to see its instantiations and where they happened. - Use the search box to focus on specific templates. ### Understanding Templates view results When interpreting Templates view results, keep this in mind: -- **Empty view**: If nothing shows up in the **Templates** view, it means template instantiations don't dominate your build time. This is good news because your templates aren't a build bottleneck. -- **Duplicate instantiations**: If the same template instantiation appears multiple times across different translation units, that indicates that multiple source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. -- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold to avoid noise from trivial instantiations. -- **Time aggregation**: The time shown represents the total time spent on that specific template instantiation, including any nested instantiations. +- **Empty view**: If nothing shows up in the **Templates** view, template instantiations don't dominate your build time. That's good news because your templates aren't a build bottleneck. +- **Duplicate instantiations**: If the same template instantiation appears multiple times across different translation units, different source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. +- **Threshold filtering**: The view only shows instantiations whose contribution exceeds a certain threshold, so you can focus on the most impactful ones and avoid noise from trivial instantiations. +- **Time aggregation**: The time shown is the total time spent on that specific template instantiation, including any nested instantiations. ## Improve build time by optimizing template instantiations -In this example, we can see that two template instantiations of `S3` are taking 79% of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` are causing this template instantiation. +In this example, two template instantiations of `S3` take 79 percent of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` cause this template instantiation. -Since the **Instantiation File Name** and the **Specialization Name** are the same for both entries, we infer that there's one expensive template instantiation affecting both of our source files. This explains why the time for each of the two template instantiations are roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. +Because the **Instantiation File Name** and the **Specialization Name** are the same for both entries, there's one expensive template instantiation that affects both source files. That's why the time for each of the two template instantiations is roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. -From the **Specialization Name** column, we can see that the expensive instantiation is `S3>`, which is instantiated in this code in `Templates.h`: +From the **Specialization Name** column, the expensive instantiation is `S3>`, which is instantiated in this code in `Templates.h`: ```cpp inline size_t LargeValue() @@ -158,19 +158,19 @@ inline size_t LargeValue() }; ``` -There are three main ways to decrease the cost of template instantiations. +Here are three main ways to decrease the cost of template instantiations. ### Remove unused templates -See if the expensive template is being used. If it's not, the easiest solution is to remove the function or template. In the example, `LargeValue()` is being used in `LargeValue.cpp`, so we can't remove it. +Check if the expensive template is used. If it isn't, the easiest solution is to remove the function or template. In the example, `LargeValue()` is used in `LargeValue.cpp`, so you can't remove it. -You can also consider removing include directives that bring in unnecessary template instantiations. It's easy to forget to remove header files when you're no longer using them, and unused includes can cause significant impact on build time. +Consider removing include directives that bring in unnecessary template instantiations. It's easy to forget to remove header files when you aren't using them, and unused includes can significantly affect build time. ### Move template instantiations to source files -In this example, we can rely on the third approach: move the definition that causes the expensive template instantiation to a source file. +In this example, rely on the third approach: move the definition that causes the expensive template instantiation to a source file. -Since `LargeValue.cpp` is the only source file that calls `LargeValue()`, we can move the definition to `LargeValue.cpp`. This prevents the template instantiation from happening in every translation unit that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: +Because `LargeValue.cpp` is the only source file that calls `LargeValue()`, move the definition to `LargeValue.cpp`. This change prevents the template instantiation from happening in every translation unit that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: ```cpp size_t LargeValue(); @@ -185,43 +185,43 @@ size_t LargeValue() } ``` -Rebuild the project and run Build Insights again from the main menu: select **Build** > **Run Build Insights on Selection** > **Rebuild**. +Rebuild the project and run Build Insights again from the main menu. Select **Build** > **Run Build Insights on Selection** > **Rebuild**. -The build time has decreased. While the template instantiation of `S3` is still contributing to the build time, by only including necessary template instantiations the build time is nearly half what it was before. The count of `S3` instantiations is now 1 instead of 2. +The build time decreases. While the template instantiation of `S3` still contributes to the build time, including only necessary template instantiations cuts the build time nearly in half. The count of `S3` instantiations is now one instead of two. -:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization showing reduced template instantiation time."::: +:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization. The view shows reduced template instantiation time."::: The Templates view now shows only one instantiation of S3 instead of two, and the total build time is significantly less at 3.152 seconds. :::image-end::: -This technique scales well to larger projects. If multiple files included `Templates.h`, each of those files would have added the instantiation time of `LargeValue()` to the total build time. By moving the definition of `LargeValue()` to a dedicated source file, we minimize our build time. +This technique works well for larger projects. If multiple files include `Templates.h`, each file adds the instantiation time of `LargeValue()` to the total build time. By moving the definition of `LargeValue()` to a dedicated source file, you minimize build time. ### Optimize the template implementation -Some other optimization techniques include: +Other optimization techniques include: - Use simpler template patterns -- Use `if constexpr` instead of Substitution Failure Is Not An Error (SFINAE) where possible +- Use `if constexpr` instead of Substitution Failure Is Not An Error (SFINAE) when possible - Avoid recursive template instantiation patterns that lead to exponential growth -For information about more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/) which provides detailed examples of reducing template instantiation overhead. +For more advanced template optimization techniques, see [Build Throughput Series: More Efficient Template Metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming/), which provides detailed examples of reducing template instantiation overhead. ## Tips - Use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time information. You can then compare it to future builds to see how your changes are improving things. - If you close the Build Insights window, reopen it by finding the `.etl` file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. -- Drag columns to change the order of the columns. For instance, you may prefer moving the **Wall Time Responsibility** column to be the first column. You can add or hide columns by right-clicking on the column header and selecting or deselecting the columns you want. -- The **Templates** view provides a filter box to find a specific template instantiation. It does partial matches on the name you provide. +- Drag columns to change the order of the columns. For example, you might want to move the **Wall Time Responsibility** column to the first column. You can add or hide columns by right-clicking the column header and selecting or deselecting the columns you want. +- The **Templates** view has a filter box to help you find a specific template instantiation. It does partial matches on the name you provide. ## Troubleshooting -**Templates view is empty**: This could mean: +**Templates view is empty**: This can mean: - Your build time isn't dominated by template instantiations. - Template data collection isn't enabled. To turn it on, see [Enable build time data collection](#enable-build-time-data-collection). -- Do a rebuild instead of a build. The Build Insights window doesn't appear if nothing builds, which may be the case if no files changed since the last build. -- Ensure you're using Visual Studio 2022 17.10 or later and that the C++ Build Insights component is installed. +- Do a rebuild instead of a build. The Build Insights window doesn't appear if nothing builds, which can be the case if no files changed since the last build. +- Make sure you're using Visual Studio 2022 17.10 or later, and that the C++ Build Insights component is installed. -**Build is much slower with Templates view enabled:** This is expected due to the extra data collection. Turn off template instantiation collection when not needed. For more information, see [Enable build time data collection](#enable-build-time-data-collection). +**Build is much slower with Templates view enabled:** This is expected because of the extra data collection. Turn off template instantiation collection when you don't need it. For more information, see [Enable build time data collection](#enable-build-time-data-collection). ## See also From cc6cfb591e0741e9bdd8e6edad5a6ee4fa5f41ce Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 17:50:29 +0800 Subject: [PATCH 841/981] Add missing `#endif` in `_{a,t,w}cmdln` reference --- docs/c-runtime-library/acmdln-tcmdln-wcmdln.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md index 4d60eaa7af..2e17d1fe58 100644 --- a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md +++ b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md @@ -24,6 +24,7 @@ wchar_t * _wcmdln; #define _tcmdln _wcmdln #else #define _tcmdln _acmdln +#endif ``` ## Remarks From 74724236dd81d0a00c491af1525bc4ca8f8fac92 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 17:51:10 +0800 Subject: [PATCH 842/981] Remove unneeded `./` link prefix in `_{a,t,w}cmdln` reference --- docs/c-runtime-library/acmdln-tcmdln-wcmdln.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md index 2e17d1fe58..1953dbdc2f 100644 --- a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md +++ b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md @@ -33,4 +33,4 @@ These CRT internal variables store the complete command line. They're exposed in ## See also -[Global variables](./global-variables.md) +[Global variables](global-variables.md) From 9eb48176d422137fcec3ff230bfce494a085397a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 17:52:13 +0800 Subject: [PATCH 843/981] Update metadata in `_{a,t,w}cmdln` reference --- docs/c-runtime-library/acmdln-tcmdln-wcmdln.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md index 1953dbdc2f..45d1630a09 100644 --- a/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md +++ b/docs/c-runtime-library/acmdln-tcmdln-wcmdln.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: _acmdln, _tcmdln, _wcmdln" title: "_acmdln, _tcmdln, _wcmdln" -ms.date: "11/04/2016" +description: "Learn more about: _acmdln, _tcmdln, _wcmdln" +ms.date: 11/04/2016 api_name: ["_wcmdln", "_acmdln"] api_location: ["msvcrt.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_acmdln", "_wcmdln", "_tcmdln"] helpviewer_keywords: ["_wcmdln global variable", "wcmdln global variable", "_acmdln global variable", "_tcmdln global variable", "tcmdln global variable", "acmdln global variable"] -ms.assetid: 4fc0a6a0-3f93-420a-a19f-5276061ba539 --- # `_acmdln`, `_tcmdln`, `_wcmdln` From e67d86870fbf3e906b4a104597af398d0c810555 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:17:09 +0800 Subject: [PATCH 844/981] Elide duplicate rows in tables --- docs/c-runtime-library/is-isw-routines.md | 1 - docs/c-runtime-library/routine-mappings.md | 1 - docs/mfc/reference/cmfctoolbar-class.md | 1 - docs/mfc/reference/cpane-class.md | 1 - 4 files changed, 4 deletions(-) diff --git a/docs/c-runtime-library/is-isw-routines.md b/docs/c-runtime-library/is-isw-routines.md index 749a96439b..84eb09729b 100644 --- a/docs/c-runtime-library/is-isw-routines.md +++ b/docs/c-runtime-library/is-isw-routines.md @@ -126,7 +126,6 @@ Character has property specified by the `desc` argument. For each valid value of | `_LOWER` | `iswlower(c)` | | `_ALPHA | _BLANK | _DIGIT | _PUNCT` | `iswprint(c)` | | `_PUNCT` | `iswpunct(c)` | -| `_BLANK` | `iswblank(c)` | | `_SPACE` | `iswspace(c)` | | `_UPPER` | `iswupper(c)` | | `_HEX` | `iswxdigit(c)` | diff --git a/docs/c-runtime-library/routine-mappings.md b/docs/c-runtime-library/routine-mappings.md index 087515c0cd..a19cd5a356 100644 --- a/docs/c-runtime-library/routine-mappings.md +++ b/docs/c-runtime-library/routine-mappings.md @@ -127,7 +127,6 @@ For related information, see [Generic-text mappings in tchar.h](../text/generic- | `_tcsnicmp` | `_strnicmp` | `_mbsnbicmp` | `_wcsnicmp` | | `_tcsnicoll` | `_strnicoll` | `_mbsnbicoll` | `_wcsnicoll` | | `_tcsninc` | `_strninc` | `_mbsninc` | `_wcsninc` | -| `_tcsnccnt` | `_strncnt` | `_mbsnccnt` | `_wcsncnt` | | `_tcsnset` | `_strnset` | `_mbsnbset` | `_wcsnset` | | `_tcspbrk` | `strpbrk` | `_mbspbrk` | `wcspbrk` | | `_tcsspnp` | `_strspnp` | `_mbsspnp` | `_wcsspnp` | diff --git a/docs/mfc/reference/cmfctoolbar-class.md b/docs/mfc/reference/cmfctoolbar-class.md index e71eb71307..9e9384ef1d 100644 --- a/docs/mfc/reference/cmfctoolbar-class.md +++ b/docs/mfc/reference/cmfctoolbar-class.md @@ -47,7 +47,6 @@ class CMFCToolBar : public CMFCBaseToolBar |[`CMFCToolBar::CanBeClosed`](#canbeclosed)|Specifies whether a user can close the toolbar. (Overrides [`CBasePane::CanBeClosed`](../../mfc/reference/cbasepane-class.md#canbeclosed).)| |[`CMFCToolBar::CanBeRestored`](#canberestored)|Determines whether the system can restore a toolbar to its original state after customization.| |[`CMFCToolBar::CanFocus`](#canfocus)|Specifies whether the pane can receive focus. (Overrides [`CBasePane::CanFocus`](../../mfc/reference/cbasepane-class.md#canfocus).)| -|[`CMFCToolBar::CanHandleSiblings`](#canhandlesiblings)|Determines whether the toolbar and its sibling are positioned on the same pane.| |[`CMFCToolBar::CommandToIndex`](#commandtoindex)|Returns the index of the button in the toolbar with a specified command ID.| |[`CMFCToolBar::Create`](#create)|Creates a `CMFCToolBar` object.| |[`CMFCToolBar::CreateEx`](#createex)|Creates a `CMFCToolBar` object that uses additional style options, such as large icons.| diff --git a/docs/mfc/reference/cpane-class.md b/docs/mfc/reference/cpane-class.md index 9611f4835a..6e1a4609bc 100644 --- a/docs/mfc/reference/cpane-class.md +++ b/docs/mfc/reference/cpane-class.md @@ -75,7 +75,6 @@ class CPane : public CBasePane |[CPane::OnPressCloseButton](#onpressclosebutton)|Called by the framework when the user chooses the Close button on the caption for the pane.| |`CPane::OnProcessDblClk`|Used internally.| |[CPane::OnShowControlBarMenu](#onshowcontrolbarmenu)|Called by the framework when a special pane menu is about to be displayed.| -|[CPane::OnShowControlBarMenu](#onshowcontrolbarmenu)|Called by the framework when a special pane menu is about to be displayed.| |`CPane::PrepareToDock`|Used internally.| |[CPane::RecalcLayout](#recalclayout)|Recalculates layout information for the pane. (Overrides [CBasePane::RecalcLayout](../../mfc/reference/cbasepane-class.md#recalclayout).)| |[CPane::SaveState](#savestate)|Saves the state of the pane to the registry. (Overrides [CBasePane::SaveState](../../mfc/reference/cbasepane-class.md#savestate).)| From f4cab0c1a6e6f5029b6fdb6baecb2e54a47de31e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:18:53 +0800 Subject: [PATCH 845/981] Update metadata in 2 topics --- docs/c-runtime-library/routine-mappings.md | 4 ++-- docs/mfc/reference/cpane-class.md | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/c-runtime-library/routine-mappings.md b/docs/c-runtime-library/routine-mappings.md index a19cd5a356..8c75157b5c 100644 --- a/docs/c-runtime-library/routine-mappings.md +++ b/docs/c-runtime-library/routine-mappings.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Microsoft specific generic-text functions and the CRT functions they map to." title: "Generic-text function mappings" -ms.date: "11/04/2016" +description: "Learn more about: Microsoft specific generic-text functions and the CRT functions they map to." +ms.date: 11/04/2016 ms.author: twhitney api_name: ["foo",] f1_keywords: ["_cgetts", "_cgetts_s", "_cputts", "_fgettc", "_fgettchar", "_fgetts", "_fputtc", "_fputtchar", "_fputts", "_ftscanf", "_ftscanf_s", "_gettc", "_gettch", "_gettchar", "_gettche", "_getts", "_getts_s", "_istalnum", "_istalpha", "_istascii", "_istcntrl", "_istdigit", "_istgraph", "_istlead", "_istleadbyte", "_istlegal", "_istlower", "_istprint", "_istpunct", "_istspace", "_istupper", "_istxdigit", "_itot", "_itot_s", "_ltot", "_ltot_s", "_puttc", "_puttch", "_puttchar", "_putts", "_sctprintf", "_sntprintf", "_sntprintf_s", "_sntscanf", "_sntscanf_s", "_stprintf", "_stprintf_s", "_stscanf", "_stscanf_s", "_taccess", "_tasctime", "_tasctime_s", "_tccmp", "_tccpy", "_tccpy_s", "_tchdir", "_tclen", "_tchmod", "_tcprintf", "_tcprintf_s", "_tcreat", "_tcscanf", "_tcscanf_s", "_tcscat", "_tcscat_s", "_tcschr", "_tcsclen", "_tcsclen_s", "_tcscmp", "_tcscoll", "_tcscpy", "_tcscpy_s", "_tcscspn", "_tcsdec", "_tcsdup", "_tcserror", "_tcserror_s", "_tcsftime", "_tcsicmp", "_tcsicoll", "_tcsinc", "_tcslen", "_tcslwr", "_tcslwr_s", "_tcsnbcnt", "_tcsncat", "_tcsncat_s", "_tcsnccat", "_tcsnccmp", "_tcsnccmp_s", "_tcsnccoll", "_tcsncmp", "_tcsnccnt", "_tcsnccpy", "_tcsncicmp", "_tcsncicoll", "_tcsncpy", "_tcsncset", "_tcsnextc", "_tcsnicmp", "_tcsnicoll", "_tcsninc", "_tcsnccnt", "_tcsnset", "_tcspbrk", "_tcsspnp", "_tcsrchr", "_tcsrev", "_tcsset", "_tcsspn", "_tcsstr", "_tcstod", "_tcstoi64", "_tcstok", "_tcstok_s", "_tcstol", "_tcstoui64", "_tcstoul", "_tcsupr", "_tcsupr_s", "_tcsxfrm", "_tctime", "_tctime_s", "_tctime32", "_tctime32_s", "_tctime64", "_tctime64_s", "_texecl", "_texecle", "_texeclp", "_texeclpe", "_texecv", "_texecve", "_texecvp", "_texecvpe", "_tfdopen", "_tfindfirst", "_tfindnext", "_tfindnext32", "_tfindnext64", "_tfindnexti64", "_tfindnexti6432", "_tfindnext32i64", "_tfopen", "_tfopen_s", "_tfreopen", "_tfreopen_s", "_tfsopen", "_tfullpath", "_tgetcwd", "_tgetdcwd", "_tgetenv", "_tgetenv_s", "_tmain", "_tmakepath", "_tmakepath_s", "_tmkdir", "_tmktemp", "_tmktemp_s", "_topen", "_topen_s", "_totlower", "_totupper", "_tperror", "_tpopen", "_tprintf", "_tprintf_s", "_tputenv", "_tremove", "_trename", "_trmdir", "_tsearchenv", "_tsearchenv_s", "_tscanf", "_tscanf_s", "_tsetlocale", "_tsopen", "_tsopen_s", "_tspawnl", "_tspawnle", "_tspawnlp", "_tspawnlpe", "_tspawnv", "_tspawnve", "_tspawnvp", "_tspawnvpe", "_tsplitpath", "_tstat", "_tstat32", "_tstati32", "_tstat64", "_tstati64", "_tstof", "_tstoi", "_tstoi64", "_tstol", "_tstrdate", "_tstrdate_s", "_tstrtime", "_tstrtime_s", "_tsystem", "_ttempnam", "_ttmpnam", "_ttmpnam_s", "_ttoi", "_ttoi64", "_ttol", "_tunlink", "_tutime", "_tutime32", "_tutime64", "_tWinMain", "_ui64tot", "_ui64tot_s", "_ultot", "_ultot_s", "_ungettc", "_ungettch", "_vftprintf", "_vftprintf_s", "_vsctprintf", "_vsctprintf_s", "_vsntprintf", "_vsntprintf_s", "_vstprintf", "_vtprintf", "_vtprintf_s"] diff --git a/docs/mfc/reference/cpane-class.md b/docs/mfc/reference/cpane-class.md index 6e1a4609bc..72daa26442 100644 --- a/docs/mfc/reference/cpane-class.md +++ b/docs/mfc/reference/cpane-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CPane Class" title: "CPane Class" -ms.date: "11/04/2016" +description: "Learn more about: CPane Class" +ms.date: 11/04/2016 f1_keywords: ["CPane", "AFXPANE/CPane", "AFXPANE/CPane::AdjustSizeImmediate", "AFXPANE/CPane::AllocElements", "AFXPANE/CPane::AllowShowOnPaneMenu", "AFXPANE/CPane::CalcAvailableSize", "AFXPANE/CPane::CalcInsideRect", "AFXPANE/CPane::CalcRecentDockedRect", "AFXPANE/CPane::CalcSize", "AFXPANE/CPane::CanBeDocked", "AFXPANE/CPane::CanBeTabbedDocument", "AFXPANE/CPane::ConvertToTabbedDocument", "AFXPANE/CPane::CopyState", "AFXPANE/CPane::Create", "AFXPANE/CPane::CreateDefaultMiniframe", "AFXPANE/CPane::CreateEx", "AFXPANE/CPane::DockByMouse", "AFXPANE/CPane::DockPane", "AFXPANE/CPane::DockPaneStandard", "AFXPANE/CPane::DockToFrameWindow", "AFXPANE/CPane::DoesAllowSiblingBars", "AFXPANE/CPane::FloatPane", "AFXPANE/CPane::GetAvailableExpandSize", "AFXPANE/CPane::GetAvailableStretchSize", "AFXPANE/CPane::GetBorders", "AFXPANE/CPane::GetClientHotSpot", "AFXPANE/CPane::GetDockSiteRow", "AFXPANE/CPane::GetExclusiveRowMode", "AFXPANE/CPane::GetHotSpot", "AFXPANE/CPane::GetMinSize", "AFXPANE/CPane::GetPaneName", "AFXPANE/CPane::GetVirtualRect", "AFXPANE/CPane::IsChangeState", "AFXPANE/CPane::IsDragMode", "AFXPANE/CPane::IsInFloatingMultiPaneFrameWnd", "AFXPANE/CPane::IsLeftOf", "AFXPANE/CPane::IsResizable", "AFXPANE/CPane::IsTabbed", "AFXPANE/CPane::LoadState", "AFXPANE/CPane::MoveByAlignment", "AFXPANE/CPane::MovePane", "AFXPANE/CPane::OnAfterChangeParent", "AFXPANE/CPane::OnBeforeChangeParent", "AFXPANE/CPane::OnPressCloseButton", "AFXPANE/CPane::OnShowControlBarMenu", "AFXPANE/CPane::RecalcLayout", "AFXPANE/CPane::SaveState", "AFXPANE/CPane::SetActiveInGroup", "AFXPANE/CPane::SetBorders", "AFXPANE/CPane::SetClientHotSpot", "AFXPANE/CPane::SetDockState", "AFXPANE/CPane::SetExclusiveRowMode", "AFXPANE/CPane::SetMiniFrameRTC", "AFXPANE/CPane::SetMinSize", "AFXPANE/CPane::SetVirtualRect", "AFXPANE/CPane::StretchPaneDeferWndPos", "AFXPANE/CPane::ToggleAutoHide", "AFXPANE/CPane::UndockPane", "AFXPANE/CPane::UpdateVirtualRect", "AFXPANE/CPane::OnAfterDock", "AFXPANE/CPane::OnAfterFloat", "AFXPANE/CPane::OnBeforeDock", "AFXPANE/CPane::OnBeforeFloat", "AFXPANE/CPane::m_bHandleMinSize", "AFXPANE/CPane::m_recentDockInfo"] helpviewer_keywords: ["CPane [MFC], AdjustSizeImmediate", "CPane [MFC], AllocElements", "CPane [MFC], AllowShowOnPaneMenu", "CPane [MFC], CalcAvailableSize", "CPane [MFC], CalcInsideRect", "CPane [MFC], CalcRecentDockedRect", "CPane [MFC], CalcSize", "CPane [MFC], CanBeDocked", "CPane [MFC], CanBeTabbedDocument", "CPane [MFC], ConvertToTabbedDocument", "CPane [MFC], CopyState", "CPane [MFC], Create", "CPane [MFC], CreateDefaultMiniframe", "CPane [MFC], CreateEx", "CPane [MFC], DockByMouse", "CPane [MFC], DockPane", "CPane [MFC], DockPaneStandard", "CPane [MFC], DockToFrameWindow", "CPane [MFC], DoesAllowSiblingBars", "CPane [MFC], FloatPane", "CPane [MFC], GetAvailableExpandSize", "CPane [MFC], GetAvailableStretchSize", "CPane [MFC], GetBorders", "CPane [MFC], GetClientHotSpot", "CPane [MFC], GetDockSiteRow", "CPane [MFC], GetExclusiveRowMode", "CPane [MFC], GetHotSpot", "CPane [MFC], GetMinSize", "CPane [MFC], GetPaneName", "CPane [MFC], GetVirtualRect", "CPane [MFC], IsChangeState", "CPane [MFC], IsDragMode", "CPane [MFC], IsInFloatingMultiPaneFrameWnd", "CPane [MFC], IsLeftOf", "CPane [MFC], IsResizable", "CPane [MFC], IsTabbed", "CPane [MFC], LoadState", "CPane [MFC], MoveByAlignment", "CPane [MFC], MovePane", "CPane [MFC], OnAfterChangeParent", "CPane [MFC], OnBeforeChangeParent", "CPane [MFC], OnPressCloseButton", "CPane [MFC], OnShowControlBarMenu", "CPane [MFC], OnShowControlBarMenu", "CPane [MFC], RecalcLayout", "CPane [MFC], SaveState", "CPane [MFC], SetActiveInGroup", "CPane [MFC], SetBorders", "CPane [MFC], SetClientHotSpot", "CPane [MFC], SetDockState", "CPane [MFC], SetExclusiveRowMode", "CPane [MFC], SetMiniFrameRTC", "CPane [MFC], SetMinSize", "CPane [MFC], SetVirtualRect", "CPane [MFC], StretchPaneDeferWndPos", "CPane [MFC], ToggleAutoHide", "CPane [MFC], UndockPane", "CPane [MFC], UpdateVirtualRect", "CPane [MFC], OnAfterDock", "CPane [MFC], OnAfterFloat", "CPane [MFC], OnBeforeDock", "CPane [MFC], OnBeforeFloat", "CPane [MFC], m_bHandleMinSize", "CPane [MFC], m_recentDockInfo"] -ms.assetid: 5c651a64-3c79-4d94-9676-45f6402a6bc5 --- # CPane Class From c7f5964231b944a325680f3d278f1c4f6acd206b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:45:50 +0800 Subject: [PATCH 846/981] Convert NMAKE errors and warnings list into a table --- .../nmake-errors-u1000-through-u4011.md | 78 ++++++++++--------- 1 file changed, 41 insertions(+), 37 deletions(-) diff --git a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md index 6b68d4ece1..3ec366c014 100644 --- a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md +++ b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md @@ -13,46 +13,50 @@ This section is a reference to the errors and warnings generated by the NMAKE bu ## NMAKE fatal errors -[NMAKE fatal error U1000](nmake-fatal-error-u1000.md) \ -[NMAKE fatal error U1001](nmake-fatal-error-u1001.md) \ -[NMAKE fatal error U1007](nmake-fatal-error-u1007.md) \ -[NMAKE fatal error U1023](nmake-fatal-error-u1023.md) \ -[NMAKE fatal error U1033](nmake-fatal-error-u1033.md) \ -[NMAKE fatal error U1034](nmake-fatal-error-u1034.md) \ -[NMAKE fatal error U1035](nmake-fatal-error-u1035.md) \ -[NMAKE fatal error U1036](nmake-fatal-error-u1036.md) \ -[NMAKE fatal error U1045](nmake-fatal-error-u1045.md) \ -[NMAKE fatal error U1050](nmake-fatal-error-u1050.md) \ -[NMAKE fatal error U1051](nmake-fatal-error-u1051.md) \ -[NMAKE fatal error U1052](nmake-fatal-error-u1052.md) \ -[NMAKE fatal error U1055](nmake-fatal-error-u1055.md) \ -[NMAKE fatal error U1056](nmake-fatal-error-u1056.md) \ -[NMAKE fatal error U1059](nmake-fatal-error-u1059.md) \ -[NMAKE fatal error U1064](nmake-fatal-error-u1064.md) \ -[NMAKE fatal error U1065](nmake-fatal-error-u1065.md) \ -[NMAKE fatal error U1070](nmake-fatal-error-u1070.md) \ -[NMAKE fatal error U1071](nmake-fatal-error-u1071.md) \ -[NMAKE fatal error U1073](nmake-fatal-error-u1073.md) \ -[NMAKE fatal error U1076](nmake-fatal-error-u1076.md) \ -[NMAKE fatal error U1077](nmake-fatal-error-u1077.md) \ -[NMAKE fatal error U1078](nmake-fatal-error-u1078.md) \ -[NMAKE fatal error U1083](nmake-fatal-error-u1083.md) \ -[NMAKE fatal error U1086](nmake-fatal-error-u1086.md) \ -[NMAKE fatal error U1087](nmake-fatal-error-u1087.md) \ -[NMAKE fatal error U1088](nmake-fatal-error-u1088.md) \ -[NMAKE fatal error U1095](nmake-fatal-error-u1095.md) \ -[NMAKE fatal error U1097](nmake-fatal-error-u1097.md) \ -[NMAKE fatal error U1099](nmake-fatal-error-u1099.md) \ -[NMAKE fatal error U1100](nmake-fatal-error-u1100.md) +| Error | Message | +|--|--| +| [NMAKE fatal error U1000](nmake-fatal-error-u1000.md) | syntax error : ')' missing in macro invocation | +| [NMAKE fatal error U1001](nmake-fatal-error-u1001.md) | syntax error : illegal character 'character' in macro | +| [NMAKE fatal error U1007](nmake-fatal-error-u1007.md) | double quotation mark not allowed in name | +| [NMAKE fatal error U1023](nmake-fatal-error-u1023.md) | syntax error in expression | +| [NMAKE fatal error U1033](nmake-fatal-error-u1033.md) | syntax error : 'string' unexpected | +| [NMAKE fatal error U1034](nmake-fatal-error-u1034.md) | syntax error : separator missing | +| [NMAKE fatal error U1035](nmake-fatal-error-u1035.md) | syntax error : expected ':' or '=' separator | +| [NMAKE fatal error U1036](nmake-fatal-error-u1036.md) | syntax error : too many names to left of '=' | +| [NMAKE fatal error U1045](nmake-fatal-error-u1045.md) | spawn failed : *message* | +| [NMAKE fatal error U1050](nmake-fatal-error-u1050.md) | *message* | +| [NMAKE fatal error U1051](nmake-fatal-error-u1051.md) | out of memory | +| [NMAKE fatal error U1052](nmake-fatal-error-u1052.md) | file '*filename*' not found | +| [NMAKE fatal error U1055](nmake-fatal-error-u1055.md) | out of environment space | +| [NMAKE fatal error U1056](nmake-fatal-error-u1056.md) | cannot find command processor | +| [NMAKE fatal error U1059](nmake-fatal-error-u1059.md) | syntax error : '}' missing in dependent | +| [NMAKE fatal error U1064](nmake-fatal-error-u1064.md) | MAKEFILE not found and no target specified | +| [NMAKE fatal error U1065](nmake-fatal-error-u1065.md) | invalid option 'option' | +| [NMAKE fatal error U1070](nmake-fatal-error-u1070.md) | cycle in macro definition 'macroname' | +| [NMAKE fatal error U1071](nmake-fatal-error-u1071.md) | cycle in dependency tree for target 'targetname' | +| [NMAKE fatal error U1073](nmake-fatal-error-u1073.md) | don't know how to make 'targetname' | +| [NMAKE fatal error U1076](nmake-fatal-error-u1076.md) | name too long | +| [NMAKE fatal error U1077](nmake-fatal-error-u1077.md) | 'program' : return code 'value' | +| [NMAKE fatal error U1078](nmake-fatal-error-u1078.md) | constant overflow at 'expression' | +| [NMAKE fatal error U1083](nmake-fatal-error-u1083.md) | target macro 'target' expands to nothing | +| [NMAKE fatal error U1086](nmake-fatal-error-u1086.md) | inference rule cannot have dependents | +| [NMAKE fatal error U1087](nmake-fatal-error-u1087.md) | cannot have : and :: dependents for same target | +| [NMAKE fatal error U1088](nmake-fatal-error-u1088.md) | invalid separator '::' on inference rule | +| [NMAKE fatal error U1095](nmake-fatal-error-u1095.md) | expanded command line 'commandline' too long | +| [NMAKE fatal error U1097](nmake-fatal-error-u1097.md) | filename-parts syntax requires dependent | +| [NMAKE fatal error U1099](nmake-fatal-error-u1099.md) | stack overflow | +| [NMAKE fatal error U1100](nmake-fatal-error-u1100.md) | macro '*macro-name*' is illegal in the context of batch rule '*rule-name*' | ## NMAKE warnings -[NMAKE warning U4001](nmake-warning-u4001.md) \ -[NMAKE warning U4004](nmake-warning-u4004.md) \ -[NMAKE warning U4006](nmake-warning-u4006.md) \ -[NMAKE warning U4007](nmake-warning-u4007.md) \ -[NMAKE warning U4010](nmake-warning-u4010.md) \ -[NMAKE warning U4011](nmake-warning-u4011.md) +| Warning | Message | +|--|--| +| [NMAKE warning U4001](nmake-warning-u4001.md) | command file can be invoked only from command line | +| [NMAKE warning U4004](nmake-warning-u4004.md) | too many rules for target 'targetname' | +| [NMAKE warning U4006](nmake-warning-u4006.md) | special macro undefined : 'macroname' | +| [NMAKE warning U4007](nmake-warning-u4007.md) | filename 'filename' too long; truncating to 8.3 | +| [NMAKE warning U4010](nmake-warning-u4010.md) | 'target' : build failed; /K specified, continuing ... | +| [NMAKE warning U4011](nmake-warning-u4011.md) | 'target' : not all dependents available; target not built | ## See also From d4e04cc9e4b91703564cb88f0eae700385f5f2af Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:47:34 +0800 Subject: [PATCH 847/981] Simplify superfluous relative links in "NMAKE errors and warnings (Uxxxx)" --- .../tool-errors/nmake-errors-u1000-through-u4011.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md index 3ec366c014..2c65ef17c4 100644 --- a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md +++ b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md @@ -9,7 +9,7 @@ ms.assetid: 9dbe2e12-88ca-4df4-b935-17756112bb79 This section is a reference to the errors and warnings generated by the NMAKE build tool. NMAKE errors and warnings have the form U*xxxx*, where *xxxx* is a four-digit number. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## NMAKE fatal errors From 8623b1f6d5b355f50240ad7040a5ae9948b24c5f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:48:02 +0800 Subject: [PATCH 848/981] Remove space before escape in "NMAKE errors and warnings (Uxxxx)" --- .../tool-errors/nmake-errors-u1000-through-u4011.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md index 2c65ef17c4..237546c7b6 100644 --- a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md +++ b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md @@ -60,5 +60,5 @@ This section is a reference to the errors and warnings generated by the NMAKE bu ## See also -[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md) \ +[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md)\ [NMAKE reference](../../build/reference/nmake-reference.md) From 7c30d23b49d66084e29a654605a2046c360bc3e0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 18:48:42 +0800 Subject: [PATCH 849/981] Update metadata in "NMAKE errors and warnings (Uxxxx)" --- .../tool-errors/nmake-errors-u1000-through-u4011.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md index 237546c7b6..f0d916c427 100644 --- a/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md +++ b/docs/error-messages/tool-errors/nmake-errors-u1000-through-u4011.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: NMAKE errors and warnings (Uxxxx)" title: "NMAKE errors and warnings" -ms.date: "04/16/2019" +description: "Learn more about: NMAKE errors and warnings (Uxxxx)" +ms.date: 04/16/2019 f1_keywords: ["nmake"] -ms.assetid: 9dbe2e12-88ca-4df4-b935-17756112bb79 --- # NMAKE errors and warnings (Uxxxx) From 3fe826fad144c9f1e268e66db3c8b13d97a0299e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 23:08:43 +0800 Subject: [PATCH 850/981] Add blockquotes for error messages in range [C2141, C2160] --- docs/error-messages/compiler-errors-1/compiler-error-c2141.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2142.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2143.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2145.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2146.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2147.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2148.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2149.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2151.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2152.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2153.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2154.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2155.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2156.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2157.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2158.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2159.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2160.md | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md index 056b298349..721879f36a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md @@ -8,7 +8,7 @@ ms.assetid: 10cf770f-0500-4220-ac90-a863b7ea5fe6 --- # Compiler Error C2141 -array size overflow +> array size overflow An array exceeds the 2GB limit. Reduce the size of the array. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md index 1920a38963..b3430a69a2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md @@ -8,7 +8,7 @@ ms.assetid: d0dbe10e-0952-49a4-8b33-e82fb7558b19 --- # Compiler Error C2142 -function declarations differ, variable parameters specified only in one of them +> function declarations differ, variable parameters specified only in one of them One declaration of the function contains a variable parameter list. Another declaration does not. ANSI C ([/Za](../../build/reference/za-ze-disable-language-extensions.md)) only. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md index 66f9011fb6..52cbbb59ea 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md @@ -8,7 +8,7 @@ ms.assetid: 1d8d1456-e031-4965-9240-09a6e33ba81c --- # Compiler Error C2143 -syntax error : missing 'token1' before 'token2' +> syntax error : missing 'token1' before 'token2' The compiler expected a specific token (that is, a language element other than white space) and found another token instead. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md index d38fac35d8..87627cf85d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md @@ -8,7 +8,7 @@ ms.assetid: 158e5809-8adb-4195-8ca5-684501defbc8 --- # Compiler Error C2145 -syntax error : missing 'token' before identifier +> syntax error : missing 'token' before identifier The compiler expected `token` and found identifier instead. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md index 083cfd7db7..184ceb8e38 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md @@ -8,7 +8,7 @@ ms.assetid: 6bfb7de6-6723-4486-9350-c66ef88d7a64 --- # Compiler Error C2146 -syntax error : missing 'token' before identifier 'identifier' +> syntax error : missing 'token' before identifier 'identifier' The compiler expected `token` and found `identifier` instead. Possible causes: diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md index 363bd1c286..50cc42c1a1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md @@ -8,7 +8,7 @@ ms.assetid: d1adb3bf-7ece-4815-922c-ad7492fb6670 --- # Compiler Error C2147 -syntax error : 'identifier' is a new keyword +> syntax error : 'identifier' is a new keyword An identifier was used that is now a reserved keyword in the language. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md index f2a12bc67b..da2b94d3c1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md @@ -8,7 +8,7 @@ ms.assetid: e510c2c9-7b57-4ce8-be03-ba363e2cc5d9 --- # Compiler Error C2148 -total size of array must not exceed 0x7fffffff bytes +> total size of array must not exceed 0x7fffffff bytes An array exceeds the limit. Reduce the size of the array. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md index 5eede2573b..393f995958 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md @@ -8,7 +8,7 @@ ms.assetid: 7a106dab-d79f-41b9-85be-f36e86e4d2ab --- # Compiler Error C2149 -'identifier' : named bit field cannot have zero width +> 'identifier' : named bit field cannot have zero width Bit fields can have zero width only if unnamed. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md index 9fffa41bf1..52005946ac 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md @@ -8,6 +8,6 @@ ms.assetid: 7f8dd83a-1f41-46d8-8778-0d1f79ed36c9 --- # Compiler Error C2151 -more than one language attribute +> more than one language attribute A function has more than one keyword ( **`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) specifying a calling convention. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md index 40c3988ecf..e6ac67fc6c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md @@ -8,6 +8,6 @@ ms.assetid: a9ea2b0c-d55d-41c7-ba9f-dd75592ffc8a --- # Compiler Error C2152 -'identifier' : pointers to functions with different attributes +> 'identifier' : pointers to functions with different attributes A pointer to a function with one calling convention (**`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) is assigned to a pointer to a function with another calling convention. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md index 2090da157a..561ea17239 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2153"] --- # Compiler Error C2153 -integer literals must have at least one digit +> integer literals must have at least one digit Hexadecimal and binary literals must contain at least one digit after the leading sequence (`0x`, `0X`, `0b`, or `0B`), otherwise the trailing character may be incorrectly interpreted as a suffix or literal operator. See [Integer literals](../../cpp/numeric-boolean-and-pointer-literals-cpp.md#integer-literals) for more information. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md index a60157128d..add7ed0269 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md @@ -8,7 +8,7 @@ ms.assetid: 98d6b044-5a3a-43ad-95fa-9b916b22468a --- # Compiler Error C2154 -'type' : only enumeration type is allowed as an argument to compiler intrinsic type trait '__underlying_type' +> 'type' : only enumeration type is allowed as an argument to compiler intrinsic type trait '__underlying_type' You can only get the underlying type of an enumeration type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md index d65e37535c..6b55e3c87d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md @@ -8,6 +8,6 @@ ms.assetid: 54d408af-fc48-4121-9011-5e75c7072e01 --- # Compiler Error C2155 -'?' : invalid left operand, expected arithmetic or pointer type +> '?' : invalid left operand, expected arithmetic or pointer type An expression on the left hand side of `?` cannot be compared to zero. You must use an arithmetic or pointer expression that can be compared to zero. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md index 3f26c7e32e..d2ddab0f0d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md @@ -8,7 +8,7 @@ ms.assetid: 136f9c67-2c27-4f61-b7e6-ccd202eca697 --- # Compiler Error C2156 -pragma must be outside function +> pragma must be outside function A pragma that must be specified at a global level (outside a function body) is within a function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md index 5128e4a1b9..3f3fab5b9a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md @@ -8,7 +8,7 @@ ms.assetid: babbca24-16dc-4b69-be14-a675029249c1 --- # Compiler Error C2157 -'function' : must be declared before use in pragma list +> 'function' : must be declared before use in pragma list The function name is not declared before being referenced in the list of functions for an [alloc_text](../../preprocessor/alloc-text.md) pragma. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md index 9701f65a70..f3d214f0f1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md @@ -8,7 +8,7 @@ ms.assetid: 39028899-e95c-4809-8e65-6111118641ee --- # Compiler Error C2158 -'type' : #pragma make_public directive is currently supported for native non-template types only +> 'type' : #pragma make_public directive is currently supported for native non-template types only The [make_public](../../preprocessor/make-public.md) pragma can only be applied to a native, non-template type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md index 70073ebc69..d3926b7dac 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md @@ -8,7 +8,7 @@ ms.assetid: 925a2cbd-43c9-45ee-a373-84004350b380 --- # Compiler Error C2159 -more than one storage class specified +> more than one storage class specified A declaration contains more than one storage class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md index 6353f84bba..1fd6bab2d0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md @@ -8,7 +8,7 @@ ms.assetid: a1f694a7-fb16-4437-b7f5-a1af6da94bc5 --- # Compiler Error C2160 -'##' cannot occur at the beginning of a macro definition +> '##' cannot occur at the beginning of a macro definition A macro definition began with a token-pasting operator (##). From 06a01ad09b5fbf124bf9d33811a0cd83f35f0ccf Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 23:12:56 +0800 Subject: [PATCH 851/981] Add "Remarks" and "Example" headings for error references in range [C2141, C2160] --- docs/error-messages/compiler-errors-1/compiler-error-c2141.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2142.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2143.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2144.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2145.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2146.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2147.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2148.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2149.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2150.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2151.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2152.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2153.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2154.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2155.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2156.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2157.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2158.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2159.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2160.md | 4 ++++ 20 files changed, 58 insertions(+) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md index 721879f36a..52e9dd2448 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md @@ -10,6 +10,8 @@ ms.assetid: 10cf770f-0500-4220-ac90-a863b7ea5fe6 > array size overflow +## Remarks + An array exceeds the 2GB limit. Reduce the size of the array. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md index b3430a69a2..3f6949e228 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md @@ -10,8 +10,12 @@ ms.assetid: d0dbe10e-0952-49a4-8b33-e82fb7558b19 > function declarations differ, variable parameters specified only in one of them +## Remarks + One declaration of the function contains a variable parameter list. Another declaration does not. ANSI C ([/Za](../../build/reference/za-ze-disable-language-extensions.md)) only. +## Example + The following sample generates C2142: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md index 52cbbb59ea..750a7b07d8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md @@ -10,12 +10,16 @@ ms.assetid: 1d8d1456-e031-4965-9240-09a6e33ba81c > syntax error : missing 'token1' before 'token2' +## Remarks + The compiler expected a specific token (that is, a language element other than white space) and found another token instead. Check the [C++ Language Reference](../../cpp/cpp-language-reference.md) to determine where code is syntactically incorrect. Because the compiler may report this error after it encounters the line that causes the problem, check several lines of code that precede the error. C2143 can occur in different situations. +## Examples + It can occur when an operator that can qualify a name (`::`, `->`, and `.`) must be followed by the keyword **`template`**, as in this example: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md index b421b7b1e7..78a2a5536c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md @@ -10,6 +10,8 @@ ms.assetid: 49f3959b-324f-4c06-9588-c0ecef5dc5b3 > syntax error : '*type*' should be preceded by '*token*' +## Remarks + The compiler expected *token* and found *type* instead. This error may be caused by a missing closing brace, right parenthesis, or semicolon. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md index 87627cf85d..bd21fc2532 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md @@ -10,6 +10,8 @@ ms.assetid: 158e5809-8adb-4195-8ca5-684501defbc8 > syntax error : missing 'token' before identifier +## Remarks + The compiler expected `token` and found identifier instead. This error may be caused by a missing semicolon after the last declaration in a block. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md index 184ceb8e38..23161ba2e9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md @@ -10,6 +10,8 @@ ms.assetid: 6bfb7de6-6723-4486-9350-c66ef88d7a64 > syntax error : missing 'token' before identifier 'identifier' +## Remarks + The compiler expected `token` and found `identifier` instead. Possible causes: 1. Spelling or capitalization error. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md index 50cc42c1a1..7a476e6d3b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md @@ -10,8 +10,12 @@ ms.assetid: d1adb3bf-7ece-4815-922c-ad7492fb6670 > syntax error : 'identifier' is a new keyword +## Remarks + An identifier was used that is now a reserved keyword in the language. +## Example + The following sample generates C2147: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md index da2b94d3c1..16028fd4f5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md @@ -10,6 +10,8 @@ ms.assetid: e510c2c9-7b57-4ce8-be03-ba363e2cc5d9 > total size of array must not exceed 0x7fffffff bytes +## Remarks + An array exceeds the limit. Reduce the size of the array. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md index 393f995958..1a35e5fd1e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md @@ -10,8 +10,12 @@ ms.assetid: 7a106dab-d79f-41b9-85be-f36e86e4d2ab > 'identifier' : named bit field cannot have zero width +## Remarks + Bit fields can have zero width only if unnamed. +## Example + The following sample generates C2149: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md index 3fc67eca0f..e2c64d9b23 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md @@ -10,6 +10,8 @@ ms.assetid: 21e82a10-c1d4-4c0d-9dc6-c5d92ea42a31 > '*identifier*' : bit field must have type 'int', 'signed int', or 'unsigned int' +## Remarks + The base type for a bit-field is required to be **`int`**, **`signed int`**, or **`unsigned int`**. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md index 52005946ac..71ac6bdb30 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md @@ -10,4 +10,6 @@ ms.assetid: 7f8dd83a-1f41-46d8-8778-0d1f79ed36c9 > more than one language attribute +## Remarks + A function has more than one keyword ( **`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) specifying a calling convention. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md index e6ac67fc6c..527f9f69a0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md @@ -10,4 +10,6 @@ ms.assetid: a9ea2b0c-d55d-41c7-ba9f-dd75592ffc8a > 'identifier' : pointers to functions with different attributes +## Remarks + A pointer to a function with one calling convention (**`__cdecl`**, **`__stdcall`**, or **`__fastcall`**) is assigned to a pointer to a function with another calling convention. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md index 561ea17239..12594a50a8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2153"] > integer literals must have at least one digit +## Remarks + Hexadecimal and binary literals must contain at least one digit after the leading sequence (`0x`, `0X`, `0b`, or `0B`), otherwise the trailing character may be incorrectly interpreted as a suffix or literal operator. See [Integer literals](../../cpp/numeric-boolean-and-pointer-literals-cpp.md#integer-literals) for more information. +## Example + The following sample generates C2153: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md index add7ed0269..c42c3c4ec8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md @@ -10,6 +10,8 @@ ms.assetid: 98d6b044-5a3a-43ad-95fa-9b916b22468a > 'type' : only enumeration type is allowed as an argument to compiler intrinsic type trait '__underlying_type' +## Remarks + You can only get the underlying type of an enumeration type. For more information, see [Compiler Support for Type Traits](../../extensions/compiler-support-for-type-traits-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md index 6b55e3c87d..9beb9cb867 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md @@ -10,4 +10,6 @@ ms.assetid: 54d408af-fc48-4121-9011-5e75c7072e01 > '?' : invalid left operand, expected arithmetic or pointer type +## Remarks + An expression on the left hand side of `?` cannot be compared to zero. You must use an arithmetic or pointer expression that can be compared to zero. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md index d2ddab0f0d..5cc7ebb445 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md @@ -10,8 +10,12 @@ ms.assetid: 136f9c67-2c27-4f61-b7e6-ccd202eca697 > pragma must be outside function +## Remarks + A pragma that must be specified at a global level (outside a function body) is within a function. +## Example + The following sample generates C2156: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md index 3f3fab5b9a..9cd18f3855 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md @@ -10,8 +10,12 @@ ms.assetid: babbca24-16dc-4b69-be14-a675029249c1 > 'function' : must be declared before use in pragma list +## Remarks + The function name is not declared before being referenced in the list of functions for an [alloc_text](../../preprocessor/alloc-text.md) pragma. +## Example + The following sample generates C2157: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md index f3d214f0f1..705ee91277 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md @@ -10,6 +10,8 @@ ms.assetid: 39028899-e95c-4809-8e65-6111118641ee > 'type' : #pragma make_public directive is currently supported for native non-template types only +## Remarks + The [make_public](../../preprocessor/make-public.md) pragma can only be applied to a native, non-template type. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md index d3926b7dac..656e22fc09 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md @@ -10,8 +10,12 @@ ms.assetid: 925a2cbd-43c9-45ee-a373-84004350b380 > more than one storage class specified +## Remarks + A declaration contains more than one storage class. +## Example + The following sample generates C2159: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md index 1fd6bab2d0..b8360877cc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md @@ -10,8 +10,12 @@ ms.assetid: a1f694a7-fb16-4437-b7f5-a1af6da94bc5 > '##' cannot occur at the beginning of a macro definition +## Remarks + A macro definition began with a token-pasting operator (##). +## Example + The following sample generates C2160: ```cpp From 837a8f998b53ff37fe8982d13a70bc1a0c1442c4 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 23:14:35 +0800 Subject: [PATCH 852/981] Replace term "sample" with "example" for error references in range [C2141, C2160] --- .../compiler-errors-1/compiler-error-c2141.md | 2 +- .../compiler-errors-1/compiler-error-c2142.md | 2 +- .../compiler-errors-1/compiler-error-c2144.md | 4 ++-- .../compiler-errors-1/compiler-error-c2146.md | 6 +++--- .../compiler-errors-1/compiler-error-c2147.md | 2 +- .../compiler-errors-1/compiler-error-c2148.md | 2 +- .../compiler-errors-1/compiler-error-c2149.md | 2 +- .../compiler-errors-1/compiler-error-c2150.md | 2 +- .../compiler-errors-1/compiler-error-c2153.md | 2 +- .../compiler-errors-1/compiler-error-c2156.md | 2 +- .../compiler-errors-1/compiler-error-c2157.md | 2 +- .../compiler-errors-1/compiler-error-c2158.md | 2 +- .../compiler-errors-1/compiler-error-c2159.md | 2 +- .../compiler-errors-1/compiler-error-c2160.md | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md index 52e9dd2448..91cf4c9fe2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md @@ -16,7 +16,7 @@ An array exceeds the 2GB limit. Reduce the size of the array. ## Example -The following sample generates C2141. +The following example generates C2141. ```cpp // C2141.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md index 3f6949e228..67f29e34c9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md @@ -16,7 +16,7 @@ One declaration of the function contains a variable parameter list. Another decl ## Example -The following sample generates C2142: +The following example generates C2142: ```c // C2142.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md index 78a2a5536c..3f13bdf80a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md @@ -22,7 +22,7 @@ You may also see C2144 if you are trying to do type forwarding. See [Type Forwar ## Examples -The following sample generates C2144, and shows a way to fix it: +The following example generates C2144, and shows a way to fix it: ```cpp // C2144.cpp @@ -35,7 +35,7 @@ REF struct MyStruct0; // C2144 REF1 MyStruct1; ``` -The following sample generates C2144, and shows a way to fix it: +The following example generates C2144, and shows a way to fix it: ```cpp // C2144_2.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md index 23161ba2e9..8f2cbec038 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md @@ -22,7 +22,7 @@ This error may be caused by a typographical error. Error [C2065](../../error-mes ## Examples -The following sample generates C2146. +The following example generates C2146. ```cpp // C2146.cpp @@ -41,7 +41,7 @@ int main() { This error can also be generated as a result of compiler conformance work that was done for Visual Studio .NET 2003: missing **`typename`** keyword. -The following sample compiles in Visual Studio .NET 2002 but will fail in Visual Studio .NET 2003: +The following example compiles in Visual Studio .NET 2002 but will fail in Visual Studio .NET 2003: ```cpp // C2146b.cpp @@ -66,7 +66,7 @@ You will also see this error as a result of compiler conformance work that was d The use of `T` from the primary template is not allowed in the explicit specialization. For code to be valid in the Visual Studio .NET 2003 and Visual Studio .NET, replace all instances of the template parameter in the specialization with the explicitly specialized type. -The following sample compiles in Visual Studio .NET but will fail in Visual Studio .NET 2003: +The following example compiles in Visual Studio .NET but will fail in Visual Studio .NET 2003: ```cpp // C2146_c.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md index 7a476e6d3b..c465bed955 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md @@ -16,7 +16,7 @@ An identifier was used that is now a reserved keyword in the language. ## Example -The following sample generates C2147: +The following example generates C2147: ```cpp // C2147.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md index 16028fd4f5..362a27f79a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md @@ -16,7 +16,7 @@ An array exceeds the limit. Reduce the size of the array. ## Example -The following sample generates C2148: +The following example generates C2148: ```cpp // C2148.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md index 1a35e5fd1e..a758a5a47e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md @@ -16,7 +16,7 @@ Bit fields can have zero width only if unnamed. ## Example -The following sample generates C2149: +The following example generates C2149: ```cpp // C2149.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md index e2c64d9b23..de57f08a43 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md @@ -16,7 +16,7 @@ The base type for a bit-field is required to be **`int`**, **`signed int`**, or ## Example -This sample shows how you might encounter C2150, and how you can fix it: +This example shows how you might encounter C2150, and how you can fix it: ```cpp // C2150.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md index 12594a50a8..3507dbaccb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md @@ -15,7 +15,7 @@ Hexadecimal and binary literals must contain at least one digit after the leadin ## Example -The following sample generates C2153: +The following example generates C2153: ```cpp // C2153.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md index 5cc7ebb445..98658c61ae 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md @@ -16,7 +16,7 @@ A pragma that must be specified at a global level (outside a function body) is w ## Example -The following sample generates C2156: +The following example generates C2156: ```cpp // C2156.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md index 9cd18f3855..cf796efaef 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md @@ -16,7 +16,7 @@ The function name is not declared before being referenced in the list of functio ## Example -The following sample generates C2157: +The following example generates C2157: ```cpp // C2157.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md index 705ee91277..e3a8801679 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md @@ -16,7 +16,7 @@ The [make_public](../../preprocessor/make-public.md) pragma can only be applied ## Example -The following sample generates C2158. +The following example generates C2158. ```cpp // C2158.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md index 656e22fc09..af70354f9c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md @@ -16,7 +16,7 @@ A declaration contains more than one storage class. ## Example -The following sample generates C2159: +The following example generates C2159: ```cpp // C2159.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md index b8360877cc..924fd82c3c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md @@ -16,7 +16,7 @@ A macro definition began with a token-pasting operator (##). ## Example -The following sample generates C2160: +The following example generates C2160: ```cpp // C2160.cpp From f63a22c9b4d9a73bbeb217c6f8475a93aca4a613 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 16 Jul 2025 23:17:39 +0800 Subject: [PATCH 853/981] Update metadata for error references in range [C2141, C2160] --- .../error-messages/compiler-errors-1/compiler-error-c2141.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2142.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2143.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2144.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2145.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2146.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2147.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2148.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2149.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2150.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2151.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2152.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2153.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2154.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2155.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2156.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2157.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2158.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2159.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2160.md | 5 ++--- 20 files changed, 39 insertions(+), 58 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md index 91cf4c9fe2..18e160df28 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2141.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2141.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2141" title: "Compiler Error C2141" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2141" +ms.date: 11/04/2016 f1_keywords: ["C2141"] helpviewer_keywords: ["C2141"] -ms.assetid: 10cf770f-0500-4220-ac90-a863b7ea5fe6 --- # Compiler Error C2141 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md index 67f29e34c9..63c8eae944 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2142.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2142.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2142" title: "Compiler Error C2142" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2142" +ms.date: 11/04/2016 f1_keywords: ["C2142"] helpviewer_keywords: ["C2142"] -ms.assetid: d0dbe10e-0952-49a4-8b33-e82fb7558b19 --- # Compiler Error C2142 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md index 750a7b07d8..244566a613 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2143.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2143.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2143" title: "Compiler Error C2143" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2143" +ms.date: 11/04/2016 f1_keywords: ["C2143"] helpviewer_keywords: ["C2143"] -ms.assetid: 1d8d1456-e031-4965-9240-09a6e33ba81c --- # Compiler Error C2143 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md index 3f13bdf80a..c50ffbe8bf 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2144.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2144.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2144" title: "Compiler Error C2144" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2144" +ms.date: 11/04/2016 f1_keywords: ["C2144"] helpviewer_keywords: ["C2144"] -ms.assetid: 49f3959b-324f-4c06-9588-c0ecef5dc5b3 --- # Compiler Error C2144 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md index bd21fc2532..3f0cb125a0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2145.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2145.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2145" title: "Compiler Error C2145" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2145" +ms.date: 11/04/2016 f1_keywords: ["C2145"] helpviewer_keywords: ["C2145"] -ms.assetid: 158e5809-8adb-4195-8ca5-684501defbc8 --- # Compiler Error C2145 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md index 8f2cbec038..075f911dfa 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2146.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2146.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2146" title: "Compiler Error C2146" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2146" +ms.date: 11/04/2016 f1_keywords: ["C2146"] helpviewer_keywords: ["C2146"] -ms.assetid: 6bfb7de6-6723-4486-9350-c66ef88d7a64 --- # Compiler Error C2146 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md index c465bed955..c282a1e2bd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2147.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2147.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2147" title: "Compiler Error C2147" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2147" +ms.date: 11/04/2016 f1_keywords: ["C2147"] helpviewer_keywords: ["C2147"] -ms.assetid: d1adb3bf-7ece-4815-922c-ad7492fb6670 --- # Compiler Error C2147 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md index 362a27f79a..6caab69051 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2148.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2148.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2148" title: "Compiler Error C2148" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2148" +ms.date: 11/04/2016 f1_keywords: ["C2148"] helpviewer_keywords: ["C2148"] -ms.assetid: e510c2c9-7b57-4ce8-be03-ba363e2cc5d9 --- # Compiler Error C2148 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md index a758a5a47e..e6e64526d8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2149.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2149.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2149" title: "Compiler Error C2149" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2149" +ms.date: 11/04/2016 f1_keywords: ["C2149"] helpviewer_keywords: ["C2149"] -ms.assetid: 7a106dab-d79f-41b9-85be-f36e86e4d2ab --- # Compiler Error C2149 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md index de57f08a43..c1595ba514 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2150.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2150.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2150" title: "Compiler Error C2150" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2150" +ms.date: 11/04/2016 f1_keywords: ["C2150"] helpviewer_keywords: ["C2150"] -ms.assetid: 21e82a10-c1d4-4c0d-9dc6-c5d92ea42a31 --- # Compiler Error C2150 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md index 71ac6bdb30..60f0f9ebea 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2151.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2151.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2151" title: "Compiler Error C2151" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2151" +ms.date: 11/04/2016 f1_keywords: ["C2151"] helpviewer_keywords: ["C2151"] -ms.assetid: 7f8dd83a-1f41-46d8-8778-0d1f79ed36c9 --- # Compiler Error C2151 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md index 527f9f69a0..fa096f9730 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2152.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2152.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2152" title: "Compiler Error C2152" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2152" +ms.date: 11/04/2016 f1_keywords: ["C2152"] helpviewer_keywords: ["C2152"] -ms.assetid: a9ea2b0c-d55d-41c7-ba9f-dd75592ffc8a --- # Compiler Error C2152 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md index 3507dbaccb..8f34dce0ad 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2153.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2153.md @@ -1,7 +1,7 @@ --- title: "Compiler Error C2153" description: "Learn more about: Compiler Error C2153" -ms.date: "01/31/2025" +ms.date: 01/31/2025 f1_keywords: ["C2153"] helpviewer_keywords: ["C2153"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md index c42c3c4ec8..021703b64e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2154.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2154.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2154" title: "Compiler Error C2154" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2154" +ms.date: 11/04/2016 f1_keywords: ["C2154"] helpviewer_keywords: ["C2154"] -ms.assetid: 98d6b044-5a3a-43ad-95fa-9b916b22468a --- # Compiler Error C2154 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md index 9beb9cb867..7dfb22df0d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2155.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2155.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2155" title: "Compiler Error C2155" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2155" +ms.date: 11/04/2016 f1_keywords: ["C2155"] helpviewer_keywords: ["C2155"] -ms.assetid: 54d408af-fc48-4121-9011-5e75c7072e01 --- # Compiler Error C2155 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md index 98658c61ae..8ba7b0a0ca 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2156.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2156.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2156" title: "Compiler Error C2156" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2156" +ms.date: 11/04/2016 f1_keywords: ["C2156"] helpviewer_keywords: ["C2156"] -ms.assetid: 136f9c67-2c27-4f61-b7e6-ccd202eca697 --- # Compiler Error C2156 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md index cf796efaef..104d98276b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2157.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2157.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2157" title: "Compiler Error C2157" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2157" +ms.date: 11/04/2016 f1_keywords: ["C2157"] helpviewer_keywords: ["C2157"] -ms.assetid: babbca24-16dc-4b69-be14-a675029249c1 --- # Compiler Error C2157 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md index e3a8801679..4372aa7156 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2158.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2158.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2158" title: "Compiler Error C2158" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2158" +ms.date: 11/04/2016 f1_keywords: ["C2158"] helpviewer_keywords: ["C2158"] -ms.assetid: 39028899-e95c-4809-8e65-6111118641ee --- # Compiler Error C2158 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md index af70354f9c..1463230715 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2159.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2159.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2159" title: "Compiler Error C2159" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2159" +ms.date: 11/04/2016 f1_keywords: ["C2159"] helpviewer_keywords: ["C2159"] -ms.assetid: 925a2cbd-43c9-45ee-a373-84004350b380 --- # Compiler Error C2159 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md index 924fd82c3c..1b9174fbe6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2160.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2160.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2160" title: "Compiler Error C2160" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2160" +ms.date: 11/04/2016 f1_keywords: ["C2160"] helpviewer_keywords: ["C2160"] -ms.assetid: a1f694a7-fb16-4437-b7f5-a1af6da94bc5 --- # Compiler Error C2160 From dfce1d47b4fa3010b2c63dab29eb81ce6e95cd87 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:18:47 +0800 Subject: [PATCH 854/981] Remove "EnterRemarks" in `COleTemplateServer` class reference --- docs/mfc/reference/coletemplateserver-class.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/mfc/reference/coletemplateserver-class.md b/docs/mfc/reference/coletemplateserver-class.md index e497aa5a48..c7fdc19701 100644 --- a/docs/mfc/reference/coletemplateserver-class.md +++ b/docs/mfc/reference/coletemplateserver-class.md @@ -104,10 +104,6 @@ BOOL Unregister(); TRUE if successful; otherwise FALSE. -### Remarks - -EnterRemarks - ## COleTemplateServer::UpdateRegistry Loads file-type information from the document-template string and places that information in the OLE system registry. From c3e0c753ad5adb74c21a8401b8d31fe26058a9fa Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:19:21 +0800 Subject: [PATCH 855/981] Update metadata in `COleTemplateServer` class reference --- docs/mfc/reference/coletemplateserver-class.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/mfc/reference/coletemplateserver-class.md b/docs/mfc/reference/coletemplateserver-class.md index c7fdc19701..79a0b6e661 100644 --- a/docs/mfc/reference/coletemplateserver-class.md +++ b/docs/mfc/reference/coletemplateserver-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: COleTemplateServer Class" title: "COleTemplateServer Class" -ms.date: "11/04/2016" +description: "Learn more about: COleTemplateServer Class" +ms.date: 11/04/2016 f1_keywords: ["COleTemplateServer", "AFXDISP/COleTemplateServer", "AFXDISP/COleTemplateServer::COleTemplateServer", "AFXDISP/COleTemplateServer::ConnectTemplate", "AFXDISP/COleTemplateServer::Unregister", "AFXDISP/COleTemplateServer::UpdateRegistry"] helpviewer_keywords: ["COleTemplateServer [MFC], COleTemplateServer", "COleTemplateServer [MFC], ConnectTemplate", "COleTemplateServer [MFC], Unregister", "COleTemplateServer [MFC], UpdateRegistry"] -ms.assetid: 47a2887d-8162-4993-a842-a784177c7f5c --- # COleTemplateServer Class From f3b5367ec25169703c78bbcab82ce6d7b1858598 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Wed, 16 Jul 2025 17:02:47 -0700 Subject: [PATCH 856/981] acrolinx --- .../tutorials/build-insights-function-view.md | 8 ++++---- .../tutorials/build-insights-template-view.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-function-view.md b/docs/build-insights/tutorials/build-insights-function-view.md index 35c96d5d19..bd0ccd9e31 100644 --- a/docs/build-insights/tutorials/build-insights-function-view.md +++ b/docs/build-insights/tutorials/build-insights-function-view.md @@ -12,7 +12,7 @@ Use Build Insights **Functions** view to troubleshoot the impact of function inl ## Prerequisites - Visual Studio 2022 17.8 or greater. -- C++ Build insights is enabled by default if you install either the Desktop development with C++ workload or the Game development with C++ workload. +- C++ Build Insights is enabled by default if you install either the Desktop development with C++ workload or the Game development with C++ workload. :::image type="complex" source="./media/installer-desktop-cpp-build-insights.png" alt-text="Screenshot of the Visual Studio Installer with the Desktop development with C++ workload selected."::: The list of installed components is shown. C++ Build Insights is highlighted and is selected which means it's installed. @@ -61,7 +61,7 @@ When the build finishes, an Event Trace Log (ETL) file opens. It's saved in the ## Function view -In the window for the ETL file, choose the **Functions** tab. It shows the functions that were compiled and the time it took to generate the code for each function. If the amount of code generated for a function is negligible, it won't appear in the list to avoid degrading build event collection performance. +In the window for the ETL file, choose the **Functions** tab. It shows the functions that were compiled and the time it took to generate the code for each function. If the amount of code generated for a function is negligible, it doesn't appear in the list to avoid degrading build event collection performance. :::image type="complex" source="./media/functions-view-before-fix.png" alt-text="Screenshot of the Build Insights Functions view file."::: In the Function Name column, performPhysicsCalculations() is highlighted and marked with a fire icon. @@ -83,7 +83,7 @@ In this example, the `performPhysicsCalculations` function is taking the most ti In the Function Name column, performPhysicsCalculations() is highlighted and marked with a fire icon. :::image-end::: -Investigating further, by selecting the chevron before that function, and then sorting the **Forceinline Size** column from highest to lowest, we see the biggest contributors to the problem. +By selecting the chevron before that function, and then sorting the **Forceinline Size** column from highest to lowest, we see the biggest contributors to the problem. :::image type="complex" source="./media/functions-view-expanded.png" alt-text="Screenshot of the Build Insights Functions view with an expanded function."::: performPhysicsCalculations() is expanded and shows a long list of functions that were inlined inside it. There are multiple instances of functions such as complexOperation(), recursiveHelper(), and sin() shown. The Forceinline Size column shows that complexOperation() is the largest inlined function at 315 instructions. recursiveHelper() has 119 instructions. Sin() has 75 instructions, but there are many more instances of it than the other functions. @@ -106,7 +106,7 @@ static __forceinline T factorial(int n) } ``` -Perhaps the overall cost of calling this function is insignificant compared to the cost of the function itself. Making a function inline is most beneficial when the time it takes to call the function (pushing arguments on the stack, jumping to the function, popping return arguments, and returning from the function) is roughly similar to the time it takes to execute the function, and when the function is called a lot. When that's not the case, there may be diminishing returns on making it inline. We can try removing the `__forceinline` directive from it to see if it helps the build time. The code for `power`, `sin()` and `cos()` is similar in that the code consists of a loop that will execute many times. We can try removing the `__forceinline` directive from those functions as well. +Perhaps the overall cost of calling this function is insignificant compared to the cost of the function itself. Making a function inline is most beneficial when the time it takes to call the function (pushing arguments on the stack, jumping to the function, popping return arguments, and returning from the function) is roughly similar to the time it takes to execute the function, and when the function is called a lot. When that's not the case, there may be diminishing returns on making it inline. We can try removing the `__forceinline` directive from it to see if it helps the build time. The code for `power`, `sin()`, and `cos()` is similar in that the code consists of a loop that executes many times. We can try removing the `__forceinline` directive from those functions as well. We rerun Build Insights from the main menu by choosing **Build** > **Run Build Insights on Selection** > **Rebuild**. You can also right-click a project in the solution explorer and choose **Run Build Insights** > **Rebuild**. We choose **Rebuild** instead of **Build** to measure the build time for the entire project, as before, and not for just the few files may be dirty right now. diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index f43f2eecf6..c9a57fe323 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -15,7 +15,7 @@ The **Templates** view works like the Build Insights [Functions view](build-insi ## Prerequisites - Visual Studio 2022 version 17.10 or later. -- The **C++ Build Insights** component must be installed. It's included in either the Desktop development with C++ workload or the Game development with C++ workload. To check if it's installed, follow these steps: +- The **C++ Build Insights** component must be installed. Either the Desktop development with C++ workload or the Game development with C++ workload includes it. To check if it's installed, follow these steps: 1. Open the Visual Studio Installer. 1. Select **Modify** to change your Visual Studio installation. 1. On the **Individual components** tab, search for and select **C++ Build Insights**, then select **Close** to finish installing the component. @@ -136,7 +136,7 @@ The Templates view shows two template instantiations of struct S3 taking most (7 ### Understanding Templates view results -When interpreting Templates view results, keep this in mind: +When interpreting Templates view results, consider the following: - **Empty view**: If nothing shows up in the **Templates** view, template instantiations don't dominate your build time. That's good news because your templates aren't a build bottleneck. - **Duplicate instantiations**: If the same template instantiation appears multiple times across different translation units, different source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. From f3e8928a892a18720a1dd4df98cc5d5add113b63 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:18:24 +0800 Subject: [PATCH 857/981] Add forward slash for `/std` compiler options --- docs/cpp/nothrow-cpp.md | 2 +- docs/standard-library/basic-string-view-class.md | 4 ++-- docs/standard-library/string-view.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/cpp/nothrow-cpp.md b/docs/cpp/nothrow-cpp.md index b0749a32f4..c74b0ddc02 100644 --- a/docs/cpp/nothrow-cpp.md +++ b/docs/cpp/nothrow-cpp.md @@ -20,7 +20,7 @@ A **`__declspec`** extended attribute which can be used in the declaration of fu We recommend that all new code use the [`noexcept`](noexcept-cpp.md) operator rather than `__declspec(nothrow)`. -This attribute tells the compiler that the declared function and the functions it calls never throw an exception. However, it does not enforce the directive. In other words, it never causes [`std::terminate`](../standard-library/exception-functions.md#terminate) to be invoked, unlike **`noexcept`**, or in **`std:c++17`** mode (Visual Studio 2017 version 15.5 and later), `throw()`. +This attribute tells the compiler that the declared function and the functions it calls never throw an exception. However, it does not enforce the directive. In other words, it never causes [`std::terminate`](../standard-library/exception-functions.md#terminate) to be invoked, unlike **`noexcept`**, or in **`/std:c++17`** mode (Visual Studio 2017 version 15.5 and later), `throw()`. With the synchronous exception handling model, now the default, the compiler can eliminate the mechanics of tracking the lifetime of certain unwindable objects in such a function, and significantly reduce the code size. Given the following preprocessor directive, the three function declarations below are equivalent in **`/std:c++14`** mode: diff --git a/docs/standard-library/basic-string-view-class.md b/docs/standard-library/basic-string-view-class.md index 014c086606..d1b682c1a9 100644 --- a/docs/standard-library/basic-string-view-class.md +++ b/docs/standard-library/basic-string-view-class.md @@ -138,7 +138,7 @@ If a function is asked to generate a sequence longer than [`max_size`](#max_size ## Requirements -[`std:c++17`](../build/reference/std-specify-language-standard-version.md) or later. +[`/std:c++17`](../build/reference/std-specify-language-standard-version.md) or later. **Header:** `` @@ -1013,7 +1013,7 @@ Null-terminated character string containing the prefix to look for. ### Remarks -`starts_with()` is new in C++20. To use it, specify the [`std:c++20`](../build/reference/std-specify-language-standard-version.md) or later compiler option. +`starts_with()` is new in C++20. To use it, specify the [`/std:c++20`](../build/reference/std-specify-language-standard-version.md) or later compiler option. See [`ends_with`](#ends_with) to see if a string ends with a suffix. diff --git a/docs/standard-library/string-view.md b/docs/standard-library/string-view.md index 7582ab417c..846721c195 100644 --- a/docs/standard-library/string-view.md +++ b/docs/standard-library/string-view.md @@ -6,7 +6,7 @@ helpviewer_keywords: ["string_view header"] --- # `` -Defines the class template `basic_string_view` and related types and operators. (Requires compiler option [`std:c++17`](../build/reference/std-specify-language-standard-version.md) or later.) +Defines the class template `basic_string_view` and related types and operators. (Requires compiler option [`/std:c++17`](../build/reference/std-specify-language-standard-version.md) or later.) ## Syntax @@ -60,7 +60,7 @@ The `` operators can compare `string_view` objects to objects of an - **Namespace:** `std` -- **Compiler Option:** [`std:c++17`](../build/reference/std-specify-language-standard-version.md) or later. +- **Compiler Option:** [`/std:c++17`](../build/reference/std-specify-language-standard-version.md) or later. ## See also From 4cf2343a8463864f990db0883212a41c0d18d102 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:19:36 +0800 Subject: [PATCH 858/981] Update metadata in `nothrow` C++ reference --- docs/cpp/nothrow-cpp.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/cpp/nothrow-cpp.md b/docs/cpp/nothrow-cpp.md index c74b0ddc02..fd5ebc478b 100644 --- a/docs/cpp/nothrow-cpp.md +++ b/docs/cpp/nothrow-cpp.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: nothrow (C++)" title: "nothrow (C++)" -ms.date: "01/03/2018" +description: "Learn more about: nothrow (C++)" +ms.date: 01/03/2018 f1_keywords: ["nothrow_cpp"] helpviewer_keywords: ["__declspec keyword [C++], nothrow", "nothrow __declspec keyword"] -ms.assetid: 0a475139-459c-4ec6-99e8-7ecd0d7f44a3 --- # `nothrow` (C++) From 787e2230987333baad360f913407877aa3fcd203 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:27:43 +0800 Subject: [PATCH 859/981] Add blockquotes for error messages in range [C2161, C2180] --- docs/error-messages/compiler-errors-1/compiler-error-c2161.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2163.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2164.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2165.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2167.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2168.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2169.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2170.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2171.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2172.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2173.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2174.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2175.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2177.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2178.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2179.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2180.md | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md index e552b85448..39de6b4ad2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md @@ -8,7 +8,7 @@ ms.assetid: d6798821-13bb-4e60-924f-85f7bf955387 --- # Compiler Error C2161 -'##' cannot occur at the end of a macro definition +> '##' cannot occur at the end of a macro definition A macro definition ended with a token-pasting operator (##). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md index 8cf898cc43..5a13cfaf57 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md @@ -8,6 +8,6 @@ ms.assetid: 6428d1e9-1ba1-46fc-bbf6-91d6fef2734c --- # Compiler Error C2163 -'function' : not available as an intrinsic function +> 'function' : not available as an intrinsic function An `intrinsic` or `function` pragma lists a function not available in intrinsic form. For example, certain intrinsics are not available when compiling a program that uses /clr programming. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md index 0938243a68..57571d4302 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md @@ -8,7 +8,7 @@ ms.assetid: 55df5024-68a8-45a8-ae6c-e6dba35318a2 --- # Compiler Error C2164 -'function' : intrinsic function not declared +> 'function' : intrinsic function not declared An `intrinsic` pragma uses an undeclared function (only occurs with **/Oi**). Or, one of the compiler intrinsics was used without including its header file. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md index 6cc12f0dcc..85fdf065e5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md @@ -8,7 +8,7 @@ ms.assetid: b108313b-b8cb-4dce-b2ec-f2b31c9cdc87 --- # Compiler Error C2165 -'keyword' : cannot modify pointers to data +> 'keyword' : cannot modify pointers to data The **`__stdcall`**, **`__cdecl`**, or **`__fastcall`** keyword attempts to modify a pointer to data. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md index 04cfdca590..bbdb649706 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md @@ -8,6 +8,6 @@ ms.assetid: 3de3de96-12cd-47df-b24e-34cc9747ef83 --- # Compiler Error C2167 -'function' : too many actual parameters for intrinsic function +> 'function' : too many actual parameters for intrinsic function A reference to an `intrinsic` function has too many parameters. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md index 26574e9a1b..07b70732f0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md @@ -8,6 +8,6 @@ ms.assetid: 625e7dc3-ca74-4980-8268-8d5c0245e376 --- # Compiler Error C2168 -'function' : too few actual parameters for intrinsic function +> 'function' : too few actual parameters for intrinsic function A reference to an `intrinsic` function has too few parameters. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md index a4e5816594..0859494786 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md @@ -8,6 +8,6 @@ ms.assetid: 97f700bd-1044-46f5-b276-3d7570ee7708 --- # Compiler Error C2169 -'function' : intrinsic function, cannot be defined +> 'function' : intrinsic function, cannot be defined A function definition appears for a function already declared `intrinsic`. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2170.md b/docs/error-messages/compiler-errors-1/compiler-error-c2170.md index 599a575011..7a4456441f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2170.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2170.md @@ -8,7 +8,7 @@ ms.assetid: d5c663f0-2459-4e11-a8bf-a52b62f3c71d --- # Compiler Error C2170 -'identifier' : not declared as a function, cannot be intrinsic +> 'identifier' : not declared as a function, cannot be intrinsic ### To fix by checking the following possible causes diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md index f32ebc62e2..fc1bce5b04 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md @@ -8,7 +8,7 @@ ms.assetid: a80343b5-ab3f-4413-b6f1-3ce9d7e519e5 --- # Compiler Error C2171 -'operator' : illegal on operands of type 'type' +> 'operator' : illegal on operands of type 'type' A unary operator is used with an invalid operand type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md index 8e2992bd81..a7aff4fb95 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md @@ -8,6 +8,6 @@ ms.assetid: 31183ea7-858d-4273-932a-d865af7059b1 --- # Compiler Error C2172 -'function' : actual parameter is not a pointer : parameter number +> 'function' : actual parameter is not a pointer : parameter number Parameter `number` is not a pointer. The function expects a pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md index 45dc248785..5dfb990cd2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md @@ -8,6 +8,6 @@ ms.assetid: 4df592b8-609b-41a5-b4fc-966eb5bb2d1a --- # Compiler Error C2173 -'function' : actual parameter is not a pointer : parameter number1, parameter list number2 +> 'function' : actual parameter is not a pointer : parameter number1, parameter list number2 Parameter `number1` passed to parameter list `number2` is not a pointer. The function expects a pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md index bc685baa29..8f780a82f6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md @@ -8,6 +8,6 @@ ms.assetid: 161d563c-76e9-47e9-9142-7812e9ea169e --- # Compiler Error C2174 -'function' : actual parameter has type 'void' : parameter number1, parameter list number2 +> 'function' : actual parameter has type 'void' : parameter number1, parameter list number2 Parameter `number1` passed to parameter list `number2` is a **`void`** parameter. Parameters cannot have type **`void`**. Use **`void*`** instead. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md index 4f210813ce..95bd5c9e20 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md @@ -8,6 +8,6 @@ ms.assetid: 3a8fa90b-2b29-414a-bb55-cf27c2bf989a --- # Compiler Error C2175 -'locale' : invalid locale +> 'locale' : invalid locale The specified locale is not valid. See [Language and Country/Region Strings](../../c-runtime-library/locale-names-languages-and-country-region-strings.md) in the *Run-Time Library Reference* for supported locales. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md index a69d0bcd35..dd462bae29 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md @@ -8,7 +8,7 @@ ms.assetid: 2a39a880-cddb-4d3e-a572-645a14c4c478 --- # Compiler Error C2177 -constant too big +> constant too big A constant value is too large for the variable type it is assigned. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md index b9aecbda49..377ea2b6be 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md @@ -8,7 +8,7 @@ ms.assetid: 79a14158-17f3-4221-bd06-9d675c49cef4 --- # Compiler Error C2178 -'*identifier*' cannot be declared with '*specifier*' specifier +> '*identifier*' cannot be declared with '*specifier*' specifier A **`mutable`** specifier was used in a declaration, but the specifier is not allowed in this context. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md index d1c9b3dc11..ffc0ceaa8b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md @@ -8,7 +8,7 @@ ms.assetid: f929bfc6-3964-4e54-87d6-7529b9b6c0b9 --- # Compiler Error C2179 -'type' : an attribute argument cannot use type parameters +> 'type' : an attribute argument cannot use type parameters A generic type parameter is resolved at runtime. However, an attribute parameter must be resolved at compile time. Therefore, you cannot use a generic type parameter as an argument to an attribute. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md index 30c5e6e220..d6857d456a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md @@ -8,7 +8,7 @@ ms.assetid: ea71b39e-b977-48a7-b7bd-af68ef5e263b --- # Compiler Error C2180 -controlling expression has type 'type' +> controlling expression has type 'type' The controlling expression in an **`if`**, **`while`**, **`for`**, or **`do`** statement is an expression cast to **`void`**. To fix this issue, change the controlling expression to one that produces a **`bool`** or a type that can be converted to **`bool`**. From ee4f1c16609d75f47480cbae1daa722e7491216b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:31:04 +0800 Subject: [PATCH 860/981] Add "Remarks" and "Example" headings for error references in range [C2161, C2180] --- docs/error-messages/compiler-errors-1/compiler-error-c2161.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2162.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2163.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2164.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2165.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2167.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2168.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2169.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2171.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2172.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2173.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2174.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2175.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2177.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2178.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2179.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2180.md | 4 ++++ 17 files changed, 44 insertions(+) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md index 39de6b4ad2..7bb6e95892 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md @@ -10,8 +10,12 @@ ms.assetid: d6798821-13bb-4e60-924f-85f7bf955387 > '##' cannot occur at the end of a macro definition +## Remarks + A macro definition ended with a token-pasting operator (##). +## Example + The following sample generates C2161: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2162.md b/docs/error-messages/compiler-errors-1/compiler-error-c2162.md index 2cd9768016..b76cbb2783 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2162.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2162.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C2162"] > expected macro formal parameter +## Remarks + The token following a [stringizing operator (#)](../../preprocessor/stringizing-operator-hash.md) or a [charizing operator (#@)](../../preprocessor/charizing-operator-hash-at.md) is not a formal parameter. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md index 5a13cfaf57..aea0a63190 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md @@ -10,4 +10,6 @@ ms.assetid: 6428d1e9-1ba1-46fc-bbf6-91d6fef2734c > 'function' : not available as an intrinsic function +## Remarks + An `intrinsic` or `function` pragma lists a function not available in intrinsic form. For example, certain intrinsics are not available when compiling a program that uses /clr programming. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md index 57571d4302..e8c7e910b2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md @@ -10,8 +10,12 @@ ms.assetid: 55df5024-68a8-45a8-ae6c-e6dba35318a2 > 'function' : intrinsic function not declared +## Remarks + An `intrinsic` pragma uses an undeclared function (only occurs with **/Oi**). Or, one of the compiler intrinsics was used without including its header file. +## Example + The following sample generates C2164: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md index 85fdf065e5..9355bdf328 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md @@ -10,8 +10,12 @@ ms.assetid: b108313b-b8cb-4dce-b2ec-f2b31c9cdc87 > 'keyword' : cannot modify pointers to data +## Remarks + The **`__stdcall`**, **`__cdecl`**, or **`__fastcall`** keyword attempts to modify a pointer to data. +## Example + The following sample generates C2165: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md index bbdb649706..2c5bb40676 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md @@ -10,4 +10,6 @@ ms.assetid: 3de3de96-12cd-47df-b24e-34cc9747ef83 > 'function' : too many actual parameters for intrinsic function +## Remarks + A reference to an `intrinsic` function has too many parameters. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md index 07b70732f0..a9eae8322d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md @@ -10,4 +10,6 @@ ms.assetid: 625e7dc3-ca74-4980-8268-8d5c0245e376 > 'function' : too few actual parameters for intrinsic function +## Remarks + A reference to an `intrinsic` function has too few parameters. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md index 0859494786..031d6a56e9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md @@ -10,4 +10,6 @@ ms.assetid: 97f700bd-1044-46f5-b276-3d7570ee7708 > 'function' : intrinsic function, cannot be defined +## Remarks + A function definition appears for a function already declared `intrinsic`. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md index fc1bce5b04..bdbacd8b32 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md @@ -10,6 +10,8 @@ ms.assetid: a80343b5-ab3f-4413-b6f1-3ce9d7e519e5 > 'operator' : illegal on operands of type 'type' +## Remarks + A unary operator is used with an invalid operand type. ## Examples diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md index a7aff4fb95..21830a8f6d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md @@ -10,4 +10,6 @@ ms.assetid: 31183ea7-858d-4273-932a-d865af7059b1 > 'function' : actual parameter is not a pointer : parameter number +## Remarks + Parameter `number` is not a pointer. The function expects a pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md index 5dfb990cd2..cc8ed5f830 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md @@ -10,4 +10,6 @@ ms.assetid: 4df592b8-609b-41a5-b4fc-966eb5bb2d1a > 'function' : actual parameter is not a pointer : parameter number1, parameter list number2 +## Remarks + Parameter `number1` passed to parameter list `number2` is not a pointer. The function expects a pointer. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md index 8f780a82f6..0954a45e3b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md @@ -10,4 +10,6 @@ ms.assetid: 161d563c-76e9-47e9-9142-7812e9ea169e > 'function' : actual parameter has type 'void' : parameter number1, parameter list number2 +## Remarks + Parameter `number1` passed to parameter list `number2` is a **`void`** parameter. Parameters cannot have type **`void`**. Use **`void*`** instead. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md index 95bd5c9e20..0dc3373cd9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md @@ -10,4 +10,6 @@ ms.assetid: 3a8fa90b-2b29-414a-bb55-cf27c2bf989a > 'locale' : invalid locale +## Remarks + The specified locale is not valid. See [Language and Country/Region Strings](../../c-runtime-library/locale-names-languages-and-country-region-strings.md) in the *Run-Time Library Reference* for supported locales. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md index dd462bae29..4e4de82229 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md @@ -10,8 +10,12 @@ ms.assetid: 2a39a880-cddb-4d3e-a572-645a14c4c478 > constant too big +## Remarks + A constant value is too large for the variable type it is assigned. +## Example + The following sample generates C2177: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md index 377ea2b6be..81d929a240 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md @@ -10,6 +10,8 @@ ms.assetid: 79a14158-17f3-4221-bd06-9d675c49cef4 > '*identifier*' cannot be declared with '*specifier*' specifier +## Remarks + A **`mutable`** specifier was used in a declaration, but the specifier is not allowed in this context. The **`mutable`** specifier can be applied only to names of class data members, and cannot be applied to names declared **`const`** or **`static`**, and cannot be applied to reference members. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md index ffc0ceaa8b..0a149450f0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md @@ -10,6 +10,8 @@ ms.assetid: f929bfc6-3964-4e54-87d6-7529b9b6c0b9 > 'type' : an attribute argument cannot use type parameters +## Remarks + A generic type parameter is resolved at runtime. However, an attribute parameter must be resolved at compile time. Therefore, you cannot use a generic type parameter as an argument to an attribute. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md index d6857d456a..cd041d4c12 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md @@ -10,8 +10,12 @@ ms.assetid: ea71b39e-b977-48a7-b7bd-af68ef5e263b > controlling expression has type 'type' +## Remarks + The controlling expression in an **`if`**, **`while`**, **`for`**, or **`do`** statement is an expression cast to **`void`**. To fix this issue, change the controlling expression to one that produces a **`bool`** or a type that can be converted to **`bool`**. +## Example + The following sample generates C2180: ```c From 0c98748bb53cb498b06cb134f423ac73bbe1597b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:32:16 +0800 Subject: [PATCH 861/981] Replace term "sample" with "example" for error references in range [C2161, C2180] --- docs/error-messages/compiler-errors-1/compiler-error-c2161.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2164.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2165.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2171.md | 4 ++-- docs/error-messages/compiler-errors-1/compiler-error-c2177.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2178.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2179.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2180.md | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md index 7bb6e95892..28d9123305 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md @@ -16,7 +16,7 @@ A macro definition ended with a token-pasting operator (##). ## Example -The following sample generates C2161: +The following example generates C2161: ```cpp // C2161.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md index e8c7e910b2..723618b412 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md @@ -16,7 +16,7 @@ An `intrinsic` pragma uses an undeclared function (only occurs with **/Oi**). Or ## Example -The following sample generates C2164: +The following example generates C2164: ```c // C2164.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md index 9355bdf328..63c3aace6c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md @@ -16,7 +16,7 @@ The **`__stdcall`**, **`__cdecl`**, or **`__fastcall`** keyword attempts to modi ## Example -The following sample generates C2165: +The following example generates C2165: ```cpp // C2165.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md index bdbacd8b32..621e0324a6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md @@ -16,7 +16,7 @@ A unary operator is used with an invalid operand type. ## Examples -The following sample generates C2171. +The following example generates C2171. ```cpp // C2171.cpp @@ -30,7 +30,7 @@ int main() { } ``` -The following sample generates C2171. +The following example generates C2171. ```cpp // C2171_b.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md index 4e4de82229..65da50f11d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md @@ -16,7 +16,7 @@ A constant value is too large for the variable type it is assigned. ## Example -The following sample generates C2177: +The following example generates C2177: ```cpp // C2177.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md index 81d929a240..9d0be77943 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md @@ -18,7 +18,7 @@ The **`mutable`** specifier can be applied only to names of class data members, ## Example -The following sample shows how C2178 may occur, and how to fix it. +The following example shows how C2178 may occur, and how to fix it. ```cpp // C2178.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md index 0a149450f0..1c10c0be99 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md @@ -16,7 +16,7 @@ A generic type parameter is resolved at runtime. However, an attribute parameter ## Example -The following sample generates C2179. +The following example generates C2179. ```cpp // C2179.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md index cd041d4c12..5e5109b06b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md @@ -16,7 +16,7 @@ The controlling expression in an **`if`**, **`while`**, **`for`**, or **`do`** s ## Example -The following sample generates C2180: +The following example generates C2180: ```c // C2180.c From dc59738ff5da2233f017d6b4bb263d6cdc7af46c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 17 Jul 2025 22:35:24 +0800 Subject: [PATCH 862/981] Update metadata for error references in range [C2161, C2180] --- .../error-messages/compiler-errors-1/compiler-error-c2161.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2162.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2163.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2164.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2165.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2167.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2168.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2169.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2170.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2171.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2172.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2173.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2174.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2175.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2177.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2178.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2179.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2180.md | 5 ++--- 18 files changed, 35 insertions(+), 52 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md index 28d9123305..cab1ce7231 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2161.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2161.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2161" title: "Compiler Error C2161" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2161" +ms.date: 11/04/2016 f1_keywords: ["C2161"] helpviewer_keywords: ["C2161"] -ms.assetid: d6798821-13bb-4e60-924f-85f7bf955387 --- # Compiler Error C2161 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2162.md b/docs/error-messages/compiler-errors-1/compiler-error-c2162.md index b76cbb2783..eb2b08aa20 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2162.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2162.md @@ -1,7 +1,7 @@ --- title: "Compiler Error C2162" description: "Learn more about: Compiler Error C2162" -ms.date: "03/30/2025" +ms.date: 03/30/2025 f1_keywords: ["C2162"] helpviewer_keywords: ["C2162"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md index aea0a63190..1fd73ce8bd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2163.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2163.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2163" title: "Compiler Error C2163" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2163" +ms.date: 11/04/2016 f1_keywords: ["C2163"] helpviewer_keywords: ["C2163"] -ms.assetid: 6428d1e9-1ba1-46fc-bbf6-91d6fef2734c --- # Compiler Error C2163 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md index 723618b412..5110e09126 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2164.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2164.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2164" title: "Compiler Error C2164" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2164" +ms.date: 11/04/2016 f1_keywords: ["C2164"] helpviewer_keywords: ["C2164"] -ms.assetid: 55df5024-68a8-45a8-ae6c-e6dba35318a2 --- # Compiler Error C2164 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md index 63c3aace6c..c205d3531e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2165.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2165.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2165" title: "Compiler Error C2165" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2165" +ms.date: 11/04/2016 f1_keywords: ["C2165"] helpviewer_keywords: ["C2165"] -ms.assetid: b108313b-b8cb-4dce-b2ec-f2b31c9cdc87 --- # Compiler Error C2165 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md index 2c5bb40676..f893c4e0ff 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2167.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2167.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2167" title: "Compiler Error C2167" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2167" +ms.date: 11/04/2016 f1_keywords: ["C2167"] helpviewer_keywords: ["C2167"] -ms.assetid: 3de3de96-12cd-47df-b24e-34cc9747ef83 --- # Compiler Error C2167 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md index a9eae8322d..e2fe0f0550 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2168.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2168.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2168" title: "Compiler Error C2168" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2168" +ms.date: 11/04/2016 f1_keywords: ["C2168"] helpviewer_keywords: ["C2168"] -ms.assetid: 625e7dc3-ca74-4980-8268-8d5c0245e376 --- # Compiler Error C2168 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md index 031d6a56e9..210ec567bc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2169.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2169.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2169" title: "Compiler Error C2169" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2169" +ms.date: 11/04/2016 f1_keywords: ["C2169"] helpviewer_keywords: ["C2169"] -ms.assetid: 97f700bd-1044-46f5-b276-3d7570ee7708 --- # Compiler Error C2169 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2170.md b/docs/error-messages/compiler-errors-1/compiler-error-c2170.md index 7a4456441f..a3e73e406f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2170.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2170.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2170" title: "Compiler Error C2170" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2170" +ms.date: 11/04/2016 f1_keywords: ["C2170"] helpviewer_keywords: ["C2170"] -ms.assetid: d5c663f0-2459-4e11-a8bf-a52b62f3c71d --- # Compiler Error C2170 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md index 621e0324a6..fb4d42de90 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2171.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2171.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2171" title: "Compiler Error C2171" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2171" +ms.date: 11/04/2016 f1_keywords: ["C2171"] helpviewer_keywords: ["C2171"] -ms.assetid: a80343b5-ab3f-4413-b6f1-3ce9d7e519e5 --- # Compiler Error C2171 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md index 21830a8f6d..55e01b5bb3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2172.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2172.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2172" title: "Compiler Error C2172" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2172" +ms.date: 11/04/2016 f1_keywords: ["C2172"] helpviewer_keywords: ["C2172"] -ms.assetid: 31183ea7-858d-4273-932a-d865af7059b1 --- # Compiler Error C2172 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md index cc8ed5f830..fb92234298 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2173.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2173.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2173" title: "Compiler Error C2173" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2173" +ms.date: 11/04/2016 f1_keywords: ["C2173"] helpviewer_keywords: ["C2173"] -ms.assetid: 4df592b8-609b-41a5-b4fc-966eb5bb2d1a --- # Compiler Error C2173 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md index 0954a45e3b..fe6702545f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2174.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2174.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2174" title: "Compiler Error C2174" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2174" +ms.date: 11/04/2016 f1_keywords: ["C2174"] helpviewer_keywords: ["C2174"] -ms.assetid: 161d563c-76e9-47e9-9142-7812e9ea169e --- # Compiler Error C2174 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md index 0dc3373cd9..32d47e23c2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2175.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2175.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2175" title: "Compiler Error C2175" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2175" +ms.date: 11/04/2016 f1_keywords: ["C2175"] helpviewer_keywords: ["C2175"] -ms.assetid: 3a8fa90b-2b29-414a-bb55-cf27c2bf989a --- # Compiler Error C2175 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md index 65da50f11d..e448186bf1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2177.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2177.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2177" title: "Compiler Error C2177" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2177" +ms.date: 11/04/2016 f1_keywords: ["C2177"] helpviewer_keywords: ["C2177"] -ms.assetid: 2a39a880-cddb-4d3e-a572-645a14c4c478 --- # Compiler Error C2177 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md index 9d0be77943..ce0dfb543f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2178.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2178.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2178" title: "Compiler Error C2178" -ms.date: "05/08/2017" +description: "Learn more about: Compiler Error C2178" +ms.date: 05/08/2017 f1_keywords: ["C2178"] helpviewer_keywords: ["C2178"] -ms.assetid: 79a14158-17f3-4221-bd06-9d675c49cef4 --- # Compiler Error C2178 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md index 1c10c0be99..2f9baef338 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2179.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2179.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2179" title: "Compiler Error C2179" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2179" +ms.date: 11/04/2016 f1_keywords: ["C2179"] helpviewer_keywords: ["C2179"] -ms.assetid: f929bfc6-3964-4e54-87d6-7529b9b6c0b9 --- # Compiler Error C2179 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md index 5e5109b06b..d9f8803ca2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2180.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2180.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2180" title: "Compiler Error C2180" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2180" +ms.date: 11/04/2016 f1_keywords: ["C2180"] helpviewer_keywords: ["C2180"] -ms.assetid: ea71b39e-b977-48a7-b7bd-af68ef5e263b --- # Compiler Error C2180 From eccf691d24eac56de752d27c4d701013fe87324d Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Thu, 17 Jul 2025 13:27:26 -0700 Subject: [PATCH 863/981] small updates --- .../tutorials/build-insights-template-view.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index c9a57fe323..659a9f8c91 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -111,7 +111,7 @@ Template instantiation time collection is off by default to minimize build overh ## Run Build Insights to get template instantiation data -From the main menu, select **Build** > **Run Build Insights on Selection** > **Rebuild**. You can also right-click a project in Solution Explorer and select **Run Build Insights** > **Rebuild**. Choose **Rebuild** instead of **Build** to measure the build time for the entire project. +From the main menu, select **Build** > **Run Build Insights on Solution** > **Rebuild**. You can also right-click a project in Solution Explorer and select **Run Build Insights** > **Rebuild**. Choose **Rebuild** instead of **Build** to measure the build time for the entire project. :::image type="content" source="./media/build-insights-rebuild-project.png" alt-text="Screenshot of the main menu with Run Build Insights on Selection > Rebuild selected."::: @@ -126,7 +126,7 @@ The **Templates** view lists the template instantiations that contributed signif - **Translation Unit** shows the source files where each template instantiation happens. Different files can cause the same template instantiation if they include the same header with the template definition. - **Instantiation File Name** shows where the template is defined. -:::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations."::: +:::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations." lightbox="./media/templates-view-before-fix.png"::: The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. :::image-end::: @@ -136,7 +136,7 @@ The Templates view shows two template instantiations of struct S3 taking most (7 ### Understanding Templates view results -When interpreting Templates view results, consider the following: +To interpret the **Templates** view results: - **Empty view**: If nothing shows up in the **Templates** view, template instantiations don't dominate your build time. That's good news because your templates aren't a build bottleneck. - **Duplicate instantiations**: If the same template instantiation appears multiple times across different translation units, different source files are causing the same expensive instantiation. This is often the biggest optimization opportunity. @@ -145,9 +145,9 @@ When interpreting Templates view results, consider the following: ## Improve build time by optimizing template instantiations -In this example, two template instantiations of `S3` take 79 percent of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` cause this template instantiation. +In the example, two template instantiations of `S3` take 79 percent of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` cause this template instantiation. -Because the **Instantiation File Name** and the **Specialization Name** are the same for both entries, there's one expensive template instantiation that affects both source files. That's why the time for each of the two template instantiations is roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. +The **Instantiation File Name** and the **Specialization Name** are the same for both entries, which means one expensive template instantiation that affects both source files. That's why the time for each of the two template instantiations is roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. From the **Specialization Name** column, the expensive instantiation is `S3>`, which is instantiated in this code in `Templates.h`: @@ -158,7 +158,7 @@ inline size_t LargeValue() }; ``` -Here are three main ways to decrease the cost of template instantiations. +There are three main ways to decrease the cost of template instantiations. ### Remove unused templates @@ -170,7 +170,7 @@ Consider removing include directives that bring in unnecessary template instanti In this example, rely on the third approach: move the definition that causes the expensive template instantiation to a source file. -Because `LargeValue.cpp` is the only source file that calls `LargeValue()`, move the definition to `LargeValue.cpp`. This change prevents the template instantiation from happening in every translation unit that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: +Because `LargeValue.cpp` is the only source file that calls `LargeValue()`, move the definition to `LargeValue.cpp`. This change prevents the template instantiation from happening in every file that includes `Templates.h`. Remove the current definition of `LargeValue()` from `Templates.h` and replace it with a declaration: ```cpp size_t LargeValue(); @@ -189,7 +189,7 @@ Rebuild the project and run Build Insights again from the main menu. Select **Bu The build time decreases. While the template instantiation of `S3` still contributes to the build time, including only necessary template instantiations cuts the build time nearly in half. The count of `S3` instantiations is now one instead of two. -:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization. The view shows reduced template instantiation time."::: +:::image type="complex" source="./media/templates-view-after-fix.png" alt-text="Screenshot of the Build Insights Templates view after optimization. The view shows reduced template instantiation time." lightbox="./media/templates-view-after-fix.png"::: The Templates view now shows only one instantiation of S3 instead of two, and the total build time is significantly less at 3.152 seconds. :::image-end::: @@ -208,7 +208,7 @@ For more advanced template optimization techniques, see [Build Throughput Series ## Tips - Use **File** > **Save As** to save the ETL file to a more permanent location to keep a record of the build time information. You can then compare it to future builds to see how your changes are improving things. -- If you close the Build Insights window, reopen it by finding the `.etl` file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. +- If you close the Build Insights window, reopen it by finding the *dateandtime*.etl file either where you specified it should be saved, or in your temporary folder. The `TEMP` Windows environment variable provides the path of your temporary files folder. - Drag columns to change the order of the columns. For example, you might want to move the **Wall Time Responsibility** column to the first column. You can add or hide columns by right-clicking the column header and selecting or deselecting the columns you want. - The **Templates** view has a filter box to help you find a specific template instantiation. It does partial matches on the name you provide. From 462cb9338103e556a8827c090a27e2c6cc79947b Mon Sep 17 00:00:00 2001 From: Raymond Chen Date: Thu, 17 Jul 2025 14:43:37 -0700 Subject: [PATCH 864/981] Simplify Callback overloads by using template parameter packs (#5983) The event.h definition now uses template parameter packs, so update the documentation to match. --- docs/cppcx/wrl/callback-function-wrl.md | 184 +----------------------- 1 file changed, 4 insertions(+), 180 deletions(-) diff --git a/docs/cppcx/wrl/callback-function-wrl.md b/docs/cppcx/wrl/callback-function-wrl.md index 777ea551af..dd804d4df0 100644 --- a/docs/cppcx/wrl/callback-function-wrl.md +++ b/docs/cppcx/wrl/callback-function-wrl.md @@ -20,166 +20,14 @@ template< ComPtr Callback( TCallback callback ); -template< - typename TDelegateInterface, - typename TCallbackObject -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)() -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4, - typename TArg5 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4, - TArg5) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4, - typename TArg5, - typename TArg6 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4, - TArg5, - TArg6) -); template< typename TDelegateInterface, typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4, - typename TArg5, - typename TArg6, - typename TArg7 + typename... TArgs > ComPtr Callback( _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4, - TArg5, - TArg6, - TArg7) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4, - typename TArg5, - typename TArg6, - typename TArg7, - typename TArg8 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4, - TArg5, - TArg6, - TArg7, - TArg8) -); -template< - typename TDelegateInterface, - typename TCallbackObject, - typename TArg1, - typename TArg2, - typename TArg3, - typename TArg4, - typename TArg5, - typename TArg6, - typename TArg7, - typename TArg8, - typename TArg9 -> -ComPtr Callback( - _In_ TCallbackObject *object, - _In_ HRESULT (TCallbackObject::* method)(TArg1, - TArg2, - TArg3, - TArg4, - TArg5, - TArg6, - TArg7, - TArg8, - TArg9) + _In_ HRESULT (TCallbackObject::* method)(TArgs...) ); ``` @@ -194,32 +42,8 @@ A template parameter that specifies the type of an object that represents an obj *TCallbackObject*
A template parameter that specifies the object whose member function is the method to call when an event occurs. -*TArg1*
-A template parameter that specifies the type of the first callback method argument. - -*TArg2*
-A template parameter that specifies the type of the second callback method argument. - -*TArg3*
-A template parameter that specifies the type of the third callback method argument. - -*TArg4*
-A template parameter that specifies the type of the fourth callback method argument. - -*TArg5*
-A template parameter that specifies the type of the fifth callback method argument. - -*TArg6*
-A template parameter that specifies the type of the sixth callback method argument. - -*TArg7*
-A template parameter that specifies the type of the seventh callback method argument. - -*TArg8*
-A template parameter that specifies the type of the eighth callback method argument. - -*TArg9*
-A template parameter that specifies the type of the ninth callback method argument. +*TArgs*
+A template parameter pack that specifies the types of the callback method arguments. *callback*
An object that represents the callback object and its member function. From ac99b48ed08dc36fcb2bd0af5bc28630c6064d85 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Thu, 17 Jul 2025 17:46:12 -0700 Subject: [PATCH 865/981] add metadata --- docs/build-insights/tutorials/build-insights-template-view.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index c9a57fe323..0a4e4850e5 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -1,9 +1,10 @@ --- title: "Troubleshoot template instantiation impact on build time" description: "Tutorial for how to use Build Insights template view to analyze and optimize the impact of template instantiations on build time in your C++ projects." -ms.date: 07/14/2025 +ms.date: 07/17/2025 helpviewer_keywords: ["C++ Build Insights", "template instantiation analysis", "build time analysis"] ms.topic: troubleshooting-general +ai-usage: ai-assisted --- # Troubleshoot template instantiation impact on build time From 369242ac77590e7de27ff3aac1978e6a64c20db3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 16:09:49 +0800 Subject: [PATCH 866/981] Clean up links to removed "What's new for the Microsoft C++ docs" article --- docs/overview/what-s-new-for-cpp-2017.md | 2 +- docs/overview/what-s-new-for-cpp-2019.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overview/what-s-new-for-cpp-2017.md b/docs/overview/what-s-new-for-cpp-2017.md index ada04edf00..d30dc9febd 100644 --- a/docs/overview/what-s-new-for-cpp-2017.md +++ b/docs/overview/what-s-new-for-cpp-2017.md @@ -10,7 +10,7 @@ ms.custom: intro-whats-new Visual Studio 2017 brings many updates and fixes to the C++ environment. We've fixed over 250 bugs and reported issues in the compiler and tools. Many were submitted by customers through the [Report a Problem and Provide a Suggestion](/visualstudio/ide/how-to-report-a-problem-with-visual-studio?view=vs-2017&preserve-view=true) options under **Send Feedback**. Thank you for reporting bugs! -For more information on what's new in all of Visual Studio, see [What's new in Visual Studio 2017](/visualstudio/ide/whats-new-visual-studio-2017?view=vs-2017&preserve-view=true). For information on what's new for C++ in Visual Studio 2019, see [What's new for C++ in Visual Studio 2019](what-s-new-for-visual-cpp-in-visual-studio.md?preserve-view=true&view=msvc-160). For information on what's new for C++ in Visual Studio 2015 and earlier versions, see [Visual C++ What's New 2003 through 2015](../porting/visual-cpp-what-s-new-2003-through-2015.md). For information about what's new in the C++ docs, see [Microsoft C++ docs: What's new](whats-new-cpp-docs.md). +For more information on what's new in all of Visual Studio, see [What's new in Visual Studio 2017](/visualstudio/ide/whats-new-visual-studio-2017?view=vs-2017&preserve-view=true). For information on what's new for C++ in Visual Studio 2019, see [What's new for C++ in Visual Studio 2019](what-s-new-for-visual-cpp-in-visual-studio.md?preserve-view=true&view=msvc-160). For information on what's new for C++ in Visual Studio 2015 and earlier versions, see [Visual C++ What's New 2003 through 2015](../porting/visual-cpp-what-s-new-2003-through-2015.md). ## Visual Studio 2017 C++ compiler diff --git a/docs/overview/what-s-new-for-cpp-2019.md b/docs/overview/what-s-new-for-cpp-2019.md index 7889048806..e79f0e6d59 100644 --- a/docs/overview/what-s-new-for-cpp-2019.md +++ b/docs/overview/what-s-new-for-cpp-2019.md @@ -10,7 +10,7 @@ ms.custom: intro-whats-new Visual Studio 2019 brings many updates and fixes to the Microsoft C++ environment. We've fixed many bugs and issues in the compiler and tools. Many of these issues were submitted by customers through the [Report a Problem](/visualstudio/ide/how-to-report-a-problem-with-visual-studio?view=vs-2019&preserve-view=true) and [Provide a Suggestion](https://aka.ms/feedback/suggest?space=62) options under **Send Feedback**. Thank you for reporting bugs! -For more information on what's new in all of Visual Studio, visit [What's new in Visual Studio 2019](/visualstudio/ide/whats-new-visual-studio-2019). For information on what's new for C++ in Visual Studio 2017, see [What's new for C++ in Visual Studio 2017](what-s-new-for-cpp-2017.md). For information on what's new for C++ in Visual Studio 2015 and earlier versions, see [Visual C++ What's New 2003 through 2015](../porting/visual-cpp-what-s-new-2003-through-2015.md). For more information, see [Microsoft C++ docs: What's new](whats-new-cpp-docs.md). +For more information on what's new in all of Visual Studio, visit [What's new in Visual Studio 2019](/visualstudio/ide/whats-new-visual-studio-2019). For information on what's new for C++ in Visual Studio 2017, see [What's new for C++ in Visual Studio 2017](what-s-new-for-cpp-2017.md). For information on what's new for C++ in Visual Studio 2015 and earlier versions, see [Visual C++ What's New 2003 through 2015](../porting/visual-cpp-what-s-new-2003-through-2015.md). ## What's new for C++ in Visual Studio version 16.11 From 55acdad9fc7495727448a9b9c1e1dba005487418 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 16:52:04 +0800 Subject: [PATCH 867/981] Trim all trailing spaces in "Troubleshoot template instantiation impact on build time" topic --- .../tutorials/build-insights-template-view.md | 64 +++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index d4cd01924b..d9eecb68a1 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -21,7 +21,7 @@ The **Templates** view works like the Build Insights [Functions view](build-insi 1. Select **Modify** to change your Visual Studio installation. 1. On the **Individual components** tab, search for and select **C++ Build Insights**, then select **Close** to finish installing the component. :::image type="content" source="./media/installer-build-insights.png" alt-text="Screenshot of the Visual Studio Installer. The search box contains C++ Build Insights. The item C++ Build Insights is visible and selected."::: - + ## Overview Build Insights, integrated into Visual Studio, helps you optimize your build times--especially for large projects like AAA games. Build Insights provides analytics such as the **Templates** view, which shows the time it takes to instantiate each template and which template instantiations add the most to your build time. @@ -36,55 +36,55 @@ In this article, you create a project that shows how template instantiation affe 1. Create a header file named `Templates.h`, then replace its contents with the following code: ```cpp - #pragma once - #include - #include - - template struct S1 {}; - template using type = std::vector>; - - template struct S2 {}; - - template struct S3 {}; - - template + #pragma once + #include + #include + + template struct S1 {}; + template using type = std::vector>; + + template struct S2 {}; + + template struct S3 {}; + + template struct S3> - { - using type = S2)...>; - }; - + { + using type = S2)...>; + }; + inline size_t LargeValue() - { - return sizeof(S3>); - }; - + { + return sizeof(S3>); + }; + inline size_t SmallValue() - { - return sizeof(S1<5>); - } + { + return sizeof(S1<5>); + } ``` 1. Create a source file named `LargeValue.cpp`, then replace its contents with the following code: ```cpp - #include "Templates.h" + #include "Templates.h" size_t GetLargeValue() - { - return LargeValue(); - } + { + return LargeValue(); + } ``` 1. Replace the contents of the `TemplateAnalysis.cpp` file with the following code: ```cpp - #include "Templates.h" + #include "Templates.h" extern size_t GetLargeValue(); size_t GetSmallValue() - { - return SmallValue(); + { + return SmallValue(); } int main() @@ -107,7 +107,7 @@ Template instantiation time collection is off by default to minimize build overh :::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantiation checkbox is selected."::: -> [!Note] +> [!Note] > Collecting template instantiation times increases build time due to the extra data collected. Only enable it when you want to analyze template instantiation bottlenecks. ## Run Build Insights to get template instantiation data From fdd565c6e39dfc418bac42848afe2464f8f69c3f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 16:56:05 +0800 Subject: [PATCH 868/981] Remove superfluous semicolons and format code snippets in "Troubleshoot template instantiation impact on build time" topic --- .../build-insights/tutorials/build-insights-template-view.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index d9eecb68a1..c70f5afc50 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -37,6 +37,7 @@ In this article, you create a project that shows how template instantiation affe ```cpp #pragma once + #include #include @@ -56,7 +57,7 @@ In this article, you create a project that shows how template instantiation affe inline size_t LargeValue() { return sizeof(S3>); - }; + } inline size_t SmallValue() { @@ -156,7 +157,7 @@ From the **Specialization Name** column, the expensive instantiation is `S3>); -}; +} ``` There are three main ways to decrease the cost of template instantiations. From e4f4427a0e5feb2e4aeeb72f7bb15862a59e8e3a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:03:49 +0800 Subject: [PATCH 869/981] Remove erroneous mentions of `SmallValue.cpp` in "Troubleshoot template instantiation impact on build time" topic --- docs/build-insights/tutorials/build-insights-template-view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index c70f5afc50..9eff60080b 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -129,7 +129,7 @@ The **Templates** view lists the template instantiations that contributed signif - **Instantiation File Name** shows where the template is defined. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations." lightbox="./media/templates-view-before-fix.png"::: -The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and SmallValue.cpp are affected. The build time is 4.066 seconds. +The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and TemplateAnalysis.cpp are affected. The build time is 4.066 seconds. :::image-end::: - Sort by **Time** to find the templates that take the longest to instantiate. @@ -147,7 +147,7 @@ To interpret the **Templates** view results: ## Improve build time by optimizing template instantiations -In the example, two template instantiations of `S3` take 79 percent of the build time. The **Translation Unit** column shows that both `SmallValue.cpp` and `LargeValue.cpp` cause this template instantiation. +In the example, two template instantiations of `S3` take 79 percent of the build time. The **Translation Unit** column shows that both `LargeValue.cpp` and `TemplateAnalysis.cpp` cause this template instantiation. The **Instantiation File Name** and the **Specialization Name** are the same for both entries, which means one expensive template instantiation that affects both source files. That's why the time for each of the two template instantiations is roughly equal. Including `Templates.h` in both source files causes one template instantiation to add significant time to the build. From e22eb527be6983b45e43ae85884aed8b086f5870 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:06:33 +0800 Subject: [PATCH 870/981] Fix wrong build time value for image in "Troubleshoot template instantiation impact on build time" topic --- docs/build-insights/tutorials/build-insights-template-view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index 9eff60080b..e8c26762e6 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -129,7 +129,7 @@ The **Templates** view lists the template instantiations that contributed signif - **Instantiation File Name** shows where the template is defined. :::image type="complex" source="./media/templates-view-before-fix.png" alt-text="Screenshot of the Build Insights Templates view showing expensive template instantiations." lightbox="./media/templates-view-before-fix.png"::: -The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and TemplateAnalysis.cpp are affected. The build time is 4.066 seconds. +The Templates view shows two template instantiations of struct S3 taking most (79.448 percent) of the build time. The Translation Unit column shows that both LargeValue.cpp and TemplateAnalysis.cpp are affected. The build time is 4.966 seconds. :::image-end::: - Sort by **Time** to find the templates that take the longest to instantiate. From ecb27fed0029ca99ab32380d743b048c963e2b50 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:11:45 +0800 Subject: [PATCH 871/981] Nits for "Troubleshoot template instantiation impact on build time" topic --- docs/build-insights/tutorials/build-insights-template-view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build-insights/tutorials/build-insights-template-view.md b/docs/build-insights/tutorials/build-insights-template-view.md index e8c26762e6..47382cff0b 100644 --- a/docs/build-insights/tutorials/build-insights-template-view.md +++ b/docs/build-insights/tutorials/build-insights-template-view.md @@ -108,7 +108,7 @@ Template instantiation time collection is off by default to minimize build overh :::image type="content" source="./media/tools-options-build-insights.png" alt-text="Screenshot of the project property pages dialog. The settings are open to Build Insights > Trace Collection. The Collect Template Instantiation checkbox is selected."::: -> [!Note] +> [!NOTE] > Collecting template instantiation times increases build time due to the extra data collected. Only enable it when you want to analyze template instantiation bottlenecks. ## Run Build Insights to get template instantiation data @@ -232,4 +232,4 @@ For more advanced template optimization techniques, see [Build Throughput Series - [Troubleshoot header file impact on build time](build-insights-included-files-view.md) - [Troubleshoot function inlining on build time](build-insights-function-view.md) - [Build Insights now available in Visual Studio 2022](https://devblogs.microsoft.com/cppblog/build-insights-now-available-in-visual-studio-2022) -- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming) \ No newline at end of file +- [Build throughput series: More efficient template metaprogramming](https://devblogs.microsoft.com/cppblog/build-throughput-series-more-efficient-template-metaprogramming) From 0d52b228b7cea0b234dd55d2fe9b0b074cfbed5f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:40:07 +0800 Subject: [PATCH 872/981] Fix invalid `std::` prefix for `public` keyword in `value_compare` class reference --- docs/standard-library/value-compare-class.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard-library/value-compare-class.md b/docs/standard-library/value-compare-class.md index 9777faa45a..b4cc44b5db 100644 --- a/docs/standard-library/value-compare-class.md +++ b/docs/standard-library/value-compare-class.md @@ -14,7 +14,7 @@ Provides a function object that can compare the elements of a hash_map by compar ```cpp class value_compare - : std::public binary_function + : public binary_function { public: bool operator()( From 0c929e06fb010132c9f2977f399d7ca8d1f782e9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:45:07 +0800 Subject: [PATCH 873/981] Add backticks in `value_compare` class reference --- docs/standard-library/value-compare-class.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/standard-library/value-compare-class.md b/docs/standard-library/value-compare-class.md index b4cc44b5db..c0878dac10 100644 --- a/docs/standard-library/value-compare-class.md +++ b/docs/standard-library/value-compare-class.md @@ -6,9 +6,9 @@ f1_keywords: ["hash_map/std::value_compare"] helpviewer_keywords: ["value_compare class"] ms.assetid: c306c5b9-3505-4357-aa6b-216451b951ed --- -# value_compare Class +# `value_compare` Class -Provides a function object that can compare the elements of a hash_map by comparing the values of their keys to determine their relative order in the hash_map. +Provides a function object that can compare the elements of a `hash_map` by comparing the values of their keys to determine their relative order in the `hash_map`. ## Syntax @@ -32,22 +32,22 @@ protected: ## Remarks -The comparison criteria provided by value_compare between `value_types` of whole elements contained by a hash_map is induced from a comparison between the keys of the respective elements by the auxiliary class construction. The member function operator uses the object `comp` of type `key_compare` stored in the function object provided by value_compare to compare the sort-key components of two elements. +The comparison criteria provided by `value_compare` between `value_types` of whole elements contained by a `hash_map` is induced from a comparison between the keys of the respective elements by the auxiliary class construction. The member function operator uses the object `comp` of type `key_compare` stored in the function object provided by `value_compare` to compare the sort-key components of two elements. -For hash_sets and hash_multisets, which are simple containers where the key values are identical to the element values, value_compare is equivalent to `key_compare`; for hash_maps and hash_multimaps they are not, because the value of the type `pair` elements is not identical to the value of the element's key. +For `hash_set`s and `hash_multiset`s, which are simple containers where the key values are identical to the element values, `value_compare` is equivalent to `key_compare`; for `hash_map`s and `hash_multimap`s they are not, because the value of the type `pair` elements is not identical to the value of the element's key. ## Example -See the example for [hash_map::value_comp](../standard-library/hash-map-class.md#value_comp) for an example of how to declare and use value_compare. +See the example for [`hash_map::value_comp`](../standard-library/hash-map-class.md#value_comp) for an example of how to declare and use `value_compare`. ## Requirements -**Header:** \ +**Header:** `` -**Namespace:** stdext +**Namespace:** `stdext` ## See also -[binary_function Struct](../standard-library/binary-function-struct.md)\ +[`binary_function` Struct](../standard-library/binary-function-struct.md)\ [Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)\ [C++ Standard Library Reference](../standard-library/cpp-standard-library-reference.md) From 02037fbae27755372bc332bd89ef1da14a1f44b3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:47:23 +0800 Subject: [PATCH 874/981] Simplify redundant relative links in `value_compare` class reference --- docs/standard-library/value-compare-class.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/standard-library/value-compare-class.md b/docs/standard-library/value-compare-class.md index c0878dac10..bf76bbbc0b 100644 --- a/docs/standard-library/value-compare-class.md +++ b/docs/standard-library/value-compare-class.md @@ -38,7 +38,7 @@ For `hash_set`s and `hash_multiset`s, which are simple containers where the key ## Example -See the example for [`hash_map::value_comp`](../standard-library/hash-map-class.md#value_comp) for an example of how to declare and use `value_compare`. +See the example for [`hash_map::value_comp`](hash-map-class.md#value_comp) for an example of how to declare and use `value_compare`. ## Requirements @@ -48,6 +48,6 @@ See the example for [`hash_map::value_comp`](../standard-library/hash-map-class. ## See also -[`binary_function` Struct](../standard-library/binary-function-struct.md)\ -[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)\ -[C++ Standard Library Reference](../standard-library/cpp-standard-library-reference.md) +[`binary_function` Struct](binary-function-struct.md)\ +[Thread Safety in the C++ Standard Library](thread-safety-in-the-cpp-standard-library.md)\ +[C++ Standard Library Reference](cpp-standard-library-reference.md) From 2a713d653de1655f523f468fd3963f5c672dde5b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 17:48:05 +0800 Subject: [PATCH 875/981] Update metadata in `value_compare` class reference --- docs/standard-library/value-compare-class.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/standard-library/value-compare-class.md b/docs/standard-library/value-compare-class.md index bf76bbbc0b..18f6685654 100644 --- a/docs/standard-library/value-compare-class.md +++ b/docs/standard-library/value-compare-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: value_compare Class" title: "value_compare Class" -ms.date: "11/04/2016" +description: "Learn more about: value_compare Class" +ms.date: 11/04/2016 f1_keywords: ["hash_map/std::value_compare"] helpviewer_keywords: ["value_compare class"] -ms.assetid: c306c5b9-3505-4357-aa6b-216451b951ed --- # `value_compare` Class From 08e76a74a43d04d8a0be03a857d27f9a31e48878 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:11:24 +0800 Subject: [PATCH 876/981] Convert Project build errors and warnings list into a table --- ...oject-build-errors-and-warnings-prjxxxx.md | 84 ++++++++++--------- 1 file changed, 44 insertions(+), 40 deletions(-) diff --git a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md index 8622e00644..5f2b64305d 100644 --- a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md +++ b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md @@ -12,49 +12,53 @@ This section is a reference to the errors generated by the Project build tools. ## Project build errors -[Project build error PRJ0002](project-build-error-prj0002.md) \ -[Project build error PRJ0003](project-build-error-prj0003.md) \ -[Project build error PRJ0004](project-build-error-prj0004.md) \ -[Project build error PRJ0005](project-build-error-prj0005.md) \ -[Project build error PRJ0006](project-build-error-prj0006.md) \ -[Project build error PRJ0007](project-build-error-prj0007.md) \ -[Project build error PRJ0008](project-build-error-prj0008.md) \ -[Project build error PRJ0009](project-build-error-prj0009.md) \ -[Project build error PRJ0013](project-build-error-prj0013.md) \ -[Project build error PRJ0014](project-build-error-prj0014.md) \ -[Project build error PRJ0015](project-build-error-prj0015.md) \ -[Project build error PRJ0016](project-build-error-prj0016.md) \ -[Project build error PRJ0017](project-build-error-prj0017.md) \ -[Project build error PRJ0019](project-build-error-prj0019.md) \ -[Project build error PRJ0020](project-build-error-prj0020.md) \ -[Project build error PRJ0021](project-build-error-prj0021.md) \ -[Project build error PRJ0022](project-build-error-prj0022.md) \ -[Project build error PRJ0023](project-build-error-prj0023.md) \ -[Project build error PRJ0024](project-build-error-prj0024.md) \ -[Project build error PRJ0025](project-build-error-prj0025.md) \ -[Project build error PRJ0026](project-build-error-prj0026.md) \ -[Project build error PRJ0027](project-build-error-prj0027.md) \ -[Project build error PRJ0028](project-build-error-prj0028.md) \ -[Project build error PRJ0030](project-build-error-prj0030.md) \ -[Project build error PRJ0031](project-build-error-prj0031.md) \ -[Project build error PRJ0032](project-build-error-prj0032.md) \ -[Project build error PRJ0033](project-build-error-prj0033.md) \ -[Project build error PRJ0034](project-build-error-prj0034.md) \ -[Project build error PRJ0035](project-build-error-prj0035.md) \ -[Project build error PRJ0036](project-build-error-prj0036.md) \ -[Project build error PRJ0040](project-build-error-prj0040.md) \ -[Project build error PRJ0044](project-build-error-prj0044.md) \ -[Project build error PRJ0046](project-build-error-prj0046.md) \ -[Project build error PRJ0047](project-build-error-prj0047.md) \ -[Project build error PRJ0050](project-build-error-prj0050.md) +| Error | Message | +|--|--| +| [Project build error PRJ0002](project-build-error-prj0002.md) | error result returned from '*command line*'. | +| [Project build error PRJ0003](project-build-error-prj0003.md) | Error spawning '*command line*'. | +| [Project build error PRJ0004](project-build-error-prj0004.md) | Could not generate command line for the '*tool*' tool. | +| [Project build error PRJ0005](project-build-error-prj0005.md) | Unable to create a temporary file in directory 'directory'. | +| [Project build error PRJ0006](project-build-error-prj0006.md) | Could not open the temporary file 'file'. Make sure the file exists and that the directory is not write-protected. | +| [Project build error PRJ0007](project-build-error-prj0007.md) | Could not create output directory 'directory'. | +| [Project build error PRJ0008](project-build-error-prj0008.md) | Could not delete file 'file'. | +| [Project build error PRJ0009](project-build-error-prj0009.md) | Build log could not be opened for writing. | +| [Project build error PRJ0013](project-build-error-prj0013.md) | System resource could be critically low. Unable to create a pipe required to launch a build. | +| [Project build error PRJ0014](project-build-error-prj0014.md) | The job object used to control the spawned processes has failed. The build cannot continue. | +| [Project build error PRJ0015](project-build-error-prj0015.md) | The NULL device is missing from your system. We are unable to launch a build. | +| [Project build error PRJ0016](project-build-error-prj0016.md) | The user's security settings prevent the process from being created. These settings are required for building. | +| [Project build error PRJ0017](project-build-error-prj0017.md) | The current working directory is invalid. | +| [Project build error PRJ0019](project-build-error-prj0019.md) | A tool returned an error code from | +| [Project build error PRJ0020](project-build-error-prj0020.md) | Tool '*tool*', Property '*property*' contains invalid file name '*file*'. | +| [Project build error PRJ0021](project-build-error-prj0021.md) | Tool '*tool*', Property '*property*' contains invalid file name. | +| [Project build error PRJ0022](project-build-error-prj0022.md) | Unknown Tool, Property '*property*' contains invalid file name '*file*'. | +| [Project build error PRJ0023](project-build-error-prj0023.md) | Tool '*tool*', Unknown Property contains invalid file name '*file*'. | +| [Project build error PRJ0024](project-build-error-prj0024.md) | Unicode path '*path*' could not be translated to user's ANSI code page. | +| [Project build error PRJ0025](project-build-error-prj0025.md) | Batch file '*file*' contains Unicode contents that could not be translated to user's ANSI code page. | +| [Project build error PRJ0026](project-build-error-prj0026.md) | Response file '*file*' contains Unicode contents that could not be translated to user's ANSI code page. | +| [Project build error PRJ0027](project-build-error-prj0027.md) | Unicode log message 'contents' contains content that could not be translated to the user's ANSI code page. | +| [Project build error PRJ0028](project-build-error-prj0028.md) | Temporary file 'file' contains Unicode contents that could not be translated to user's ANSI code page. | +| [Project build error PRJ0030](project-build-error-prj0030.md) | Macro expansion error. Evaluate recursion exceeded 32 levels for $(macro). | +| [Project build error PRJ0031](project-build-error-prj0031.md) | The 'Outputs' property for the custom build step for file 'file' contained 'macro' which evaluates out to 'macro_expansion'. | +| [Project build error PRJ0032](project-build-error-prj0032.md) | The 'Outputs' property for the project-level custom build step contained 'macro' which evaluates out to 'macro_expansion'. | +| [Project build error PRJ0033](project-build-error-prj0033.md) | The 'Additional Dependencies' property for the custom build step for file 'file' contained 'macro' which evaluates out to 'macro_expansion'. | +| [Project build error PRJ0034](project-build-error-prj0034.md) | The 'Additional Dependencies' property for the project-level custom build step contained 'macro' which evaluates out to 'macro_expansion'. | +| [Project build error PRJ0035](project-build-error-prj0035.md) | XML file '*file*' contains Unicode contents that could not be translated to user's ANSI code page. | +| [Project build error PRJ0036](project-build-error-prj0036.md) | The 'Additional Files' property for the Web Deployment Tool contained an invalid entry. | +| [Project build error PRJ0040](project-build-error-prj0040.md) | Internal error on build. Cannot continue. Please reload project and try again. | +| [Project build error PRJ0044](project-build-error-prj0044.md) | The 'Additional Dependencies' property for custom build rule 'rule' assigned to file 'file' is invalid. The property contained 'string' which evaluates to 'value'. | +| [Project build error PRJ0046](project-build-error-prj0046.md) | Could not spawn command line because the one specified was empty. | +| [Project build error PRJ0047](project-build-error-prj0047.md) | Could not resume the suspended process. The build has failed. | +| [Project build error PRJ0050](project-build-error-prj0050.md) | Failed to register output. Please ensure you have the appropriate permissions to modify the registry. | ## Project build warnings -[Project build warning PRJ0018](project-build-warning-prj0018.md) \ -[Project build warning PRJ0029](project-build-warning-prj0029.md) \ -[Project build warning PRJ0041](project-build-warning-prj0041.md) \ -[Project build warning PRJ0042](project-build-warning-prj0042.md) \ -[Project build warning PRJ0049](project-build-warning-prj0049.md) +| Warning | Message | +|--|--| +| [Project build warning PRJ0018](project-build-warning-prj0018.md) | The following environment variables were not found: | +| [Project build warning PRJ0029](project-build-warning-prj0029.md) | The 'Outputs' property for the project-level custom build step is not set. The custom build step will be skipped. | +| [Project build warning PRJ0041](project-build-warning-prj0041.md) | Cannot find missing dependency 'dependency' for file 'file'. Your project may still build, but may continue to appear out of date until this file is found. | +| [Project build warning PRJ0042](project-build-warning-prj0042.md) | The 'Outputs' property for the custom build step for file '*file*' is not set. The custom build step will be skipped. | +| [Project build warning PRJ0049](project-build-warning-prj0049.md) | Referenced target '\' requires .NET Framework \ and will fail to run on this project's target framework | ## See also From 847110c8aa367b0bd4005e9db942fba7f879e650 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:12:16 +0800 Subject: [PATCH 877/981] Simplify superfluous relative links in "Project build errors and warnings (PRJxxxx)" --- .../tool-errors/project-build-errors-and-warnings-prjxxxx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md index 5f2b64305d..05831c0e46 100644 --- a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md +++ b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md @@ -8,7 +8,7 @@ ms.assetid: 79d223ed-986a-4536-8299-aec8356b449c This section is a reference to the errors generated by the Project build tools. Project build errors and warnings have the form PRJ*xxxx*, where *xxxx* is a four-digit number. -[!INCLUDE[error-boilerplate](../../error-messages/includes/error-boilerplate.md)] +[!INCLUDE[error-boilerplate](../includes/error-boilerplate.md)] ## Project build errors From e7454fcc10b781f7ae74e5d76e827cd56d069939 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:12:42 +0800 Subject: [PATCH 878/981] Remove space before escape in "Project build errors and warnings (PRJxxxx)" --- .../tool-errors/project-build-errors-and-warnings-prjxxxx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md index 05831c0e46..7a4b89b0e8 100644 --- a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md +++ b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md @@ -62,5 +62,5 @@ This section is a reference to the errors generated by the Project build tools. ## See also -[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md) \ +[C/C++ Compiler and build tools errors and warnings](../compiler-errors-1/c-cpp-build-errors.md)\ [Visual Studio projects | C++](../../build/creating-and-managing-visual-cpp-projects.md) From 730c53d95648dd84be8a8f8839901131b77e195e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:14:36 +0800 Subject: [PATCH 879/981] Update metadata in "Project build errors and warnings (PRJxxxx)" --- .../tool-errors/project-build-errors-and-warnings-prjxxxx.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md index 7a4b89b0e8..e05ebacd66 100644 --- a/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md +++ b/docs/error-messages/tool-errors/project-build-errors-and-warnings-prjxxxx.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: Project build errors and warnings (PRJxxxx)" title: "Project build errors and warnings" -ms.date: "04/16/2019" -ms.assetid: 79d223ed-986a-4536-8299-aec8356b449c +description: "Learn more about: Project build errors and warnings (PRJxxxx)" +ms.date: 04/16/2019 --- # Project build errors and warnings (PRJxxxx) From 3726539c99b3c1acf8eabda0a53d01a5a22f3a46 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:33:02 +0800 Subject: [PATCH 880/981] Wrap multiple function prototypes in a line --- docs/cppcx/platform-intptr-value-class.md | 8 ++++++-- docs/cppcx/platform-sizet-value-class.md | 3 ++- docs/mfc/reference/cmonthcalctrl-class.md | 6 ++++-- docs/mfc/reference/colesafearray-class.md | 9 ++++++--- docs/mfc/reference/cricheditctrl-class.md | 12 ++++++++---- docs/mfc/reference/cspinbuttonctrl-class.md | 3 ++- docs/mfc/reference/cstatusbar-class.md | 3 ++- docs/mfc/reference/cwinapp-class.md | 6 ++++-- docs/mfc/reference/cwnd-class.md | 6 ++++-- 9 files changed, 38 insertions(+), 18 deletions(-) diff --git a/docs/cppcx/platform-intptr-value-class.md b/docs/cppcx/platform-intptr-value-class.md index b08b50209b..f3d7aecfde 100644 --- a/docs/cppcx/platform-intptr-value-class.md +++ b/docs/cppcx/platform-intptr-value-class.md @@ -43,7 +43,9 @@ Initializes a new instance of an IntPtr with the specified value. ### Syntax ```cpp -IntPtr( __int64 handle-or-pointer ); IntPtr( void* value ); IntPtr( int 32-bit_value ); +IntPtr( __int64 handle-or-pointer ); +IntPtr( void* value ); +IntPtr( int 32-bit_value ); ``` ### Parameters @@ -58,7 +60,9 @@ Converts the specified parameter to an IntPtr or a pointer to an IntPtr value. ### Syntax ```cpp -static IntPtr::operator IntPtr( void* value1); static IntPtr::operator IntPtr( int value2); static IntPtr::operator void*( IntPtr value3 ); +static IntPtr::operator IntPtr( void* value1); +static IntPtr::operator IntPtr( int value2); +static IntPtr::operator void*( IntPtr value3 ); ``` ### Parameters diff --git a/docs/cppcx/platform-sizet-value-class.md b/docs/cppcx/platform-sizet-value-class.md index fe4da84ea6..54743ab531 100644 --- a/docs/cppcx/platform-sizet-value-class.md +++ b/docs/cppcx/platform-sizet-value-class.md @@ -40,7 +40,8 @@ Initializes a new instance of SizeT with the specified value. ### Syntax ```cpp -SizeT( uint32 value1 ); SizeT( void* value2 ); +SizeT( uint32 value1 ); +SizeT( void* value2 ); ``` ### Parameters diff --git a/docs/mfc/reference/cmonthcalctrl-class.md b/docs/mfc/reference/cmonthcalctrl-class.md index 8b9469c32a..e9ce4d517d 100644 --- a/docs/mfc/reference/cmonthcalctrl-class.md +++ b/docs/mfc/reference/cmonthcalctrl-class.md @@ -304,7 +304,8 @@ The next code example reports which view the month calendar control currently di Retrieves the system time as indicated by the currently-selected date. ``` -BOOL GetCurSel(COleDateTime& refDateTime) const; BOOL GetCurSel(CTime& refDateTime) const; +BOOL GetCurSel(COleDateTime& refDateTime) const; +BOOL GetCurSel(CTime& refDateTime) const; BOOL GetCurSel(LPSYSTEMTIME pDateTime) const; ``` @@ -595,7 +596,8 @@ In MFC's implementation of `GetSelRange`, you can specify `COleDateTime` usage, Retrieves the date information for the date specified as "today" for a month calendar control. ``` -BOOL GetToday(COleDateTime& refDateTime) const; BOOL GetToday(COleDateTime& refDateTime) const; +BOOL GetToday(COleDateTime& refDateTime) const; +BOOL GetToday(COleDateTime& refDateTime) const; BOOL GetToday(LPSYSTEMTIME pDateTime) const; ``` diff --git a/docs/mfc/reference/colesafearray-class.md b/docs/mfc/reference/colesafearray-class.md index 1efbd04b7f..e2af72eeba 100644 --- a/docs/mfc/reference/colesafearray-class.md +++ b/docs/mfc/reference/colesafearray-class.md @@ -554,11 +554,14 @@ A brief description of each operator follows: This operator compares two arrays (`SAFEARRAY`, `VARIANT`, `COleVariant`, or `COleSafeArray` arrays) and returns nonzero if they are equal; otherwise 0. ``` -BOOL operator==(const SAFEARRAY& saSrc) const; BOOL operator==(LPCSAFEARRAY pSrc) const; +BOOL operator==(const SAFEARRAY& saSrc) const; +BOOL operator==(LPCSAFEARRAY pSrc) const; -BOOL operator==(const COleSafeArray& saSrc) const; BOOL operator==(const VARIANT& varSrc) const; +BOOL operator==(const COleSafeArray& saSrc) const; +BOOL operator==(const VARIANT& varSrc) const; -BOOL operator==(LPCVARIANT pSrc) const; BOOL operator==(const COleVariant& varSrc) const; +BOOL operator==(LPCVARIANT pSrc) const; +BOOL operator==(const COleVariant& varSrc) const; ``` ### Remarks diff --git a/docs/mfc/reference/cricheditctrl-class.md b/docs/mfc/reference/cricheditctrl-class.md index 95466b4037..b4c13c1261 100644 --- a/docs/mfc/reference/cricheditctrl-class.md +++ b/docs/mfc/reference/cricheditctrl-class.md @@ -553,7 +553,8 @@ For more information, see [`EM_POSFROMCHAR`](/windows/win32/Controls/em-posfromc Gets the default character formatting attributes of this `CRichEditCtrl` object. ``` -DWORD GetDefaultCharFormat(CHARFORMAT& cf) const; DWORD GetDefaultCharFormat(CHARFORMAT2& cf) const; +DWORD GetDefaultCharFormat(CHARFORMAT& cf) const; +DWORD GetDefaultCharFormat(CHARFORMAT2& cf) const; ``` ### Parameters @@ -759,7 +760,8 @@ A combination of the current option flag values. For a list of these values, see Gets the paragraph formatting attributes of the current selection. ``` -DWORD GetParaFormat(PARAFORMAT& pf) const; DWORD GetParaFormat(PARAFORMAT2& pf) const; +DWORD GetParaFormat(PARAFORMAT& pf) const; +DWORD GetParaFormat(PARAFORMAT2& pf) const; ``` ### Parameters @@ -892,7 +894,8 @@ For more information, see [`EM_EXGETSEL`](/windows/win32/Controls/em-exgetsel) m Gets the character formatting attributes of the current selection. ``` -DWORD GetSelectionCharFormat(CHARFORMAT& cf) const; DWORD GetSelectionCharFormat(CHARFORMAT2& cf) const; +DWORD GetSelectionCharFormat(CHARFORMAT& cf) const; +DWORD GetSelectionCharFormat(CHARFORMAT2& cf) const; ``` ### Parameters @@ -951,7 +954,8 @@ For more information, see [`EM_SELECTIONTYPE`](/windows/win32/Controls/em-select Retrieves the text from the current selection in this `CRichEditCtrl` object. ``` -long GetSelText(LPSTR lpBuf) const; CString GetSelText() const; +long GetSelText(LPSTR lpBuf) const; +CString GetSelText() const; ``` ### Parameters diff --git a/docs/mfc/reference/cspinbuttonctrl-class.md b/docs/mfc/reference/cspinbuttonctrl-class.md index ccd132b239..9a67088c71 100644 --- a/docs/mfc/reference/cspinbuttonctrl-class.md +++ b/docs/mfc/reference/cspinbuttonctrl-class.md @@ -201,7 +201,8 @@ A pointer to the current buddy window. Retrieves the current position of a spin button control. ``` -int GetPos() const; int GetPos32(LPBOOL lpbError = NULL) const; +int GetPos() const; +int GetPos32(LPBOOL lpbError = NULL) const; ``` ### Parameters diff --git a/docs/mfc/reference/cstatusbar-class.md b/docs/mfc/reference/cstatusbar-class.md index ff4116ac64..8cfdfc23d9 100644 --- a/docs/mfc/reference/cstatusbar-class.md +++ b/docs/mfc/reference/cstatusbar-class.md @@ -306,7 +306,8 @@ For a list of styles available for status bars, see [Create](#create). Call this member function to retrieve the text that appears in a status-bar pane. ``` -CString GetPaneText(int nIndex) const; void GetPaneText(int nIndex, CString& rString) const; +CString GetPaneText(int nIndex) const; +void GetPaneText(int nIndex, CString& rString) const; ``` ### Parameters diff --git a/docs/mfc/reference/cwinapp-class.md b/docs/mfc/reference/cwinapp-class.md index ac07d50b58..7f45102a51 100644 --- a/docs/mfc/reference/cwinapp-class.md +++ b/docs/mfc/reference/cwinapp-class.md @@ -896,7 +896,8 @@ Taskbar interaction means that MDI application displays the content of MDI child Loads the cursor resource named by *lpszResourceName* or specified by *nIDResource* from the current executable file. ``` -HCURSOR LoadCursor(LPCTSTR lpszResourceName) const; HCURSOR LoadCursor(UINT nIDResource) const; +HCURSOR LoadCursor(LPCTSTR lpszResourceName) const; +HCURSOR LoadCursor(UINT nIDResource) const; ``` ### Parameters @@ -926,7 +927,8 @@ Use the [LoadStandardCursor](#loadstandardcursor) or [LoadOEMCursor](#loadoemcur Loads the icon resource named by *lpszResourceName* or specified by *nIDResource* from the executable file. ``` -HICON LoadIcon(LPCTSTR lpszResourceName) const; HICON LoadIcon(UINT nIDResource) const; +HICON LoadIcon(LPCTSTR lpszResourceName) const; +HICON LoadIcon(UINT nIDResource) const; ``` ### Parameters diff --git a/docs/mfc/reference/cwnd-class.md b/docs/mfc/reference/cwnd-class.md index 7465c5223e..7747d85ba8 100644 --- a/docs/mfc/reference/cwnd-class.md +++ b/docs/mfc/reference/cwnd-class.md @@ -1024,7 +1024,8 @@ The `CWnd`* that is returned may be temporary and shouldn't be stored for later Converts the client coordinates of a given point or rectangle on the display to screen coordinates. ```cpp -void ClientToScreen(LPPOINT lpPoint) const; void ClientToScreen(LPRECT lpRect) const; +void ClientToScreen(LPPOINT lpPoint) const; +void ClientToScreen(LPRECT lpRect) const; ``` ### Parameters @@ -10174,7 +10175,8 @@ By default, `ContinueModal` returns `FALSE` after `EndModalLoop` is called. Retu Converts the screen coordinates of a given point or rectangle on the display to client coordinates. ```cpp -void ScreenToClient(LPPOINT lpPoint) const; void ScreenToClient(LPRECT lpRect) const; +void ScreenToClient(LPPOINT lpPoint) const; +void ScreenToClient(LPRECT lpRect) const; ``` ### Parameters From 96d5bbab2d71537ed5debf856c615de10cde5c02 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:38:19 +0800 Subject: [PATCH 881/981] Update metadata in 6 topics --- docs/cppcx/platform-intptr-value-class.md | 2 +- docs/cppcx/platform-sizet-value-class.md | 5 ++--- docs/mfc/reference/colesafearray-class.md | 5 ++--- docs/mfc/reference/cricheditctrl-class.md | 5 ++--- docs/mfc/reference/cspinbuttonctrl-class.md | 2 +- docs/mfc/reference/cstatusbar-class.md | 5 ++--- 6 files changed, 10 insertions(+), 14 deletions(-) diff --git a/docs/cppcx/platform-intptr-value-class.md b/docs/cppcx/platform-intptr-value-class.md index f3d7aecfde..8abd76f842 100644 --- a/docs/cppcx/platform-intptr-value-class.md +++ b/docs/cppcx/platform-intptr-value-class.md @@ -1,7 +1,7 @@ --- title: "Platform::IntPtr value class" description: "Learn more about: Platform::IntPtr value class" -ms.date: "12/30/2016" +ms.date: 12/30/2016 ms.topic: "reference" f1_keywords: ["VCCORLIB/PlatformIntPtr::IntPtr", "VCCORLIB/PlatformIntPtr::op_explicit Operator", "VCCORLIB/PlatformIntPtr::ToInt32"] helpviewer_keywords: ["Platform::IntPtr Struct"] diff --git a/docs/cppcx/platform-sizet-value-class.md b/docs/cppcx/platform-sizet-value-class.md index 54743ab531..3bfbf58eb1 100644 --- a/docs/cppcx/platform-sizet-value-class.md +++ b/docs/cppcx/platform-sizet-value-class.md @@ -1,11 +1,10 @@ --- -description: "Learn more about: Platform::SizeT value class" title: "Platform::SizeT value class" -ms.date: "12/30/2016" +description: "Learn more about: Platform::SizeT value class" +ms.date: 12/30/2016 ms.topic: "reference" f1_keywords: ["VCCORLIB/PlatformSizeT::SizeT constructor"] helpviewer_keywords: ["Platform::SizeT Struct"] -ms.assetid: 0803612c-8ba1-430c-9b7b-1bebae88608d --- # Platform::SizeT value class diff --git a/docs/mfc/reference/colesafearray-class.md b/docs/mfc/reference/colesafearray-class.md index e2af72eeba..f85c05baf8 100644 --- a/docs/mfc/reference/colesafearray-class.md +++ b/docs/mfc/reference/colesafearray-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: COleSafeArray Class" title: "COleSafeArray Class" -ms.date: "08/29/2019" +description: "Learn more about: COleSafeArray Class" +ms.date: 08/29/2019 f1_keywords: ["COleSafeArray", "AFXDISP/COleSafeArray", "AFXDISP/COleSafeArray::COleSafeArray", "AFXDISP/COleSafeArray::AccessData", "AFXDISP/COleSafeArray::AllocData", "AFXDISP/COleSafeArray::AllocDescriptor", "AFXDISP/COleSafeArray::Attach", "AFXDISP/COleSafeArray::Clear", "AFXDISP/COleSafeArray::Copy", "AFXDISP/COleSafeArray::Create", "AFXDISP/COleSafeArray::CreateOneDim", "AFXDISP/COleSafeArray::Destroy", "AFXDISP/COleSafeArray::DestroyData", "AFXDISP/COleSafeArray::DestroyDescriptor", "AFXDISP/COleSafeArray::Detach", "AFXDISP/COleSafeArray::GetByteArray", "AFXDISP/COleSafeArray::GetDim", "AFXDISP/COleSafeArray::GetElement", "AFXDISP/COleSafeArray::GetElemSize", "AFXDISP/COleSafeArray::GetLBound", "AFXDISP/COleSafeArray::GetOneDimSize", "AFXDISP/COleSafeArray::GetUBound", "AFXDISP/COleSafeArray::Lock", "AFXDISP/COleSafeArray::PtrOfIndex", "AFXDISP/COleSafeArray::PutElement", "AFXDISP/COleSafeArray::Redim", "AFXDISP/COleSafeArray::ResizeOneDim", "AFXDISP/COleSafeArray::UnaccessData", "AFXDISP/COleSafeArray::Unlock"] helpviewer_keywords: ["COleSafeArray [MFC], COleSafeArray", "COleSafeArray [MFC], AccessData", "COleSafeArray [MFC], AllocData", "COleSafeArray [MFC], AllocDescriptor", "COleSafeArray [MFC], Attach", "COleSafeArray [MFC], Clear", "COleSafeArray [MFC], Copy", "COleSafeArray [MFC], Create", "COleSafeArray [MFC], CreateOneDim", "COleSafeArray [MFC], Destroy", "COleSafeArray [MFC], DestroyData", "COleSafeArray [MFC], DestroyDescriptor", "COleSafeArray [MFC], Detach", "COleSafeArray [MFC], GetByteArray", "COleSafeArray [MFC], GetDim", "COleSafeArray [MFC], GetElement", "COleSafeArray [MFC], GetElemSize", "COleSafeArray [MFC], GetLBound", "COleSafeArray [MFC], GetOneDimSize", "COleSafeArray [MFC], GetUBound", "COleSafeArray [MFC], Lock", "COleSafeArray [MFC], PtrOfIndex", "COleSafeArray [MFC], PutElement", "COleSafeArray [MFC], Redim", "COleSafeArray [MFC], ResizeOneDim", "COleSafeArray [MFC], UnaccessData", "COleSafeArray [MFC], Unlock"] -ms.assetid: f45a5224-5f48-40ec-9ddd-287ef9740150 --- # COleSafeArray Class diff --git a/docs/mfc/reference/cricheditctrl-class.md b/docs/mfc/reference/cricheditctrl-class.md index b4c13c1261..146d92aecf 100644 --- a/docs/mfc/reference/cricheditctrl-class.md +++ b/docs/mfc/reference/cricheditctrl-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CRichEditCtrl Class" title: "CRichEditCtrl Class" -ms.date: "11/04/2016" +description: "Learn more about: CRichEditCtrl Class" +ms.date: 11/04/2016 f1_keywords: ["CRichEditCtrl", "AFXCMN/CRichEditCtrl", "AFXCMN/CRichEditCtrl::CRichEditCtrl", "AFXCMN/CRichEditCtrl::CanPaste", "AFXCMN/CRichEditCtrl::CanRedo", "AFXCMN/CRichEditCtrl::CanUndo", "AFXCMN/CRichEditCtrl::CharFromPos", "AFXCMN/CRichEditCtrl::Clear", "AFXCMN/CRichEditCtrl::Copy", "AFXCMN/CRichEditCtrl::Create", "AFXCMN/CRichEditCtrl::CreateEx", "AFXCMN/CRichEditCtrl::Cut", "AFXCMN/CRichEditCtrl::DisplayBand", "AFXCMN/CRichEditCtrl::EmptyUndoBuffer", "AFXCMN/CRichEditCtrl::FindText", "AFXCMN/CRichEditCtrl::FindWordBreak", "AFXCMN/CRichEditCtrl::FormatRange", "AFXCMN/CRichEditCtrl::GetCharPos", "AFXCMN/CRichEditCtrl::GetDefaultCharFormat", "AFXCMN/CRichEditCtrl::GetEventMask", "AFXCMN/CRichEditCtrl::GetFirstVisibleLine", "AFXCMN/CRichEditCtrl::GetIRichEditOle", "AFXCMN/CRichEditCtrl::GetLimitText", "AFXCMN/CRichEditCtrl::GetLine", "AFXCMN/CRichEditCtrl::GetLineCount", "AFXCMN/CRichEditCtrl::GetModify", "AFXCMN/CRichEditCtrl::GetOptions", "AFXCMN/CRichEditCtrl::GetParaFormat", "AFXCMN/CRichEditCtrl::GetPunctuation", "AFXCMN/CRichEditCtrl::GetRect", "AFXCMN/CRichEditCtrl::GetRedoName", "AFXCMN/CRichEditCtrl::GetSel", "AFXCMN/CRichEditCtrl::GetSelectionCharFormat", "AFXCMN/CRichEditCtrl::GetSelectionType", "AFXCMN/CRichEditCtrl::GetSelText", "AFXCMN/CRichEditCtrl::GetTextLength", "AFXCMN/CRichEditCtrl::GetTextLengthEx", "AFXCMN/CRichEditCtrl::GetTextMode", "AFXCMN/CRichEditCtrl::GetTextRange", "AFXCMN/CRichEditCtrl::GetUndoName", "AFXCMN/CRichEditCtrl::GetWordWrapMode", "AFXCMN/CRichEditCtrl::HideSelection", "AFXCMN/CRichEditCtrl::LimitText", "AFXCMN/CRichEditCtrl::LineFromChar", "AFXCMN/CRichEditCtrl::LineIndex", "AFXCMN/CRichEditCtrl::LineLength", "AFXCMN/CRichEditCtrl::LineScroll", "AFXCMN/CRichEditCtrl::Paste", "AFXCMN/CRichEditCtrl::PasteSpecial", "AFXCMN/CRichEditCtrl::PosFromChar", "AFXCMN/CRichEditCtrl::Redo", "AFXCMN/CRichEditCtrl::ReplaceSel", "AFXCMN/CRichEditCtrl::RequestResize", "AFXCMN/CRichEditCtrl::SetAutoURLDetect", "AFXCMN/CRichEditCtrl::SetBackgroundColor", "AFXCMN/CRichEditCtrl::SetDefaultCharFormat", "AFXCMN/CRichEditCtrl::SetEventMask", "AFXCMN/CRichEditCtrl::SetModify", "AFXCMN/CRichEditCtrl::SetOLECallback", "AFXCMN/CRichEditCtrl::SetOptions", "AFXCMN/CRichEditCtrl::SetParaFormat", "AFXCMN/CRichEditCtrl::SetPunctuation", "AFXCMN/CRichEditCtrl::SetReadOnly", "AFXCMN/CRichEditCtrl::SetRect", "AFXCMN/CRichEditCtrl::SetSel", "AFXCMN/CRichEditCtrl::SetSelectionCharFormat", "AFXCMN/CRichEditCtrl::SetTargetDevice", "AFXCMN/CRichEditCtrl::SetTextMode", "AFXCMN/CRichEditCtrl::SetUndoLimit", "AFXCMN/CRichEditCtrl::SetWordCharFormat", "AFXCMN/CRichEditCtrl::SetWordWrapMode", "AFXCMN/CRichEditCtrl::StopGroupTyping", "AFXCMN/CRichEditCtrl::StreamIn", "AFXCMN/CRichEditCtrl::StreamOut", "AFXCMN/CRichEditCtrl::Undo"] helpviewer_keywords: ["CRichEditCtrl [MFC], CRichEditCtrl", "CRichEditCtrl [MFC], CanPaste", "CRichEditCtrl [MFC], CanRedo", "CRichEditCtrl [MFC], CanUndo", "CRichEditCtrl [MFC], CharFromPos", "CRichEditCtrl [MFC], Clear", "CRichEditCtrl [MFC], Copy", "CRichEditCtrl [MFC], Create", "CRichEditCtrl [MFC], CreateEx", "CRichEditCtrl [MFC], Cut", "CRichEditCtrl [MFC], DisplayBand", "CRichEditCtrl [MFC], EmptyUndoBuffer", "CRichEditCtrl [MFC], FindText", "CRichEditCtrl [MFC], FindWordBreak", "CRichEditCtrl [MFC], FormatRange", "CRichEditCtrl [MFC], GetCharPos", "CRichEditCtrl [MFC], GetDefaultCharFormat", "CRichEditCtrl [MFC], GetEventMask", "CRichEditCtrl [MFC], GetFirstVisibleLine", "CRichEditCtrl [MFC], GetIRichEditOle", "CRichEditCtrl [MFC], GetLimitText", "CRichEditCtrl [MFC], GetLine", "CRichEditCtrl [MFC], GetLineCount", "CRichEditCtrl [MFC], GetModify", "CRichEditCtrl [MFC], GetOptions", "CRichEditCtrl [MFC], GetParaFormat", "CRichEditCtrl [MFC], GetPunctuation", "CRichEditCtrl [MFC], GetRect", "CRichEditCtrl [MFC], GetRedoName", "CRichEditCtrl [MFC], GetSel", "CRichEditCtrl [MFC], GetSelectionCharFormat", "CRichEditCtrl [MFC], GetSelectionType", "CRichEditCtrl [MFC], GetSelText", "CRichEditCtrl [MFC], GetTextLength", "CRichEditCtrl [MFC], GetTextLengthEx", "CRichEditCtrl [MFC], GetTextMode", "CRichEditCtrl [MFC], GetTextRange", "CRichEditCtrl [MFC], GetUndoName", "CRichEditCtrl [MFC], GetWordWrapMode", "CRichEditCtrl [MFC], HideSelection", "CRichEditCtrl [MFC], LimitText", "CRichEditCtrl [MFC], LineFromChar", "CRichEditCtrl [MFC], LineIndex", "CRichEditCtrl [MFC], LineLength", "CRichEditCtrl [MFC], LineScroll", "CRichEditCtrl [MFC], Paste", "CRichEditCtrl [MFC], PasteSpecial", "CRichEditCtrl [MFC], PosFromChar", "CRichEditCtrl [MFC], Redo", "CRichEditCtrl [MFC], ReplaceSel", "CRichEditCtrl [MFC], RequestResize", "CRichEditCtrl [MFC], SetAutoURLDetect", "CRichEditCtrl [MFC], SetBackgroundColor", "CRichEditCtrl [MFC], SetDefaultCharFormat", "CRichEditCtrl [MFC], SetEventMask", "CRichEditCtrl [MFC], SetModify", "CRichEditCtrl [MFC], SetOLECallback", "CRichEditCtrl [MFC], SetOptions", "CRichEditCtrl [MFC], SetParaFormat", "CRichEditCtrl [MFC], SetPunctuation", "CRichEditCtrl [MFC], SetReadOnly", "CRichEditCtrl [MFC], SetRect", "CRichEditCtrl [MFC], SetSel", "CRichEditCtrl [MFC], SetSelectionCharFormat", "CRichEditCtrl [MFC], SetTargetDevice", "CRichEditCtrl [MFC], SetTextMode", "CRichEditCtrl [MFC], SetUndoLimit", "CRichEditCtrl [MFC], SetWordCharFormat", "CRichEditCtrl [MFC], SetWordWrapMode", "CRichEditCtrl [MFC], StopGroupTyping", "CRichEditCtrl [MFC], StreamIn", "CRichEditCtrl [MFC], StreamOut", "CRichEditCtrl [MFC], Undo"] -ms.assetid: 2be52788-822c-4c27-aafd-2471231e74eb --- # `CRichEditCtrl` Class diff --git a/docs/mfc/reference/cspinbuttonctrl-class.md b/docs/mfc/reference/cspinbuttonctrl-class.md index 9a67088c71..d5fc72a6e4 100644 --- a/docs/mfc/reference/cspinbuttonctrl-class.md +++ b/docs/mfc/reference/cspinbuttonctrl-class.md @@ -1,7 +1,7 @@ --- title: "CSpinButtonCtrl Class" description: "Learn more about: CSpinButtonCtrl Class" -ms.date: "11/04/2016" +ms.date: 11/04/2016 f1_keywords: ["CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl::CSpinButtonCtrl", "AFXCMN/CSpinButtonCtrl::Create", "AFXCMN/CSpinButtonCtrl::CreateEx", "AFXCMN/CSpinButtonCtrl::GetAccel", "AFXCMN/CSpinButtonCtrl::GetBase", "AFXCMN/CSpinButtonCtrl::GetBuddy", "AFXCMN/CSpinButtonCtrl::GetPos", "AFXCMN/CSpinButtonCtrl::GetRange", "AFXCMN/CSpinButtonCtrl::SetAccel", "AFXCMN/CSpinButtonCtrl::SetBase", "AFXCMN/CSpinButtonCtrl::SetBuddy", "AFXCMN/CSpinButtonCtrl::SetPos", "AFXCMN/CSpinButtonCtrl::SetRange"] helpviewer_keywords: ["CSpinButtonCtrl [MFC], CSpinButtonCtrl", "CSpinButtonCtrl [MFC], Create", "CSpinButtonCtrl [MFC], CreateEx", "CSpinButtonCtrl [MFC], GetAccel", "CSpinButtonCtrl [MFC], GetBase", "CSpinButtonCtrl [MFC], GetBuddy", "CSpinButtonCtrl [MFC], GetPos", "CSpinButtonCtrl [MFC], GetRange", "CSpinButtonCtrl [MFC], SetAccel", "CSpinButtonCtrl [MFC], SetBase", "CSpinButtonCtrl [MFC], SetBuddy", "CSpinButtonCtrl [MFC], SetPos", "CSpinButtonCtrl [MFC], SetRange"] --- diff --git a/docs/mfc/reference/cstatusbar-class.md b/docs/mfc/reference/cstatusbar-class.md index 8cfdfc23d9..ccbf9e6602 100644 --- a/docs/mfc/reference/cstatusbar-class.md +++ b/docs/mfc/reference/cstatusbar-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CStatusBar Class" title: "CStatusBar Class" -ms.date: "11/04/2016" +description: "Learn more about: CStatusBar Class" +ms.date: 11/04/2016 f1_keywords: ["CStatusBar", "AFXEXT/CStatusBar", "AFXEXT/CStatusBar::CStatusBar", "AFXEXT/CStatusBar::CommandToIndex", "AFXEXT/CStatusBar::Create", "AFXEXT/CStatusBar::CreateEx", "AFXEXT/CStatusBar::DrawItem", "AFXEXT/CStatusBar::GetItemID", "AFXEXT/CStatusBar::GetItemRect", "AFXEXT/CStatusBar::GetPaneInfo", "AFXEXT/CStatusBar::GetPaneStyle", "AFXEXT/CStatusBar::GetPaneText", "AFXEXT/CStatusBar::GetStatusBarCtrl", "AFXEXT/CStatusBar::SetIndicators", "AFXEXT/CStatusBar::SetPaneInfo", "AFXEXT/CStatusBar::SetPaneStyle", "AFXEXT/CStatusBar::SetPaneText"] helpviewer_keywords: ["CStatusBar [MFC], CStatusBar", "CStatusBar [MFC], CommandToIndex", "CStatusBar [MFC], Create", "CStatusBar [MFC], CreateEx", "CStatusBar [MFC], DrawItem", "CStatusBar [MFC], GetItemID", "CStatusBar [MFC], GetItemRect", "CStatusBar [MFC], GetPaneInfo", "CStatusBar [MFC], GetPaneStyle", "CStatusBar [MFC], GetPaneText", "CStatusBar [MFC], GetStatusBarCtrl", "CStatusBar [MFC], SetIndicators", "CStatusBar [MFC], SetPaneInfo", "CStatusBar [MFC], SetPaneStyle", "CStatusBar [MFC], SetPaneText"] -ms.assetid: a3bde3db-e71c-4881-a3ca-1d5481c345ba --- # CStatusBar Class From ea3a4b5aa934cf8d71fb0d61580e08b874d9aaf3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:55:29 +0800 Subject: [PATCH 882/981] Add blockquotes for error messages in range [C2181, C2200] --- docs/error-messages/compiler-errors-1/compiler-error-c2181.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2182.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2183.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2184.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2185.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2186.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2188.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2190.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2191.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2192.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2193.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2194.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2195.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2196.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2197.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2198.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2199.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2200.md | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md index e3ca226ad7..10d987bb55 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md @@ -8,7 +8,7 @@ ms.assetid: d52b2fe4-566a-40a9-b8e2-8dce1f287668 --- # Compiler Error C2181 -illegal else without matching if +> illegal else without matching if Each **`else`** must have a matching **`if`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md index 6aef2bbc65..1453b5a7f9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md @@ -8,7 +8,7 @@ ms.assetid: dfd8d47d-9606-496e-bd96-4bf41ba1f857 --- # Compiler Error C2182 -'identifier' : illegal use of type 'void' +> 'identifier' : illegal use of type 'void' A variable is declared type **`void`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md index 85d58a5372..a9c73bfc06 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md @@ -8,6 +8,6 @@ ms.assetid: 03d2d010-a276-4ac3-820c-159abd8b1222 --- # Compiler Error C2183 -syntax error: translation unit is empty +> syntax error: translation unit is empty Preprocessing produced an empty source file. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md index 3d03849634..ec79152586 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md @@ -8,7 +8,7 @@ ms.assetid: 80fc8bff-7d76-4bde-94d2-01d84bb6824a --- # Compiler Error C2184 -'type' : illegal type for __except expression, must be an integral +> 'type' : illegal type for __except expression, must be an integral A type was used in an [__except](../../c-language/try-except-statement-c.md) statement, but the type is not allowed. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md index b6db092290..42b513faa4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md @@ -8,6 +8,6 @@ ms.assetid: 74bc9f64-7b4c-4735-ba13-67c43f8c47db --- # Compiler Error C2185 -'identifier' : illegal based allocation +> 'identifier' : illegal based allocation A register variable or automatic (local) variable is declared **`__based`**. Only global variables can be declared **`__based`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md index 749be6dcbc..8f4c13691e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md @@ -8,7 +8,7 @@ ms.assetid: 284bfb7e-ab85-4fcb-9864-1ddf7f6c94ae --- # Compiler Error C2186 -'operator' : illegal operand of type 'void' +> 'operator' : illegal operand of type 'void' The operator has a **`void`** operand. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md index 74433b0919..692c261ac2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md @@ -8,6 +8,6 @@ ms.assetid: 2223147f-e487-4090-acdf-75ba4e1114f6 --- # Compiler Error C2188 -'number' : too big for wide character +> 'number' : too big for wide character The number exceeds the size limit for the wide-character type. Choose a larger type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md index a1a2c41a07..f93d5accb8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md @@ -8,7 +8,7 @@ ms.assetid: 34e15f85-d979-4948-80fc-46c414508a70 --- # Compiler Error C2190 -first parameter list longer than second +> first parameter list longer than second A C function was declared a second time with a shorter parameter list. C does not support overloaded functions. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md index d55e9b6fc7..ddb04d0e1d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md @@ -8,7 +8,7 @@ ms.assetid: 051b8350-e5de-4f51-ab6e-96d32366bcef --- # Compiler Error C2191 -second parameter list longer than first +> second parameter list longer than first A C function was declared a second time with a longer parameter list. C does not support overloaded functions. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md index 3444f6a2d6..3ccc3fbc0f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md @@ -8,7 +8,7 @@ ms.assetid: a147197e-e72d-4620-939b-f9e08d7c7c12 --- # Compiler Error C2192 -parameter 'number' declaration different +> parameter 'number' declaration different A C function was declared a second time with a different parameter list. C does not support overloaded functions. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md index 8175641f50..99b7ab7a3d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md @@ -8,7 +8,7 @@ ms.assetid: 9813e853-d581-4f51-bb75-4e242298a844 --- # Compiler Error C2193 -'identifier' : already in a segment +> 'identifier' : already in a segment A function was placed in two different segments using `alloc_text` and `code_seg` pragmas. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md index 97e108884e..1321ac59fe 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md @@ -8,7 +8,7 @@ ms.assetid: df6e631c-0062-4844-9088-4cc7a0ff879f --- # Compiler Error C2194 -'identifier' : is a text segment +> 'identifier' : is a text segment The `data_seg` pragma uses a segment name used with `code_seg`. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md index 34f1655447..98affe245b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md @@ -8,7 +8,7 @@ ms.assetid: 9f9f035c-9c51-4173-a8ea-c6f907fc5c63 --- # Compiler Error C2195 -'identifier' : is a data segment +> 'identifier' : is a data segment The `code_seg` pragma uses a segment name used with the `data_seg` pragma. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md index e3e854bae8..a3f56f0e37 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md @@ -8,7 +8,7 @@ ms.assetid: fd2f6a58-48ce-4e58-96f8-e37720feb8e7 --- # Compiler Error C2196 -case value 'value' already used. +> case value 'value' already used. A switch statement uses the same case value more than once. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md index d59180593b..adc216f444 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md @@ -8,7 +8,7 @@ ms.assetid: 6dd5a6ec-bc80-41b9-a4ac-46f80eaca42d --- # Compiler Error C2197 -'function' : too many arguments for call +> 'function' : too many arguments for call The compiler detected too many parameters for a call to the function, or an incorrect function declaration. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md index 56e12832c9..bd7a75460b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md @@ -8,7 +8,7 @@ ms.assetid: 638a845c-9d7f-4115-a9aa-d72455605668 --- # Compiler Error C2198 -'function' : too few arguments for call +> 'function' : too few arguments for call The compiler found too few parameters for a call to the function, or an incorrect function declaration. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md index 74067b233c..dffb6e88b2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md @@ -8,7 +8,7 @@ ms.assetid: 6a92a1b7-7906-49e6-a31f-e8bffbc7706a --- # Compiler Error C2199 -syntax error : found 'identifier (' at global scope (was a declaration intended?) +> syntax error : found 'identifier (' at global scope (was a declaration intended?) The specified context caused a syntax error. There may be incorrect declaration syntax. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md index c01937be6c..ce3e8f512d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2200"] --- # Compiler Error C2200 -'function': function has already been defined +> 'function': function has already been defined An [`alloc_text`](../../preprocessor/alloc-text.md) pragma uses a function name already defined. Ensure the `alloc_text` pragma appears after the function declaration but before its definition. From cfb1f12b9b6c8481fd51975fb1de8021863ca821 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 19:00:05 +0800 Subject: [PATCH 883/981] Add "Remarks" and "Example" headings for error references in range [C2181, C2200] --- docs/error-messages/compiler-errors-1/compiler-error-c2181.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2182.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2183.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2184.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2185.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2186.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2188.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2190.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2191.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2192.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2193.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2194.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2195.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2196.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2197.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2198.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2199.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2200.md | 4 ++++ 18 files changed, 64 insertions(+) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md index 10d987bb55..fe505fa279 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md @@ -10,8 +10,12 @@ ms.assetid: d52b2fe4-566a-40a9-b8e2-8dce1f287668 > illegal else without matching if +## Remarks + Each **`else`** must have a matching **`if`**. +## Example + The following sample generates C2181: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md index 1453b5a7f9..15559ac946 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md @@ -10,8 +10,12 @@ ms.assetid: dfd8d47d-9606-496e-bd96-4bf41ba1f857 > 'identifier' : illegal use of type 'void' +## Remarks + A variable is declared type **`void`**. +## Example + The following sample generates C2182: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md index a9c73bfc06..948095c359 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md @@ -10,4 +10,6 @@ ms.assetid: 03d2d010-a276-4ac3-820c-159abd8b1222 > syntax error: translation unit is empty +## Remarks + Preprocessing produced an empty source file. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md index ec79152586..4c606c8e6c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md @@ -10,8 +10,12 @@ ms.assetid: 80fc8bff-7d76-4bde-94d2-01d84bb6824a > 'type' : illegal type for __except expression, must be an integral +## Remarks + A type was used in an [__except](../../c-language/try-except-statement-c.md) statement, but the type is not allowed. +## Example + The following sample generates C2184: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md index 42b513faa4..26f759d60a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md @@ -10,4 +10,6 @@ ms.assetid: 74bc9f64-7b4c-4735-ba13-67c43f8c47db > 'identifier' : illegal based allocation +## Remarks + A register variable or automatic (local) variable is declared **`__based`**. Only global variables can be declared **`__based`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md index 8f4c13691e..6507cbbe24 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md @@ -10,8 +10,12 @@ ms.assetid: 284bfb7e-ab85-4fcb-9864-1ddf7f6c94ae > 'operator' : illegal operand of type 'void' +## Remarks + The operator has a **`void`** operand. +## Example + The following sample generates C2186: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md index 692c261ac2..9d63788459 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md @@ -10,4 +10,6 @@ ms.assetid: 2223147f-e487-4090-acdf-75ba4e1114f6 > 'number' : too big for wide character +## Remarks + The number exceeds the size limit for the wide-character type. Choose a larger type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md index f93d5accb8..a1e46a787b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md @@ -10,8 +10,12 @@ ms.assetid: 34e15f85-d979-4948-80fc-46c414508a70 > first parameter list longer than second +## Remarks + A C function was declared a second time with a shorter parameter list. C does not support overloaded functions. +## Example + The following sample generates C2190: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md index ddb04d0e1d..f7f15be9a3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md @@ -10,6 +10,8 @@ ms.assetid: 051b8350-e5de-4f51-ab6e-96d32366bcef > second parameter list longer than first +## Remarks + A C function was declared a second time with a longer parameter list. C does not support overloaded functions. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md index 3ccc3fbc0f..53d8a43f0a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md @@ -10,8 +10,12 @@ ms.assetid: a147197e-e72d-4620-939b-f9e08d7c7c12 > parameter 'number' declaration different +## Remarks + A C function was declared a second time with a different parameter list. C does not support overloaded functions. +## Example + The following sample generates C2192: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md index 99b7ab7a3d..99234f37dc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md @@ -10,8 +10,12 @@ ms.assetid: 9813e853-d581-4f51-bb75-4e242298a844 > 'identifier' : already in a segment +## Remarks + A function was placed in two different segments using `alloc_text` and `code_seg` pragmas. +## Example + The following sample generates C2193: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md index 1321ac59fe..5e4dd8c40a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md @@ -10,8 +10,12 @@ ms.assetid: df6e631c-0062-4844-9088-4cc7a0ff879f > 'identifier' : is a text segment +## Remarks + The `data_seg` pragma uses a segment name used with `code_seg`. +## Example + The following sample generates C2194: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md index 98affe245b..08b67f67bc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md @@ -10,8 +10,12 @@ ms.assetid: 9f9f035c-9c51-4173-a8ea-c6f907fc5c63 > 'identifier' : is a data segment +## Remarks + The `code_seg` pragma uses a segment name used with the `data_seg` pragma. +## Example + The following sample generates C2195: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md index a3f56f0e37..d81489b152 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md @@ -10,8 +10,12 @@ ms.assetid: fd2f6a58-48ce-4e58-96f8-e37720feb8e7 > case value 'value' already used. +## Remarks + A switch statement uses the same case value more than once. +## Example + The following sample generates C2196: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md index adc216f444..f2fd57fb54 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md @@ -10,8 +10,12 @@ ms.assetid: 6dd5a6ec-bc80-41b9-a4ac-46f80eaca42d > 'function' : too many arguments for call +## Remarks + The compiler detected too many parameters for a call to the function, or an incorrect function declaration. +## Example + The following sample generates C2197: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md index bd7a75460b..87c3106397 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md @@ -10,8 +10,12 @@ ms.assetid: 638a845c-9d7f-4115-a9aa-d72455605668 > 'function' : too few arguments for call +## Remarks + The compiler found too few parameters for a call to the function, or an incorrect function declaration. +## Example + The following sample generates C2198: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md index dffb6e88b2..1b2aff2d6f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md @@ -10,8 +10,12 @@ ms.assetid: 6a92a1b7-7906-49e6-a31f-e8bffbc7706a > syntax error : found 'identifier (' at global scope (was a declaration intended?) +## Remarks + The specified context caused a syntax error. There may be incorrect declaration syntax. +## Example + The following sample generates C2199: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md index ce3e8f512d..7c5b1dd5cd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2200"] > 'function': function has already been defined +## Remarks + An [`alloc_text`](../../preprocessor/alloc-text.md) pragma uses a function name already defined. Ensure the `alloc_text` pragma appears after the function declaration but before its definition. +## Example + The following sample generates C2200: ```cpp From 8364bf9271f247a1cee38c0935ce98a46b4821df Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 19:02:07 +0800 Subject: [PATCH 884/981] Replace term "sample" with "example" for error references in range [C2181, C2200] --- docs/error-messages/compiler-errors-1/compiler-error-c2181.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2182.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2184.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2186.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2190.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2191.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2192.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2193.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2194.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2195.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2196.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2197.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2198.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2199.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2200.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md index fe505fa279..8353876884 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md @@ -16,7 +16,7 @@ Each **`else`** must have a matching **`if`**. ## Example -The following sample generates C2181: +The following example generates C2181: ```cpp // C2181.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md index 15559ac946..1510f62f67 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md @@ -16,7 +16,7 @@ A variable is declared type **`void`**. ## Example -The following sample generates C2182: +The following example generates C2182: ```cpp // C2182.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md index 4c606c8e6c..31352df295 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md @@ -16,7 +16,7 @@ A type was used in an [__except](../../c-language/try-except-statement-c.md) sta ## Example -The following sample generates C2184: +The following example generates C2184: ```cpp // C2184.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md index 6507cbbe24..f055231f04 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md @@ -16,7 +16,7 @@ The operator has a **`void`** operand. ## Example -The following sample generates C2186: +The following example generates C2186: ```cpp // C2186.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md index a1e46a787b..6861e85bc8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md @@ -16,7 +16,7 @@ A C function was declared a second time with a shorter parameter list. C does no ## Example -The following sample generates C2190: +The following example generates C2190: ```c // C2190.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md index f7f15be9a3..dd24446d6b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md @@ -16,7 +16,7 @@ A C function was declared a second time with a longer parameter list. C does not ## Example -The following sample generates C2191: +The following example generates C2191: ```c // C2191.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md index 53d8a43f0a..b0542a307c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md @@ -16,7 +16,7 @@ A C function was declared a second time with a different parameter list. C does ## Example -The following sample generates C2192: +The following example generates C2192: ```c // C2192.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md index 99234f37dc..9c95b5c619 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md @@ -16,7 +16,7 @@ A function was placed in two different segments using `alloc_text` and `code_seg ## Example -The following sample generates C2193: +The following example generates C2193: ```cpp // C2193.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md index 5e4dd8c40a..69c6990d73 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md @@ -16,7 +16,7 @@ The `data_seg` pragma uses a segment name used with `code_seg`. ## Example -The following sample generates C2194: +The following example generates C2194: ```cpp // C2194.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md index 08b67f67bc..79cc228825 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md @@ -16,7 +16,7 @@ The `code_seg` pragma uses a segment name used with the `data_seg` pragma. ## Example -The following sample generates C2195: +The following example generates C2195: ```cpp // C2195.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md index d81489b152..c6b7500c46 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md @@ -16,7 +16,7 @@ A switch statement uses the same case value more than once. ## Example -The following sample generates C2196: +The following example generates C2196: ```cpp // C2196.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md index f2fd57fb54..595214a0fd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md @@ -16,7 +16,7 @@ The compiler detected too many parameters for a call to the function, or an inco ## Example -The following sample generates C2197: +The following example generates C2197: ```c // C2197.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md index 87c3106397..facb5ccee2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md @@ -16,7 +16,7 @@ The compiler found too few parameters for a call to the function, or an incorrec ## Example -The following sample generates C2198: +The following example generates C2198: ```c // C2198.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md index 1b2aff2d6f..dd26d25d21 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md @@ -16,7 +16,7 @@ The specified context caused a syntax error. There may be incorrect declaration ## Example -The following sample generates C2199: +The following example generates C2199: ```cpp // C2199.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md index 7c5b1dd5cd..0ab3a3dc22 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md @@ -15,7 +15,7 @@ An [`alloc_text`](../../preprocessor/alloc-text.md) pragma uses a function name ## Example -The following sample generates C2200: +The following example generates C2200: ```cpp // C2200.cpp From 5917d342e5c88ba039af5841bcd33f59feabc3b0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 18 Jul 2025 19:05:13 +0800 Subject: [PATCH 885/981] Update metadata for error references in range [C2181, C2200] --- .../error-messages/compiler-errors-1/compiler-error-c2181.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2182.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2183.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2184.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2185.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2186.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2188.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2190.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2191.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2192.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2193.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2194.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2195.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2196.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2197.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2198.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2199.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2200.md | 2 +- 18 files changed, 35 insertions(+), 52 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md index 8353876884..be880ea0e8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2181.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2181.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2181" title: "Compiler Error C2181" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2181" +ms.date: 11/04/2016 f1_keywords: ["C2181"] helpviewer_keywords: ["C2181"] -ms.assetid: d52b2fe4-566a-40a9-b8e2-8dce1f287668 --- # Compiler Error C2181 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md index 1510f62f67..86a4d0259c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2182.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2182.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2182" title: "Compiler Error C2182" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2182" +ms.date: 11/04/2016 f1_keywords: ["C2182"] helpviewer_keywords: ["C2182"] -ms.assetid: dfd8d47d-9606-496e-bd96-4bf41ba1f857 --- # Compiler Error C2182 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md index 948095c359..95d0ed0a55 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2183.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2183.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2183" title: "Compiler Error C2183" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2183" +ms.date: 11/04/2016 f1_keywords: ["C2183"] helpviewer_keywords: ["C2183"] -ms.assetid: 03d2d010-a276-4ac3-820c-159abd8b1222 --- # Compiler Error C2183 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md index 31352df295..bee34695f9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2184.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2184.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2184" title: "Compiler Error C2184" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2184" +ms.date: 11/04/2016 f1_keywords: ["C2184"] helpviewer_keywords: ["C2184"] -ms.assetid: 80fc8bff-7d76-4bde-94d2-01d84bb6824a --- # Compiler Error C2184 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md index 26f759d60a..0137134698 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2185.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2185.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2185" title: "Compiler Error C2185" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2185" +ms.date: 11/04/2016 f1_keywords: ["C2185"] helpviewer_keywords: ["C2185"] -ms.assetid: 74bc9f64-7b4c-4735-ba13-67c43f8c47db --- # Compiler Error C2185 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md index f055231f04..e2ad100f3d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2186.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2186.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2186" title: "Compiler Error C2186" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2186" +ms.date: 11/04/2016 f1_keywords: ["C2186"] helpviewer_keywords: ["C2186"] -ms.assetid: 284bfb7e-ab85-4fcb-9864-1ddf7f6c94ae --- # Compiler Error C2186 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md index 9d63788459..e6bc3822cd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2188.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2188.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2188" title: "Compiler Error C2188" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2188" +ms.date: 11/04/2016 f1_keywords: ["C2188"] helpviewer_keywords: ["C2188"] -ms.assetid: 2223147f-e487-4090-acdf-75ba4e1114f6 --- # Compiler Error C2188 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md index 6861e85bc8..b1b5022b24 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2190.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2190.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2190" title: "Compiler Error C2190" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2190" +ms.date: 11/04/2016 f1_keywords: ["C2190"] helpviewer_keywords: ["C2190"] -ms.assetid: 34e15f85-d979-4948-80fc-46c414508a70 --- # Compiler Error C2190 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md index dd24446d6b..26511d59b3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2191.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2191.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2191" title: "Compiler Error C2191" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2191" +ms.date: 11/04/2016 f1_keywords: ["C2191"] helpviewer_keywords: ["C2191"] -ms.assetid: 051b8350-e5de-4f51-ab6e-96d32366bcef --- # Compiler Error C2191 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md index b0542a307c..99ad0f1f3c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2192.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2192.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2192" title: "Compiler Error C2192" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2192" +ms.date: 11/04/2016 f1_keywords: ["C2192"] helpviewer_keywords: ["C2192"] -ms.assetid: a147197e-e72d-4620-939b-f9e08d7c7c12 --- # Compiler Error C2192 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md index 9c95b5c619..3ccc804d02 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2193.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2193.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2193" title: "Compiler Error C2193" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2193" +ms.date: 11/04/2016 f1_keywords: ["C2193"] helpviewer_keywords: ["C2193"] -ms.assetid: 9813e853-d581-4f51-bb75-4e242298a844 --- # Compiler Error C2193 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md index 69c6990d73..371a93bf9f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2194.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2194.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2194" title: "Compiler Error C2194" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2194" +ms.date: 11/04/2016 f1_keywords: ["C2194"] helpviewer_keywords: ["C2194"] -ms.assetid: df6e631c-0062-4844-9088-4cc7a0ff879f --- # Compiler Error C2194 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md index 79cc228825..04352aa63f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2195.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2195.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2195" title: "Compiler Error C2195" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2195" +ms.date: 11/04/2016 f1_keywords: ["C2195"] helpviewer_keywords: ["C2195"] -ms.assetid: 9f9f035c-9c51-4173-a8ea-c6f907fc5c63 --- # Compiler Error C2195 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md index c6b7500c46..d36f92c67e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2196.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2196.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2196" title: "Compiler Error C2196" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2196" +ms.date: 11/04/2016 f1_keywords: ["C2196"] helpviewer_keywords: ["C2196"] -ms.assetid: fd2f6a58-48ce-4e58-96f8-e37720feb8e7 --- # Compiler Error C2196 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md index 595214a0fd..ea6795bcdd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2197.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2197.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2197" title: "Compiler Error C2197" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2197" +ms.date: 11/04/2016 f1_keywords: ["C2197"] helpviewer_keywords: ["C2197"] -ms.assetid: 6dd5a6ec-bc80-41b9-a4ac-46f80eaca42d --- # Compiler Error C2197 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md index facb5ccee2..e200cd4428 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2198.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2198.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2198" title: "Compiler Error C2198" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2198" +ms.date: 11/04/2016 f1_keywords: ["C2198"] helpviewer_keywords: ["C2198"] -ms.assetid: 638a845c-9d7f-4115-a9aa-d72455605668 --- # Compiler Error C2198 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md index dd26d25d21..91384b33bd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2199.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2199.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2199" title: "Compiler Error C2199" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2199" +ms.date: 11/04/2016 f1_keywords: ["C2199"] helpviewer_keywords: ["C2199"] -ms.assetid: 6a92a1b7-7906-49e6-a31f-e8bffbc7706a --- # Compiler Error C2199 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md index 0ab3a3dc22..5ef2473a21 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2200.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2200.md @@ -1,7 +1,7 @@ --- title: "Compiler Error C2200" description: "Learn more about: Compiler Error C2200" -ms.date: "02/15/2025" +ms.date: 02/15/2025 f1_keywords: ["C2200"] helpviewer_keywords: ["C2200"] --- From 91e5c224f62274274fcc29cb7a55041e1418d8c5 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 21:59:22 +0800 Subject: [PATCH 886/981] Add backticks in "EVEN and ALIGN Directives" topic --- docs/assembler/inline/even-and-align-directives.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/assembler/inline/even-and-align-directives.md b/docs/assembler/inline/even-and-align-directives.md index 648f536790..b2e9bfd7fb 100644 --- a/docs/assembler/inline/even-and-align-directives.md +++ b/docs/assembler/inline/even-and-align-directives.md @@ -5,14 +5,14 @@ ms.date: "08/30/2018" helpviewer_keywords: ["EVEN directive", "directives, MASM", "MASM (Microsoft Macro Assembler), directives", "NOP (no operation instruction)", "ALIGN directive"] ms.assetid: 7357ab2d-4a5c-43ca-accb-a5f21cdfcde5 --- -# EVEN and ALIGN Directives +# `EVEN` and `ALIGN` Directives **Microsoft Specific** -Although the inline assembler doesn't support most MASM directives, it does support `EVEN` and **ALIGN**. These directives put **NOP** (no operation) instructions in the assembly code as needed to align labels to specific boundaries. This makes instruction-fetch operations more efficient for some processors. +Although the inline assembler doesn't support most MASM directives, it does support `EVEN` and `ALIGN`. These directives put `NOP` (no operation) instructions in the assembly code as needed to align labels to specific boundaries. This makes instruction-fetch operations more efficient for some processors. **END Microsoft Specific** ## See also -[Using Assembly Language in __asm Blocks](../../assembler/inline/using-assembly-language-in-asm-blocks.md)
+[Using Assembly Language in `__asm` Blocks](../../assembler/inline/using-assembly-language-in-asm-blocks.md)
From d15a34b258b8618cb2e3e216d70e0226152b95f1 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:05:20 +0800 Subject: [PATCH 887/981] Simplify and add links in "EVEN and ALIGN Directives" topic --- docs/assembler/inline/even-and-align-directives.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/assembler/inline/even-and-align-directives.md b/docs/assembler/inline/even-and-align-directives.md index b2e9bfd7fb..e68c0ad42a 100644 --- a/docs/assembler/inline/even-and-align-directives.md +++ b/docs/assembler/inline/even-and-align-directives.md @@ -9,10 +9,10 @@ ms.assetid: 7357ab2d-4a5c-43ca-accb-a5f21cdfcde5 **Microsoft Specific** -Although the inline assembler doesn't support most MASM directives, it does support `EVEN` and `ALIGN`. These directives put `NOP` (no operation) instructions in the assembly code as needed to align labels to specific boundaries. This makes instruction-fetch operations more efficient for some processors. +Although the inline assembler doesn't support most MASM directives, it does support [`EVEN`](../masm/even.md) and [`ALIGN`](../masm/align-masm.md). These directives put `NOP` (no operation) instructions in the assembly code as needed to align labels to specific boundaries. This makes instruction-fetch operations more efficient for some processors. **END Microsoft Specific** ## See also -[Using Assembly Language in `__asm` Blocks](../../assembler/inline/using-assembly-language-in-asm-blocks.md)
+[Using Assembly Language in `__asm` Blocks](using-assembly-language-in-asm-blocks.md)
From 8377f62e9ffb22526ae717771689e7fd3e316646 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:08:05 +0800 Subject: [PATCH 888/981] Remove unneeded `br` element in "EVEN and ALIGN Directives" topic --- docs/assembler/inline/even-and-align-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assembler/inline/even-and-align-directives.md b/docs/assembler/inline/even-and-align-directives.md index e68c0ad42a..b5d7172a9d 100644 --- a/docs/assembler/inline/even-and-align-directives.md +++ b/docs/assembler/inline/even-and-align-directives.md @@ -15,4 +15,4 @@ Although the inline assembler doesn't support most MASM directives, it does supp ## See also -[Using Assembly Language in `__asm` Blocks](using-assembly-language-in-asm-blocks.md)
+[Using Assembly Language in `__asm` Blocks](using-assembly-language-in-asm-blocks.md) From 6ac88d6d452c50c7e0133922e5ed702911c9147a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:08:53 +0800 Subject: [PATCH 889/981] Update metadata in "EVEN and ALIGN Directives" topic --- docs/assembler/inline/even-and-align-directives.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/assembler/inline/even-and-align-directives.md b/docs/assembler/inline/even-and-align-directives.md index b5d7172a9d..d98adc4b44 100644 --- a/docs/assembler/inline/even-and-align-directives.md +++ b/docs/assembler/inline/even-and-align-directives.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: EVEN and ALIGN Directives" title: "EVEN and ALIGN Directives" -ms.date: "08/30/2018" +description: "Learn more about: EVEN and ALIGN Directives" +ms.date: 08/30/2018 helpviewer_keywords: ["EVEN directive", "directives, MASM", "MASM (Microsoft Macro Assembler), directives", "NOP (no operation instruction)", "ALIGN directive"] -ms.assetid: 7357ab2d-4a5c-43ca-accb-a5f21cdfcde5 --- # `EVEN` and `ALIGN` Directives From a62287a31ee5bba300566c665c797e5f28da9e00 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:17:39 +0800 Subject: [PATCH 890/981] Add backticks for heading in `EVEN` MASM reference --- docs/assembler/masm/even.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assembler/masm/even.md b/docs/assembler/masm/even.md index a8123b7203..93457f87c5 100644 --- a/docs/assembler/masm/even.md +++ b/docs/assembler/masm/even.md @@ -6,7 +6,7 @@ f1_keywords: ["EVEN"] helpviewer_keywords: ["EVEN directive"] ms.assetid: 68938ba4-8cb9-44d4-914e-9f9fee6bcbf4 --- -# EVEN +# `EVEN` Aligns the next variable or instruction on an even byte. From 14226923196a23e75002240cb1c00c90e1c9dd9f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:19:28 +0800 Subject: [PATCH 891/981] Add `ALIGN` to "See also" in `EVEN` MASM reference --- docs/assembler/masm/even.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/assembler/masm/even.md b/docs/assembler/masm/even.md index 93457f87c5..4b63d74a76 100644 --- a/docs/assembler/masm/even.md +++ b/docs/assembler/masm/even.md @@ -16,5 +16,6 @@ Aligns the next variable or instruction on an even byte. ## See also +[`ALIGN`](align-masm.md)\ [Directives reference](directives-reference.md)\ [MASM BNF Grammar](masm-bnf-grammar.md) From b07d18297744e65c6ac525c386545776f822c217 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:20:23 +0800 Subject: [PATCH 892/981] Update metadata in `EVEN` MASM reference --- docs/assembler/masm/even.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/assembler/masm/even.md b/docs/assembler/masm/even.md index 4b63d74a76..f7b6a209b9 100644 --- a/docs/assembler/masm/even.md +++ b/docs/assembler/masm/even.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: EVEN" title: "EVEN" -ms.date: "12/17/2019" +description: "Learn more about: EVEN" +ms.date: 12/17/2019 f1_keywords: ["EVEN"] helpviewer_keywords: ["EVEN directive"] -ms.assetid: 68938ba4-8cb9-44d4-914e-9f9fee6bcbf4 --- # `EVEN` From bac4ac1f49921c083246dc37d187feed5737a74a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:40:09 +0800 Subject: [PATCH 893/981] Merge duplicate sentences about `_asm` synonym in `__asm` reference --- docs/assembler/inline/asm.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/assembler/inline/asm.md b/docs/assembler/inline/asm.md index 0ad5df365a..e421e86b5b 100644 --- a/docs/assembler/inline/asm.md +++ b/docs/assembler/inline/asm.md @@ -28,7 +28,7 @@ The **`__asm`** keyword invokes the inline assembler and can appear wherever a C ## Remarks -If used without braces, the **`__asm`** keyword means that the rest of the line is an assembly-language statement. If used with braces, it means that each line between the braces is an assembly-language statement. For compatibility with previous versions, **`_asm`** is a synonym for **`__asm`**. +If used without braces, the **`__asm`** keyword means that the rest of the line is an assembly-language statement. If used with braces, it means that each line between the braces is an assembly-language statement. For compatibility with previous versions, **`_asm`** is a synonym for **`__asm`** unless compiler option [`/Za` (Disable language extensions)](../../build/reference/za-ze-disable-language-extensions.md) is specified. Since the **`__asm`** keyword is a statement separator, you can put assembly instructions on the same line. @@ -42,8 +42,6 @@ didn't cause native code to be generated when compiled with **/clr**; the compil `__asm int 3` now results in native code generation for the function. If you want a function to cause a break point in your code and if you want that function compiled to MSIL, use [__debugbreak](../../intrinsics/debugbreak.md). -For compatibility with previous versions, **`_asm`** is a synonym for **`__asm`** unless compiler option [/Za \(Disable language extensions)](../../build/reference/za-ze-disable-language-extensions.md) is specified. - ## Example The following code fragment is a simple **`__asm`** block enclosed in braces: From e661a57ec9626ffb47df49a79168c4c0072d8ba0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 22:41:19 +0800 Subject: [PATCH 894/981] Update metadata in `__asm` reference --- docs/assembler/inline/asm.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/assembler/inline/asm.md b/docs/assembler/inline/asm.md index e421e86b5b..a14c085469 100644 --- a/docs/assembler/inline/asm.md +++ b/docs/assembler/inline/asm.md @@ -1,11 +1,10 @@ --- -description: "Learn more about: `__asm`" title: "__asm" -ms.date: "10/09/2018" +description: "Learn more about: `__asm`" +ms.date: 10/09/2018 +ms.topic: reference f1_keywords: ["__asm", "_asm", "__asm_cpp"] helpviewer_keywords: ["__asm keyword [C++], vs. asm blocks", "__asm keyword [C++]"] -ms.assetid: 77ff3bc9-a492-4b5e-85e1-fa4e414e79cd -ms.topic: reference --- # `__asm` From cbd976c8a737b5900b3696abe315a6df15cc39dc Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:01:48 +0800 Subject: [PATCH 895/981] Add blockquotes for error messages in range [C2201, C2230] --- docs/error-messages/compiler-errors-1/compiler-error-c2203.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2204.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2205.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2206.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2207.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2208.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2212.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2213.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2216.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2217.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2219.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2220.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2222.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2223.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2224.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2226.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2227.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2228.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2229.md | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md index 6171c53c18..e1aa384e76 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md @@ -8,7 +8,7 @@ ms.assetid: 5497df43-86f6-43d5-b6cb-723c4c589b10 --- # Compiler Error C2203 -delete operator cannot specify bounds for an array +> delete operator cannot specify bounds for an array With the **/Za** (ANSI) option, the **`delete`** operator can delete an entire array but not parts or specific members of the array. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md index 001aefd823..742337669f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md @@ -8,6 +8,6 @@ ms.assetid: bbe506d4-7863-44af-8709-161881c4b4ba --- # Compiler Error C2204 -'type' : type definition found within parentheses +> 'type' : type definition found within parentheses The type is defined as an operand or in prototype scope. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md index 933e582806..c1097d75f0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md @@ -8,6 +8,6 @@ ms.assetid: bfc19840-4a48-4da5-8e69-7069989f1d2c --- # Compiler Error C2205 -'identifier' : cannot initialize extern variables with block scope +> 'identifier' : cannot initialize extern variables with block scope An **`extern`** variable cannot be initialized in a function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md index ecc111e042..caffc46873 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md @@ -8,7 +8,7 @@ ms.assetid: d7fba68b-aa28-4885-a9a0-27107358f066 --- # Compiler Error C2206 -'function' : typedef cannot be used for function definition +> 'function' : typedef cannot be used for function definition A **`typedef`** is used to define a function type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md index 1f1fffd0dd..351818ac1a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md @@ -8,6 +8,6 @@ ms.assetid: d7d7b537-68f1-420a-9835-b5b6f2cb5cfd --- # Compiler Error C2207 -'member': a member of a class template cannot acquire a function type +> 'member': a member of a class template cannot acquire a function type The `member` of the class template was previously parsed as a non-static data member. It cannot be redefined as a member function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md index b191a05734..d60434b72d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md @@ -8,7 +8,7 @@ ms.assetid: 9ae704bc-bf70-45f1-8e47-0470f21edd4e --- # Compiler Error C2208 -'type' : no members defined using this type +> 'type' : no members defined using this type An identifier resolving to a type name is in an aggregate declaration, but the compiler cannot declare a member. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md index db3551919f..94d1c9e353 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md @@ -8,6 +8,6 @@ ms.assetid: 3fdab304-272c-4d07-bfd4-fad75170e536 --- # Compiler Error C2212 -'identifier' : __based not available for pointers to functions +> 'identifier' : __based not available for pointers to functions Pointers to functions cannot be declared **`__based`**. If you need code-based data, use the **`__declspec`** keyword or the `data_seg` pragma. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md index ef1d970869..f14100ffb1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md @@ -8,7 +8,7 @@ ms.assetid: ff012278-7f3b-4d49-aaed-2349756f6225 --- # Compiler Error C2213 -'modifier' : illegal argument to __based +> 'modifier' : illegal argument to __based The argument modifying **`__based`** is invalid. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md index 51d2a53818..e9f1f1a5e2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md @@ -8,7 +8,7 @@ ms.assetid: 250f6bdc-a5e1-495f-a1e8-6e8e7021ad9d --- # Compiler Error C2216 -'keyword1' cannot be used with ' keyword2' +> 'keyword1' cannot be used with ' keyword2' Two keywords that are mutually exclusive were used together. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md index 009e512bf1..ff2a44a80a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md @@ -8,7 +8,7 @@ ms.assetid: 1ce1e3f5-4171-4376-804d-967f7e612935 --- # Compiler Error C2217 -'attribute1' requires 'attribute2' +> 'attribute1' requires 'attribute2' The first function attribute requires the second attribute. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md index eb2fc27f7d..e6ab2c5f05 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md @@ -8,6 +8,6 @@ ms.assetid: 2cfe9a75-6890-46a1-a127-79a7def78e94 --- # Compiler Error C2219 -syntax error : type qualifier must be after '*' +> syntax error : type qualifier must be after '*' Type qualifier (**`const`** or **`volatile`**) appears where it is not permitted. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md index edfa71f27b..d5713a4bb6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md @@ -8,7 +8,7 @@ ms.assetid: d610802c-64d7-40ad-a2a6-0ed0b6815a6c --- # Compiler Error C2220 -warning treated as error - no object file generated +> warning treated as error - no object file generated [/WX](../../build/reference/compiler-option-warning-level.md) tells the compiler to treat all warnings as errors. Because an error occurred, no object or executable file was generated. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md index 7d2bc23ae5..2acc13ec3b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md @@ -8,6 +8,6 @@ ms.assetid: 1c902054-5c77-41e6-a1cc-018f802460cd --- # Compiler Error C2222 -unexpected type 'type': a base-class or member was expected +> unexpected type 'type': a base-class or member was expected The initializer list can only initialize base classes or members of a type. To fix this error, verify that only base classes or members of the type are initialized in the initializer list. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md index cc9b730639..ddb5254733 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md @@ -8,7 +8,7 @@ ms.assetid: e4506f0f-0317-4a96-8a90-877a156d7939 --- # Compiler Error C2223 -left of '->identifier' must point to struct/union +> left of '->identifier' must point to struct/union The operand to the left of `->` is not a pointer to a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md index 7bd87633ef..973fa6b17e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md @@ -8,7 +8,7 @@ ms.assetid: 27b93bbf-4ce7-47a3-a9c4-f4fbed689bdf --- # Compiler Error C2224 -left of '.identifier' must have struct/union type +> left of '.identifier' must have struct/union type The operand to the left of the period (.) is not a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md index 5ad3e47775..cb39ac2a2d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md @@ -8,6 +8,6 @@ ms.assetid: b3aaa2a5-254a-46a9-a508-de2371ecffeb --- # Compiler Error C2226 -syntax error : unexpected type 'type' +> syntax error : unexpected type 'type' A syntax error occurs before or in the type specifier. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md index 15613f96e1..770661a8a8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md @@ -8,7 +8,7 @@ ms.assetid: d470e8b8-7e15-468b-84fa-37d1a0132271 --- # Compiler Error C2227 -left of '->member' must point to class/struct/union/generic type +> left of '->member' must point to class/struct/union/generic type The operand to the left of `->` is not a pointer to a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md index d8cc1b4db9..27e80984ce 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md @@ -8,7 +8,7 @@ ms.assetid: 901cadb1-ce90-4ae0-a360-547a9ba2ca18 --- # Compiler Error C2228 -left of '.identifier' must have class/struct/union +> left of '.identifier' must have class/struct/union The operand to the left of the period (.) is not a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md index 24ce025b2c..fec73b43b7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md @@ -8,7 +8,7 @@ ms.assetid: 933c7cf2-a463-4e74-b0b4-59dedad987fb --- # Compiler Error C2229 -type 'identifier' has an illegal zero-sized array +> type 'identifier' has an illegal zero-sized array A member of a structure or bit field contains a zero-sized array that is not the last member. From 55145200f705ab156f7a4911139aeabbe1304f54 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:05:36 +0800 Subject: [PATCH 896/981] Add "Remarks" and "Example" headings for error references in range [C2201, C2230] --- docs/error-messages/compiler-errors-1/compiler-error-c2201.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2203.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2204.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2205.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2206.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2207.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2208.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2212.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2213.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2216.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2217.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2218.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2219.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2220.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2222.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2223.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2224.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2226.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2227.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2228.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2229.md | 4 ++++ 21 files changed, 56 insertions(+) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md index aa9d535631..fa16e96cf0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C2201"] > '*identifier*' : must have external linkage in order to be exported/imported +## Remarks + The exported identifier is **`static`**. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md index e1aa384e76..074ece82aa 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md @@ -10,8 +10,12 @@ ms.assetid: 5497df43-86f6-43d5-b6cb-723c4c589b10 > delete operator cannot specify bounds for an array +## Remarks + With the **/Za** (ANSI) option, the **`delete`** operator can delete an entire array but not parts or specific members of the array. +## Example + The following sample generates C2203: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md index 742337669f..ae3a56a690 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md @@ -10,4 +10,6 @@ ms.assetid: bbe506d4-7863-44af-8709-161881c4b4ba > 'type' : type definition found within parentheses +## Remarks + The type is defined as an operand or in prototype scope. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md index c1097d75f0..e1d21362a4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md @@ -10,4 +10,6 @@ ms.assetid: bfc19840-4a48-4da5-8e69-7069989f1d2c > 'identifier' : cannot initialize extern variables with block scope +## Remarks + An **`extern`** variable cannot be initialized in a function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md index caffc46873..657f17fd7a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md @@ -10,8 +10,12 @@ ms.assetid: d7fba68b-aa28-4885-a9a0-27107358f066 > 'function' : typedef cannot be used for function definition +## Remarks + A **`typedef`** is used to define a function type. +## Example + The following sample generates C2206: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md index 351818ac1a..2f3797ebbd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md @@ -10,4 +10,6 @@ ms.assetid: d7d7b537-68f1-420a-9835-b5b6f2cb5cfd > 'member': a member of a class template cannot acquire a function type +## Remarks + The `member` of the class template was previously parsed as a non-static data member. It cannot be redefined as a member function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md index d60434b72d..3298a08661 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md @@ -10,8 +10,12 @@ ms.assetid: 9ae704bc-bf70-45f1-8e47-0470f21edd4e > 'type' : no members defined using this type +## Remarks + An identifier resolving to a type name is in an aggregate declaration, but the compiler cannot declare a member. +## Example + The following sample generates C2208: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md index 94d1c9e353..81cb9a15b5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md @@ -10,4 +10,6 @@ ms.assetid: 3fdab304-272c-4d07-bfd4-fad75170e536 > 'identifier' : __based not available for pointers to functions +## Remarks + Pointers to functions cannot be declared **`__based`**. If you need code-based data, use the **`__declspec`** keyword or the `data_seg` pragma. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md index f14100ffb1..3b81efc8df 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md @@ -10,8 +10,12 @@ ms.assetid: ff012278-7f3b-4d49-aaed-2349756f6225 > 'modifier' : illegal argument to __based +## Remarks + The argument modifying **`__based`** is invalid. +## Example + The following sample generates C2213: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md index e9f1f1a5e2..de2d71f978 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md @@ -10,6 +10,8 @@ ms.assetid: 250f6bdc-a5e1-495f-a1e8-6e8e7021ad9d > 'keyword1' cannot be used with ' keyword2' +## Remarks + Two keywords that are mutually exclusive were used together. ## Examples diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md index ff2a44a80a..3c77379f25 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md @@ -10,6 +10,8 @@ ms.assetid: 1ce1e3f5-4171-4376-804d-967f7e612935 > 'attribute1' requires 'attribute2' +## Remarks + The first function attribute requires the second attribute. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2218.md b/docs/error-messages/compiler-errors-1/compiler-error-c2218.md index a5f9621240..2015d2bb81 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2218.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2218.md @@ -10,6 +10,8 @@ ms.assetid: b0f55da4-8edb-4b45-b298-1a091981bd7b > '__vectorcall' cannot be used with '/arch:IA32' +## Remarks + The **`__vectorcall`** calling convention is only supported in native code on x86 and x64 processors that include Streaming SIMD Extensions 2 (SSE2) and above. For more information, see [`__vectorcall`](../../cpp/vectorcall.md). To fix this error, change the compiler options to target SSE2, AVX or AVX2 instruction sets. For more information, see [`/arch` (x86)](../../build/reference/arch-x86.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md index e6ab2c5f05..5a12002bc6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md @@ -10,4 +10,6 @@ ms.assetid: 2cfe9a75-6890-46a1-a127-79a7def78e94 > syntax error : type qualifier must be after '*' +## Remarks + Type qualifier (**`const`** or **`volatile`**) appears where it is not permitted. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md index d5713a4bb6..0b5c251ab2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md @@ -10,6 +10,8 @@ ms.assetid: d610802c-64d7-40ad-a2a6-0ed0b6815a6c > warning treated as error - no object file generated +## Remarks + [/WX](../../build/reference/compiler-option-warning-level.md) tells the compiler to treat all warnings as errors. Because an error occurred, no object or executable file was generated. This error only appears when the **/WX** flag is set and a warning occurs during compilation. To fix this error, you must eliminate every warning in your project. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md index 2acc13ec3b..aa3d1675bc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md @@ -10,4 +10,6 @@ ms.assetid: 1c902054-5c77-41e6-a1cc-018f802460cd > unexpected type 'type': a base-class or member was expected +## Remarks + The initializer list can only initialize base classes or members of a type. To fix this error, verify that only base classes or members of the type are initialized in the initializer list. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md index ddb5254733..fba2999c33 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md @@ -10,6 +10,8 @@ ms.assetid: e4506f0f-0317-4a96-8a90-877a156d7939 > left of '->identifier' must point to struct/union +## Remarks + The operand to the left of `->` is not a pointer to a class, structure, or union. This error can be caused by a left operand that is an undefined variable (therefore type **`int`**). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md index 973fa6b17e..e1f675d36f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md @@ -10,6 +10,8 @@ ms.assetid: 27b93bbf-4ce7-47a3-a9c4-f4fbed689bdf > left of '.identifier' must have struct/union type +## Remarks + The operand to the left of the period (.) is not a class, structure, or union. This error can be caused by a left operand that is an undefined variable (therefore type **`int`**). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md index cb39ac2a2d..06e332ed40 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md @@ -10,4 +10,6 @@ ms.assetid: b3aaa2a5-254a-46a9-a508-de2371ecffeb > syntax error : unexpected type 'type' +## Remarks + A syntax error occurs before or in the type specifier. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md index 770661a8a8..39545305f5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md @@ -10,8 +10,12 @@ ms.assetid: d470e8b8-7e15-468b-84fa-37d1a0132271 > left of '->member' must point to class/struct/union/generic type +## Remarks + The operand to the left of `->` is not a pointer to a class, structure, or union. +## Example + The following sample generates C2227: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md index 27e80984ce..11a8a0cdab 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md @@ -10,8 +10,12 @@ ms.assetid: 901cadb1-ce90-4ae0-a360-547a9ba2ca18 > left of '.identifier' must have class/struct/union +## Remarks + The operand to the left of the period (.) is not a class, structure, or union. +## Example + The following sample generates C2228: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md index fec73b43b7..42073aac2b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md @@ -10,12 +10,16 @@ ms.assetid: 933c7cf2-a463-4e74-b0b4-59dedad987fb > type 'identifier' has an illegal zero-sized array +## Remarks + A member of a structure or bit field contains a zero-sized array that is not the last member. Because you can have a zero sized array as the last member of the struct, you must specify its size when you allocate the struct. If the zero sized array is not the last member of the struct, the compiler can't calculate the offset for the remaining fields. +## Example + The following sample generates C2229: ```cpp From f1c6d3d73e755cebceb6c48555624a136b0c23ca Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:06:41 +0800 Subject: [PATCH 897/981] Replace term "sample" with "example" for error references in range [C2201, C2230] --- .../compiler-errors-1/compiler-error-c2201.md | 2 +- .../compiler-errors-1/compiler-error-c2203.md | 2 +- .../compiler-errors-1/compiler-error-c2206.md | 2 +- .../compiler-errors-1/compiler-error-c2208.md | 2 +- .../compiler-errors-1/compiler-error-c2213.md | 2 +- .../compiler-errors-1/compiler-error-c2216.md | 6 +++--- .../compiler-errors-1/compiler-error-c2217.md | 2 +- .../compiler-errors-1/compiler-error-c2227.md | 2 +- .../compiler-errors-1/compiler-error-c2228.md | 2 +- .../compiler-errors-1/compiler-error-c2229.md | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md index fa16e96cf0..13e76c2b4c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md @@ -15,7 +15,7 @@ The exported identifier is **`static`**. ## Example -The following sample generates C2286, and shows how to fix it: +The following example generates C2286, and shows how to fix it: ```cpp // C2201.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md index 074ece82aa..ac7914b2af 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md @@ -16,7 +16,7 @@ With the **/Za** (ANSI) option, the **`delete`** operator can delete an entire a ## Example -The following sample generates C2203: +The following example generates C2203: ```cpp // C2203.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md index 657f17fd7a..bbfae4ddc0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md @@ -16,7 +16,7 @@ A **`typedef`** is used to define a function type. ## Example -The following sample generates C2206: +The following example generates C2206: ```cpp // C2206.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md index 3298a08661..d77aaa48c8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md @@ -16,7 +16,7 @@ An identifier resolving to a type name is in an aggregate declaration, but the c ## Example -The following sample generates C2208: +The following example generates C2208: ```cpp // C2208.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md index 3b81efc8df..054648b694 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md @@ -16,7 +16,7 @@ The argument modifying **`__based`** is invalid. ## Example -The following sample generates C2213: +The following example generates C2213: ```cpp // C2213.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md index de2d71f978..762d80dc56 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md @@ -16,7 +16,7 @@ Two keywords that are mutually exclusive were used together. ## Examples -The following sample generates C2216. +The following example generates C2216. ```cpp // C2216.cpp @@ -27,7 +27,7 @@ ref struct Y1 { }; ``` -The following sample generates C2216. +The following example generates C2216. ```cpp // C2216b.cpp @@ -38,7 +38,7 @@ public ref class X { }; ``` -The following sample generates C2216. +The following example generates C2216. ```cpp // C2216c.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md index 3c77379f25..109b769ac3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md @@ -16,7 +16,7 @@ The first function attribute requires the second attribute. ## Example -C2217 can occur if you attempt to bind a delegate to a CLR function that takes a variable number of arguments. If the function also has a param array overload, use that instead. The following sample generates C2217. +C2217 can occur if you attempt to bind a delegate to a CLR function that takes a variable number of arguments. If the function also has a param array overload, use that instead. The following example generates C2217. ```cpp // C2217.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md index 39545305f5..8a72d93704 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md @@ -16,7 +16,7 @@ The operand to the left of `->` is not a pointer to a class, structure, or union ## Example -The following sample generates C2227: +The following example generates C2227: ```cpp // C2227.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md index 11a8a0cdab..653d4a5b00 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md @@ -16,7 +16,7 @@ The operand to the left of the period (.) is not a class, structure, or union. ## Example -The following sample generates C2228: +The following example generates C2228: ```cpp // C2228.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md index 42073aac2b..899f5f6d09 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md @@ -20,7 +20,7 @@ If the zero sized array is not the last member of the struct, the compiler can't ## Example -The following sample generates C2229: +The following example generates C2229: ```cpp // C2229.cpp From d8b767255e56f9182283b44257ca5a1db03f0b3d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:10:11 +0800 Subject: [PATCH 898/981] Update metadata for error references in range [C2201, C2230] --- .../error-messages/compiler-errors-1/compiler-error-c2201.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2203.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2204.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2205.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2206.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2207.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2208.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2212.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2213.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2216.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2217.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2218.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2219.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2220.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2222.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2223.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2224.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2226.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2227.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2228.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2229.md | 5 ++--- 21 files changed, 41 insertions(+), 61 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md index 13e76c2b4c..01983a4cf4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2201.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2201.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2201" title: "Compiler Error C2201" +description: "Learn more about: Compiler Error C2201" ms.date: 05/03/2021 f1_keywords: ["C2201"] helpviewer_keywords: ["C2201"] diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md index ac7914b2af..1850f52d27 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2203.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2203.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2203" title: "Compiler Error C2203" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2203" +ms.date: 11/04/2016 f1_keywords: ["C2203"] helpviewer_keywords: ["C2203"] -ms.assetid: 5497df43-86f6-43d5-b6cb-723c4c589b10 --- # Compiler Error C2203 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md index ae3a56a690..b09f6a116a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2204.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2204.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2204" title: "Compiler Error C2204" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2204" +ms.date: 11/04/2016 f1_keywords: ["C2204"] helpviewer_keywords: ["C2204"] -ms.assetid: bbe506d4-7863-44af-8709-161881c4b4ba --- # Compiler Error C2204 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md index e1d21362a4..6b073e8cc7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2205.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2205.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2205" title: "Compiler Error C2205" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2205" +ms.date: 11/04/2016 f1_keywords: ["C2205"] helpviewer_keywords: ["C2205"] -ms.assetid: bfc19840-4a48-4da5-8e69-7069989f1d2c --- # Compiler Error C2205 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md index bbfae4ddc0..611865407d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2206.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2206.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2206" title: "Compiler Error C2206" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2206" +ms.date: 11/04/2016 f1_keywords: ["C2206"] helpviewer_keywords: ["C2206"] -ms.assetid: d7fba68b-aa28-4885-a9a0-27107358f066 --- # Compiler Error C2206 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md index 2f3797ebbd..fab75ec1e1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2207.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2207.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2207" title: "Compiler Error C2207" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2207" +ms.date: 11/04/2016 f1_keywords: ["C2207"] helpviewer_keywords: ["C2207"] -ms.assetid: d7d7b537-68f1-420a-9835-b5b6f2cb5cfd --- # Compiler Error C2207 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md index d77aaa48c8..6c3ca30878 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2208.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2208.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2208" title: "Compiler Error C2208" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2208" +ms.date: 11/04/2016 f1_keywords: ["C2208"] helpviewer_keywords: ["C2208"] -ms.assetid: 9ae704bc-bf70-45f1-8e47-0470f21edd4e --- # Compiler Error C2208 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md index 81cb9a15b5..16a9f9f198 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2212.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2212.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2212" title: "Compiler Error C2212" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2212" +ms.date: 11/04/2016 f1_keywords: ["C2212"] helpviewer_keywords: ["C2212"] -ms.assetid: 3fdab304-272c-4d07-bfd4-fad75170e536 --- # Compiler Error C2212 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md index 054648b694..667f53b64d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2213.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2213.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2213" title: "Compiler Error C2213" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2213" +ms.date: 11/04/2016 f1_keywords: ["C2213"] helpviewer_keywords: ["C2213"] -ms.assetid: ff012278-7f3b-4d49-aaed-2349756f6225 --- # Compiler Error C2213 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md index 762d80dc56..5d0d49c0e9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2216.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2216.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2216" title: "Compiler Error C2216" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2216" +ms.date: 11/04/2016 f1_keywords: ["C2216"] helpviewer_keywords: ["C2216"] -ms.assetid: 250f6bdc-a5e1-495f-a1e8-6e8e7021ad9d --- # Compiler Error C2216 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md index 109b769ac3..b13e45b5ee 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2217.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2217.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2217" title: "Compiler Error C2217" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2217" +ms.date: 11/04/2016 f1_keywords: ["C2217"] helpviewer_keywords: ["C2217"] -ms.assetid: 1ce1e3f5-4171-4376-804d-967f7e612935 --- # Compiler Error C2217 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2218.md b/docs/error-messages/compiler-errors-1/compiler-error-c2218.md index 2015d2bb81..07e17522d3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2218.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2218.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2218" title: "Compiler Error C2218" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2218" +ms.date: 11/04/2016 f1_keywords: ["C2218"] helpviewer_keywords: ["C2218"] -ms.assetid: b0f55da4-8edb-4b45-b298-1a091981bd7b --- # Compiler Error C2218 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md index 5a12002bc6..499519f546 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2219.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2219.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2219" title: "Compiler Error C2219" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2219" +ms.date: 11/04/2016 f1_keywords: ["C2219"] helpviewer_keywords: ["C2219"] -ms.assetid: 2cfe9a75-6890-46a1-a127-79a7def78e94 --- # Compiler Error C2219 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md index 0b5c251ab2..0660cff0df 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2220.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2220.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2220" title: "Compiler Error C2220" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2220" +ms.date: 11/04/2016 f1_keywords: ["C2220"] helpviewer_keywords: ["C2220"] -ms.assetid: d610802c-64d7-40ad-a2a6-0ed0b6815a6c --- # Compiler Error C2220 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md index aa3d1675bc..894171131f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2222.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2222.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2222" title: "Compiler Error C2222" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2222" +ms.date: 11/04/2016 f1_keywords: ["C2222"] helpviewer_keywords: ["C2222"] -ms.assetid: 1c902054-5c77-41e6-a1cc-018f802460cd --- # Compiler Error C2222 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md index fba2999c33..4607f1838a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2223.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2223.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2223" title: "Compiler Error C2223" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2223" +ms.date: 11/04/2016 f1_keywords: ["C2223"] helpviewer_keywords: ["C2223"] -ms.assetid: e4506f0f-0317-4a96-8a90-877a156d7939 --- # Compiler Error C2223 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md index e1f675d36f..7d13d46a0e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2224.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2224.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2224" title: "Compiler Error C2224" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2224" +ms.date: 11/04/2016 f1_keywords: ["C2224"] helpviewer_keywords: ["C2224"] -ms.assetid: 27b93bbf-4ce7-47a3-a9c4-f4fbed689bdf --- # Compiler Error C2224 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md index 06e332ed40..7576eab5fe 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2226.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2226.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2226" title: "Compiler Error C2226" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2226" +ms.date: 11/04/2016 f1_keywords: ["C2226"] helpviewer_keywords: ["C2226"] -ms.assetid: b3aaa2a5-254a-46a9-a508-de2371ecffeb --- # Compiler Error C2226 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md index 8a72d93704..4c84efc13a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2227.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2227.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2227" title: "Compiler Error C2227" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2227" +ms.date: 11/04/2016 f1_keywords: ["C2227"] helpviewer_keywords: ["C2227"] -ms.assetid: d470e8b8-7e15-468b-84fa-37d1a0132271 --- # Compiler Error C2227 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md index 653d4a5b00..f0605e69fc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2228.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2228.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2228" title: "Compiler Error C2228" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2228" +ms.date: 11/04/2016 f1_keywords: ["C2228"] helpviewer_keywords: ["C2228"] -ms.assetid: 901cadb1-ce90-4ae0-a360-547a9ba2ca18 --- # Compiler Error C2228 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md index 899f5f6d09..a77432e3f1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2229.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2229.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2229" title: "Compiler Error C2229" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2229" +ms.date: 11/04/2016 f1_keywords: ["C2229"] helpviewer_keywords: ["C2229"] -ms.assetid: 933c7cf2-a463-4e74-b0b4-59dedad987fb --- # Compiler Error C2229 From 6d2ec4ed7685e83b085b7ddda7f6996371a13b5d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 17:55:57 +0800 Subject: [PATCH 899/981] Fix title in C4335 warning reference --- docs/error-messages/compiler-warnings/compiler-warning-c4335.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md index e57e115b0b..cfb45113dd 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md @@ -1,6 +1,6 @@ --- description: "Learn more about: Compiler Warning (level 1) C4335" -title: "Compiler Warning(level 1) C4335" +title: "Compiler Warning (level 1) C4335" ms.date: "11/04/2016" f1_keywords: ["C4335"] helpviewer_keywords: ["C4335"] From 1244cc2c4945a13114301becc2d7ad9754d8e573 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 17:57:05 +0800 Subject: [PATCH 900/981] Add "Remarks" heading in C4335 warning reference --- docs/error-messages/compiler-warnings/compiler-warning-c4335.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md index cfb45113dd..ba12a44d06 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C4335"] > Mac file format detected: please convert the source file to either DOS or UNIX format +## Remarks + The line termination character of the first line of a source file is the old Macintosh style ('\r') as opposed to UNIX ('\n') or DOS ('\r\n'). This warning is only issued once per translation unit. Therefore, if there are multiple `#include` directives that specify files in Macintosh format, C4335 is emitted once. From 9b70f50193c8691fbd8f57f1c3bcd1f89c31e62e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 17:57:30 +0800 Subject: [PATCH 901/981] Tweak "Example" text in C4335 warning reference --- docs/error-messages/compiler-warnings/compiler-warning-c4335.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md index ba12a44d06..eee802a7b5 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md @@ -19,7 +19,7 @@ One way to generate files in Macintosh format is by using the **Advanced Save Op ## Example -The following sample generates C4335. +The following example generates C4335: ```cpp // C4335 expected From 31cd15c287fcc13bbf91cb8d98047d0097ff84b7 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 17:58:07 +0800 Subject: [PATCH 902/981] Update metadata in C4335 warning reference --- .../compiler-warnings/compiler-warning-c4335.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md index eee802a7b5..2f17fe0d62 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-c4335.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-c4335.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Warning (level 1) C4335" title: "Compiler Warning (level 1) C4335" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Warning (level 1) C4335" +ms.date: 11/04/2016 f1_keywords: ["C4335"] helpviewer_keywords: ["C4335"] --- From ed7f32ddb701af4b62ed70a2834b68fd6f5ffdf4 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 18:12:56 +0800 Subject: [PATCH 903/981] Update warning level flag for example in C4373 warning reference --- .../compiler-warnings/compiler-warning-level-3-c4373.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md b/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md index 4bcae67303..07495b2ee5 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md @@ -21,7 +21,7 @@ The following code example generates warning C4373. To resolve this issue, make ```cpp // c4373.cpp -// compile with: /c /W3 +// compile with: /c /W4 #include struct Base { From 4815abc9048f4cc8e660e21376dcd59b8b691b7d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 18:14:03 +0800 Subject: [PATCH 904/981] Update metadata in C4373 warning reference --- .../compiler-warnings/compiler-warning-level-3-c4373.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md b/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md index 07495b2ee5..1394a4e481 100644 --- a/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md +++ b/docs/error-messages/compiler-warnings/compiler-warning-level-3-c4373.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Warning (level 4) C4373" title: "Compiler Warning (level 4) C4373" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Warning (level 4) C4373" +ms.date: 11/04/2016 f1_keywords: ["C4373"] helpviewer_keywords: ["C4373"] --- From ffe23f283bce68d0b82cf4901951750fa20365d3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 18:33:26 +0800 Subject: [PATCH 905/981] Add missing commas after "For more information" --- docs/build/reference/files-created-for-clr-projects.md | 2 +- docs/build/reference/return-value-of-cl-exe.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2349.md | 2 +- docs/extensions/string-cpp-component-extensions.md | 2 +- docs/mfc/mfc-com.md | 2 +- docs/mfc/reference/ctabview-class.md | 2 +- docs/parallel/amp/graphics-cpp-amp.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/build/reference/files-created-for-clr-projects.md b/docs/build/reference/files-created-for-clr-projects.md index 8864195572..2e3638129f 100644 --- a/docs/build/reference/files-created-for-clr-projects.md +++ b/docs/build/reference/files-created-for-clr-projects.md @@ -11,7 +11,7 @@ When you use Visual C++ templates to create your projects, several files are cre |File name|File description| |---------------|----------------------| -|AssemblyInfo.cpp|The file that contains information (that is, attributes, files, resources, types, versioning information, signing information, and so on) for modifying the project's assembly metadata. For more information see [Assembly Concepts](/dotnet/framework/app-domains/assembly-contents).| +|AssemblyInfo.cpp|The file that contains information (that is, attributes, files, resources, types, versioning information, signing information, and so on) for modifying the project's assembly metadata. For more information, see [Assembly Concepts](/dotnet/framework/app-domains/assembly-contents).| |*projname*.asmx|A text file that references managed classes that encapsulate the functionality of the XML Web service.| |*projname*.cpp|The main source file and entry point into the application that Visual Studio created for you. Identifies the project .dll file and the project namespace. Provide your own code in this file.| |*projname*.vsdisco|An XML deployment file containing links to other resources that describe the XML Web service.| diff --git a/docs/build/reference/return-value-of-cl-exe.md b/docs/build/reference/return-value-of-cl-exe.md index ceb9ff7972..2f11840024 100644 --- a/docs/build/reference/return-value-of-cl-exe.md +++ b/docs/build/reference/return-value-of-cl-exe.md @@ -13,7 +13,7 @@ The return value of cl.exe can be useful if you are compiling from a script, pow There are too many possible error exit codes for cl.exe to list them all. You can look up an error code in the winerror.h or ntstatus.h files included in the Windows Software Development Kit in the %ProgramFiles(x86)%\Windows Kits\\version\Include\shared\ directory. Error codes returned in decimal must be converted to hexadecimal for search. For example, an error code of -1073741620 converted to hexadecimal is 0xC00000CC. This error is found in ntstatus.h, where the corresponding message is "The specified share name cannot be found on the remote server." For a downloadable list of Windows error codes, see [`[MS-ERREF]` Windows Error Codes](/openspecs/windows_protocols/MS-ERREF). -You can also use the error lookup utility in Visual Studio to find out what a compiler error message means. In a Visual Studio command shell, enter **errlook.exe** to start the utility; or in the Visual Studio IDE, on the menu bar, choose **Tools**, **Error Lookup**. Enter the error value to find the descriptive text associated with the error. For more information see [ERRLOOK Reference](errlook-reference.md). +You can also use the error lookup utility in Visual Studio to find out what a compiler error message means. In a Visual Studio command shell, enter **errlook.exe** to start the utility; or in the Visual Studio IDE, on the menu bar, choose **Tools**, **Error Lookup**. Enter the error value to find the descriptive text associated with the error. For more information, see [ERRLOOK Reference](errlook-reference.md). ## Remarks diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2349.md b/docs/error-messages/compiler-errors-1/compiler-error-c2349.md index 4b596fc273..6190f18c57 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2349.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2349.md @@ -10,4 +10,4 @@ ms.assetid: ce9f2e65-fda0-41b6-9c4a-538607136396 'function' cannot be compiled as managed: 'reason'; use #pragma unmanaged -For more information see [Compiler Warning (level 1 and 3) C4793](../../error-messages/compiler-warnings/compiler-warning-level-1-and-3-c4793.md). +For more information, see [Compiler Warning (level 1 and 3) C4793](../../error-messages/compiler-warnings/compiler-warning-level-1-and-3-c4793.md). diff --git a/docs/extensions/string-cpp-component-extensions.md b/docs/extensions/string-cpp-component-extensions.md index de9ff62f36..972ab5c232 100644 --- a/docs/extensions/string-cpp-component-extensions.md +++ b/docs/extensions/string-cpp-component-extensions.md @@ -49,7 +49,7 @@ When passed a , the compiler will box, if necessary, and the > [!NOTE] > The caret ("^") indicates that the declared variable is a handle to a C++/CLI managed object. -For more information see [String and Character Literals](../cpp/string-and-character-literals-cpp.md). +For more information, see [String and Character Literals](../cpp/string-and-character-literals-cpp.md). ### Requirements diff --git a/docs/mfc/mfc-com.md b/docs/mfc/mfc-com.md index eb5282b585..0a46f3cb00 100644 --- a/docs/mfc/mfc-com.md +++ b/docs/mfc/mfc-com.md @@ -10,7 +10,7 @@ ms.assetid: 7646bdcb-3a06-4ed5-9386-9b00f3979dcb A subset of MFC is designed to support COM, while most of the Active Template Library (ATL) is designed for COM programming. This section of topics describes MFC's support for COM. -Active technologies (such as ActiveX controls, Active document containment, OLE, and so on) use the Component Object Model (COM) to enable software components to interact with one another in a networked environment, regardless of the language with which they were created. Active technologies can be used to create applications that run on the desktop or the Internet. For more information see [Introduction to COM](../atl/introduction-to-com.md) or [The Component Object Model](/windows/win32/com/the-component-object-model). +Active technologies (such as ActiveX controls, Active document containment, OLE, and so on) use the Component Object Model (COM) to enable software components to interact with one another in a networked environment, regardless of the language with which they were created. Active technologies can be used to create applications that run on the desktop or the Internet. For more information, see [Introduction to COM](../atl/introduction-to-com.md) or [The Component Object Model](/windows/win32/com/the-component-object-model). Active technologies include both client and server technologies, including the following: diff --git a/docs/mfc/reference/ctabview-class.md b/docs/mfc/reference/ctabview-class.md index b084e0afbd..9ab3109c80 100644 --- a/docs/mfc/reference/ctabview-class.md +++ b/docs/mfc/reference/ctabview-class.md @@ -208,7 +208,7 @@ TRUE if the specified view was made active, FALSE if the view's index is invalid ### Remarks -For more information see [CMFCTabCtrl::SetActiveTab](../../mfc/reference/cmfctabctrl-class.md#setactivetab). +For more information, see [CMFCTabCtrl::SetActiveTab](../../mfc/reference/cmfctabctrl-class.md#setactivetab). ## See also diff --git a/docs/parallel/amp/graphics-cpp-amp.md b/docs/parallel/amp/graphics-cpp-amp.md index 2de8ab623c..5368ba8b88 100644 --- a/docs/parallel/amp/graphics-cpp-amp.md +++ b/docs/parallel/amp/graphics-cpp-amp.md @@ -377,7 +377,7 @@ void write2ComponentTexture() { Texture views whose elements are based on floating-point types—for example, float, float_2, or float_4—can also be read by using texture sampling to take advantage of hardware support for various filtering modes and addressing modes. C++ AMP supports the two filtering modes that are most common in compute scenarios—point-filtering (nearest-neighbor) and linear-filtering (weighted average)—and four addressing modes—wrapped, mirrored, clamped, and border. For more information about addressing modes, see [address_mode Enumeration](reference/concurrency-graphics-namespace-enums.md#address_mode). -In addition to modes that C++ AMP supports directly, you can access other filtering modes and addressing modes of the underlying platform by using the interop APIs to adopt a texture sampler that was created by using the platform APIs directly. For example, Direct3D supports other filtering modes such as anisotropic filtering, and can apply a different addressing mode to each dimension of a texture. You could create a texture sampler whose coordinates are wrapped vertically, mirrored horizontally, and sampled with anisotropic filtering by using the Direct3D APIs, and then leverage the sampler in your C++ AMP code by using the `make_sampler` interop API. For more information see [Texture Sampling in C++ AMP](/archive/blogs/nativeconcurrency/texture-sampling-in-c-amp) on the Parallel Programming in Native Code blog. +In addition to modes that C++ AMP supports directly, you can access other filtering modes and addressing modes of the underlying platform by using the interop APIs to adopt a texture sampler that was created by using the platform APIs directly. For example, Direct3D supports other filtering modes such as anisotropic filtering, and can apply a different addressing mode to each dimension of a texture. You could create a texture sampler whose coordinates are wrapped vertically, mirrored horizontally, and sampled with anisotropic filtering by using the Direct3D APIs, and then leverage the sampler in your C++ AMP code by using the `make_sampler` interop API. For more information, see [Texture Sampling in C++ AMP](/archive/blogs/nativeconcurrency/texture-sampling-in-c-amp) on the Parallel Programming in Native Code blog. Texture views also support the reading of mipmaps. Read-only texture views (those that have a const element type) offer the most flexibility because a range of mip-levels that is determined at instantiation can be dynamically sampled, and because elements that have 1, 2, or 4 components are supported. Read-write texture views that have elements that have one component also support mipmaps, but only of a level that's determined at instantiation. For more information, see [Texture with Mipmaps](/archive/blogs/nativeconcurrency/texture-with-mipmaps) on the Parallel Programming in Native Code blog. From a41a42b152e219eb56adf6e9be927d017ad2242d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 18:37:06 +0800 Subject: [PATCH 906/981] Update metadata in a couple of topics --- docs/build/reference/files-created-for-clr-projects.md | 5 ++--- docs/build/reference/return-value-of-cl-exe.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2349.md | 5 ++--- docs/mfc/mfc-com.md | 5 ++--- docs/mfc/reference/ctabview-class.md | 5 ++--- 5 files changed, 10 insertions(+), 15 deletions(-) diff --git a/docs/build/reference/files-created-for-clr-projects.md b/docs/build/reference/files-created-for-clr-projects.md index 2e3638129f..1aa648278b 100644 --- a/docs/build/reference/files-created-for-clr-projects.md +++ b/docs/build/reference/files-created-for-clr-projects.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Files Created for CLR Projects" title: "Files Created for CLR Projects" -ms.date: "11/04/2016" +description: "Learn more about: Files Created for CLR Projects" +ms.date: 11/04/2016 helpviewer_keywords: ["Visual Studio C++ projects, CLR programming", ".NET applications, C++"] -ms.assetid: 59ae9020-5f26-4ad0-bbdd-97c2e2023a20 --- # Files Created for CLR Projects diff --git a/docs/build/reference/return-value-of-cl-exe.md b/docs/build/reference/return-value-of-cl-exe.md index 2f11840024..26806b0ec0 100644 --- a/docs/build/reference/return-value-of-cl-exe.md +++ b/docs/build/reference/return-value-of-cl-exe.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Return Value of cl.exe" title: "Return Value of cl.exe" -ms.date: "09/05/2018" +description: "Learn more about: Return Value of cl.exe" +ms.date: 09/05/2018 helpviewer_keywords: ["cl.exe compiler, return value"] -ms.assetid: 7c2d7f33-ee0d-4199-8ef4-75fe2b007670 --- # Return Value of cl.exe diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2349.md b/docs/error-messages/compiler-errors-1/compiler-error-c2349.md index 6190f18c57..3b2cf2a02a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2349.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2349.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2349" title: "Compiler Error C2349" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2349" +ms.date: 11/04/2016 f1_keywords: ["C2349"] helpviewer_keywords: ["C2349"] -ms.assetid: ce9f2e65-fda0-41b6-9c4a-538607136396 --- # Compiler Error C2349 diff --git a/docs/mfc/mfc-com.md b/docs/mfc/mfc-com.md index 0a46f3cb00..9f5a4136d1 100644 --- a/docs/mfc/mfc-com.md +++ b/docs/mfc/mfc-com.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: MFC COM" title: "MFC COM" -ms.date: "09/12/2018" +description: "Learn more about: MFC COM" +ms.date: 09/12/2018 f1_keywords: ["MFC COM (MFC)"] helpviewer_keywords: ["MFC, COM support", "MFC ActiveX controls [MFC], COM support in MFC", "MFC COM [MFC]", "ActiveX controls [MFC], COM object model", "Active technology [MFC]", "COM [MFC], MFC support"] -ms.assetid: 7646bdcb-3a06-4ed5-9386-9b00f3979dcb --- # MFC COM diff --git a/docs/mfc/reference/ctabview-class.md b/docs/mfc/reference/ctabview-class.md index 9ab3109c80..82983a5e29 100644 --- a/docs/mfc/reference/ctabview-class.md +++ b/docs/mfc/reference/ctabview-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CTabView Class" title: "CTabView Class" -ms.date: "11/04/2016" +description: "Learn more about: CTabView Class" +ms.date: 11/04/2016 f1_keywords: ["CTabView", "AFXTABVIEW/CTabView", "AFXTABVIEW/CTabView::AddView", "AFXTABVIEW/CTabView::FindTab", "AFXTABVIEW/CTabView::GetActiveView", "AFXTABVIEW/CTabView::GetTabControl", "AFXTABVIEW/CTabView::RemoveView", "AFXTABVIEW/CTabView::SetActiveView", "AFXTABVIEW/CTabView::IsScrollBar", "AFXTABVIEW/CTabView::OnActivateView"] helpviewer_keywords: ["CTabView [MFC], AddView", "CTabView [MFC], FindTab", "CTabView [MFC], GetActiveView", "CTabView [MFC], GetTabControl", "CTabView [MFC], RemoveView", "CTabView [MFC], SetActiveView", "CTabView [MFC], IsScrollBar", "CTabView [MFC], OnActivateView"] -ms.assetid: 8e6ecd9d-d28d-432b-8ec8-0446f0204d52 --- # CTabView Class From 245c698a5fd18ff26dd83c684346527134c18a9c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 19:04:40 +0800 Subject: [PATCH 907/981] Add blockquotes for error messages in range [C2231, C2260] --- docs/error-messages/compiler-errors-1/compiler-error-c2231.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2232.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2233.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2234.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2236.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2238.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2241.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2242.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2243.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2244.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2245.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2246.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2247.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2249.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2250.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2251.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2252.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2253.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2254.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2255.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2256.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2258.md | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md index 6f95cb15e9..fef278a163 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md @@ -8,7 +8,7 @@ ms.assetid: 677c5c66-d30f-4c3b-bbb9-760858d56477 --- # Compiler Error C2231 -'.' : left operand points to 'class-key', use '->' +> '.' : left operand points to 'class-key', use '->' The operand to the left of the member-selection operation (.) is a pointer instead of a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md index 46af61cbe1..4a16fb3245 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md @@ -8,7 +8,7 @@ ms.assetid: 76f302b7-30a7-4a81-9a39-b4edde33b54c --- # Compiler Error C2232 -'->' : left operand has 'class-key' type, use '.' +> '->' : left operand has 'class-key' type, use '.' The operand to the left of the `->` operator is not a pointer. Use the period (.) operator for a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md index cb1b6646bc..3278e951c6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md @@ -8,7 +8,7 @@ ms.assetid: 236bdf0b-9607-4f26-a249-d8def0b1333c --- # Compiler Error C2233 -'identifier' : arrays of objects containing zero-size arrays are illegal +> 'identifier' : arrays of objects containing zero-size arrays are illegal Each object in an array must contain at least one element. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md index 2b08baaddf..31a4eb764e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md @@ -8,7 +8,7 @@ ms.assetid: cfa42458-c803-4717-a017-9eca1c0cbfb0 --- # Compiler Error C2234 -'name' : arrays of references are illegal +> 'name' : arrays of references are illegal Because pointers to references are not allowed, arrays of references are not possible. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md index fee5e16f05..b90dee51ae 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md @@ -8,7 +8,7 @@ ms.assetid: 0b6771a7-a783-4729-9c3d-7a3339c432cc --- # Compiler Error C2236 -unexpected token 'identifier'. Did you forget a ';'? +> unexpected token 'identifier'. Did you forget a ';'? The identifier is already defined as a type and cannot be overridden by a user-defined type. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md index 26743ab065..38ae6b4c1b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md @@ -8,7 +8,7 @@ ms.assetid: 3d53060c-d6b7-4603-b9cf-d7c65eb64cd2 --- # Compiler Error C2238 -unexpected token(s) preceding 'token' +> unexpected token(s) preceding 'token' An incorrect token was found. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md index f1793fd8d9..67b3ae02b2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md @@ -8,7 +8,7 @@ ms.assetid: 2f4e2c2c-b95c-4afe-bbe0-4214cd39d140 --- # Compiler Error C2241 -'identifier' : member access is restricted +> 'identifier' : member access is restricted Code attempts to access a private or protected member. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md index ccf78a2612..1436efd184 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md @@ -8,6 +8,6 @@ ms.assetid: e1b687ed-4460-4c26-9f7e-c43e65c6dd65 --- # Compiler Error C2242 -typedef name cannot follow class/struct/union +> typedef name cannot follow class/struct/union A **`typedef`** name appears at the end of a qualified name. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md index e12e7174e7..ec785d8598 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md @@ -8,7 +8,7 @@ ms.assetid: b90065bb-d251-4ba9-8b4c-280ee13fa9c0 --- # Compiler Error C2243 -'conversion type' conversion from 'type1' to 'type2' exists, but is inaccessible +> 'conversion type' conversion from 'type1' to 'type2' exists, but is inaccessible Access protection (**`protected`** or **`private`**) prevented conversion from a pointer to a derived class to a pointer to the base class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md index eed68eeec0..2633ef17f5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md @@ -8,7 +8,7 @@ ms.assetid: d9911c12-ceb5-4f93-ac47-b44a485215c2 --- # Compiler Error C2244 -'identifier' : unable to match function definition to an existing declaration +> 'identifier' : unable to match function definition to an existing declaration An unusual use of the unary + operator was used in front of a function call that did not have parenthesis. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md index cf96d1724c..6314e86a1e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md @@ -8,7 +8,7 @@ ms.assetid: 08aaeadf-10ec-485a-b2a6-6e775289082b --- # Compiler Error C2245 -non-existent member function 'function' specified as friend (member function signature does not match any overload) +> non-existent member function 'function' specified as friend (member function signature does not match any overload) A function specified as a friend was not found by the compiler. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md index c2ebd50d80..47203f5c45 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md @@ -8,7 +8,7 @@ ms.assetid: 4f3e4f83-21f3-4256-af96-43e0bb060311 --- # Compiler Error C2246 -'identifier' : illegal static data member in locally defined class +> 'identifier' : illegal static data member in locally defined class A member of a class, structure, or union with local scope is declared **`static`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md index 6fb7fea798..7c4394949b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md @@ -8,7 +8,7 @@ ms.assetid: 72efa03e-615e-4ef9-aede-0a98654b20fd --- # Compiler Error C2247 -'identifier' not accessible because 'class' uses 'specifier' to inherit from 'class' +> 'identifier' not accessible because 'class' uses 'specifier' to inherit from 'class' `identifier` is inherited from a class declared with private or protected access. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md index 2b33cb4e28..b225f63e4c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md @@ -8,7 +8,7 @@ ms.assetid: bdd6697c-e04b-49b9-8e40-d9eb6d74f2b6 --- # Compiler Error C2249 -'member' : no accessible path to access member declared in virtual base 'class' +> 'member' : no accessible path to access member declared in virtual base 'class' The `member` is inherited from a nonpublic **`virtual`** base class or structure. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md index c4ac513175..71524c1f10 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md @@ -8,7 +8,7 @@ ms.assetid: f990986f-5c7d-4af4-a25c-b35540f1e217 --- # Compiler Error C2250 -'identifier' : ambiguous inheritance of 'class::member' +> 'identifier' : ambiguous inheritance of 'class::member' The derived class inherits more than one override of a virtual function of a virtual base class. These overrides are ambiguous in the derived class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md index 77ec80c574..f6f6a32430 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md @@ -8,7 +8,7 @@ ms.assetid: fefe050c-f8d3-4316-b237-8007dbcdd3bf --- # Compiler Error C2251 -namespace 'namespace' does not have a member 'member' - Did you mean 'member'? +> namespace 'namespace' does not have a member 'member' - Did you mean 'member'? The compiler was not able to find an identifier in the specified namespace. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md index 7eaf55a4a0..9fb28bcc52 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md @@ -8,7 +8,7 @@ ms.assetid: fee74ab9-1997-4615-82fe-e6d1fe3aacd9 --- # Compiler Error C2252 -cannot explicitly instantiate template in current scope +> cannot explicitly instantiate template in current scope The compiler detected a problem with an explicit instantiation of a template. For example, you cannot explicitly instantiate a template in a function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md index 95a67878c5..555c85cba5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md @@ -8,7 +8,7 @@ ms.assetid: bd6445ae-b2c1-4669-9657-a8f4acf80b16 --- # Compiler Error C2253 -'function' : pure specifier or abstract override specifier only allowed on virtual function +> 'function' : pure specifier or abstract override specifier only allowed on virtual function A nonvirtual function is specified as pure **`virtual`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md index 0f7436b72b..30629f0d45 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md @@ -8,7 +8,7 @@ ms.assetid: 49bb3d7e-3bdf-4af6-937c-fa627be412a9 --- # Compiler Error C2254 -'function' : pure specifier or abstract override specifier not allowed on friend function +> 'function' : pure specifier or abstract override specifier not allowed on friend function A **`friend`** function is specified as pure **`virtual`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md index fa25eb214a..63f0eae7a1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md @@ -8,7 +8,7 @@ ms.assetid: 67dc4cb0-de6b-4405-bd64-d47736367a93 --- # Compiler Error C2255 -'element' : not allowed outside of a class definition +> 'element' : not allowed outside of a class definition For example, a nonmember function is declared a **`friend`**. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md index c0c1e5daac..7ff7ca5837 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md @@ -8,7 +8,7 @@ ms.assetid: 171fa2bc-8c72-49cd-afe5-d723b7acd3c5 --- # Compiler Error C2256 -illegal use of friend specifier on 'function' +> illegal use of friend specifier on 'function' A destructor or constructor cannot be specified as a [friend](../../cpp/friend-cpp.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md index 1e31e3d767..6f3adc5275 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md @@ -8,7 +8,7 @@ ms.assetid: 105eaa87-befb-4ecb-9a3f-e09e14d2f5bf --- # Compiler Error C2258 -illegal pure syntax, must be '= 0' +> illegal pure syntax, must be '= 0' A pure virtual function is declared with incorrect syntax. From 6756cd961b6aa9000983fe031c0c7c4fcb9d228e Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 19:10:34 +0800 Subject: [PATCH 908/981] Add "Remarks" and "Example" headings for error references in range [C2231, C2260] --- docs/error-messages/compiler-errors-1/compiler-error-c2231.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2232.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2233.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2234.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2236.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2238.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2241.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2242.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2243.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2244.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2245.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2246.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2247.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2248.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2249.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2250.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2251.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2252.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2253.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2254.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2255.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2256.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2258.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2259.md | 4 ++++ 24 files changed, 87 insertions(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md index fef278a163..3c7345b293 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md @@ -10,8 +10,12 @@ ms.assetid: 677c5c66-d30f-4c3b-bbb9-760858d56477 > '.' : left operand points to 'class-key', use '->' +## Remarks + The operand to the left of the member-selection operation (.) is a pointer instead of a class, structure, or union. +## Example + The following sample generates C2231: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md index 4a16fb3245..39c0057dbf 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md @@ -10,8 +10,12 @@ ms.assetid: 76f302b7-30a7-4a81-9a39-b4edde33b54c > '->' : left operand has 'class-key' type, use '.' +## Remarks + The operand to the left of the `->` operator is not a pointer. Use the period (.) operator for a class, structure, or union. +## Example + The following sample generates C2232: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md index 3278e951c6..8c581360ac 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md @@ -10,8 +10,12 @@ ms.assetid: 236bdf0b-9607-4f26-a249-d8def0b1333c > 'identifier' : arrays of objects containing zero-size arrays are illegal +## Remarks + Each object in an array must contain at least one element. +## Example + The following sample generates C2233: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md index 31a4eb764e..9f686d1fd6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md @@ -10,8 +10,12 @@ ms.assetid: cfa42458-c803-4717-a017-9eca1c0cbfb0 > 'name' : arrays of references are illegal +## Remarks + Because pointers to references are not allowed, arrays of references are not possible. +## Example + The following sample generates C2234: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md index b90dee51ae..306c49f7d9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md @@ -10,8 +10,12 @@ ms.assetid: 0b6771a7-a783-4729-9c3d-7a3339c432cc > unexpected token 'identifier'. Did you forget a ';'? +## Remarks + The identifier is already defined as a type and cannot be overridden by a user-defined type. +## Example + The following sample generates C2236: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md index 38ae6b4c1b..674669a1ac 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md @@ -10,8 +10,12 @@ ms.assetid: 3d53060c-d6b7-4603-b9cf-d7c65eb64cd2 > unexpected token(s) preceding 'token' +## Remarks + An incorrect token was found. +## Example + The following sample generates C2238: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md index 67b3ae02b2..7de089058f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md @@ -10,6 +10,8 @@ ms.assetid: 2f4e2c2c-b95c-4afe-bbe0-4214cd39d140 > 'identifier' : member access is restricted +## Remarks + Code attempts to access a private or protected member. ### To fix by using the following possible solutions diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md index 1436efd184..b7a50c92c2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md @@ -10,4 +10,6 @@ ms.assetid: e1b687ed-4460-4c26-9f7e-c43e65c6dd65 > typedef name cannot follow class/struct/union +## Remarks + A **`typedef`** name appears at the end of a qualified name. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md index ec785d8598..f2a2c48e8d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md @@ -10,8 +10,12 @@ ms.assetid: b90065bb-d251-4ba9-8b4c-280ee13fa9c0 > 'conversion type' conversion from 'type1' to 'type2' exists, but is inaccessible +## Remarks + Access protection (**`protected`** or **`private`**) prevented conversion from a pointer to a derived class to a pointer to the base class. +## Example + The following sample generates C2243: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md index 2633ef17f5..fce7ac39bb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md @@ -10,10 +10,14 @@ ms.assetid: d9911c12-ceb5-4f93-ac47-b44a485215c2 > 'identifier' : unable to match function definition to an existing declaration +## Remarks + An unusual use of the unary + operator was used in front of a function call that did not have parenthesis. This error only occurs in C++ projects. +## Examples + The following sample generates C2244: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md index 6314e86a1e..2fb00bc883 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md @@ -10,8 +10,12 @@ ms.assetid: 08aaeadf-10ec-485a-b2a6-6e775289082b > non-existent member function 'function' specified as friend (member function signature does not match any overload) +## Remarks + A function specified as a friend was not found by the compiler. +## Example + The following sample generates C2245: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md index 47203f5c45..a85d17f359 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md @@ -10,8 +10,12 @@ ms.assetid: 4f3e4f83-21f3-4256-af96-43e0bb060311 > 'identifier' : illegal static data member in locally defined class +## Remarks + A member of a class, structure, or union with local scope is declared **`static`**. +## Example + The following sample generates C2246: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md index 7c4394949b..f2bb4a1484 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md @@ -10,8 +10,12 @@ ms.assetid: 72efa03e-615e-4ef9-aede-0a98654b20fd > 'identifier' not accessible because 'class' uses 'specifier' to inherit from 'class' +## Remarks + `identifier` is inherited from a class declared with private or protected access. +## Examples + The following sample generates C2247: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md index 81f0232666..cd7e67afa4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md @@ -14,7 +14,7 @@ ms.assetid: 7a3ba0e8-d3b9-4bb9-95db-81ef17e31d23 Members of a derived class can't access **`private`** members of a base class. You can't access **`private`** or **`protected`** members of class instances. -## Example +## Examples The following sample generates C2248 when `private` or `protected` members of a class are accessed from outside the class. To fix this issue, don't access these members directly outside the class. Use `public` member data and member functions to interact with the class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md index b225f63e4c..8a31cd7ff7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md @@ -10,6 +10,8 @@ ms.assetid: bdd6697c-e04b-49b9-8e40-d9eb6d74f2b6 > 'member' : no accessible path to access member declared in virtual base 'class' +## Remarks + The `member` is inherited from a nonpublic **`virtual`** base class or structure. ## Examples diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md index 71524c1f10..845fa9125c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md @@ -10,8 +10,12 @@ ms.assetid: f990986f-5c7d-4af4-a25c-b35540f1e217 > 'identifier' : ambiguous inheritance of 'class::member' +## Remarks + The derived class inherits more than one override of a virtual function of a virtual base class. These overrides are ambiguous in the derived class. +## Example + The following sample generates C2286: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md index f6f6a32430..132a488f38 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md @@ -10,8 +10,12 @@ ms.assetid: fefe050c-f8d3-4316-b237-8007dbcdd3bf > namespace 'namespace' does not have a member 'member' - Did you mean 'member'? +## Remarks + The compiler was not able to find an identifier in the specified namespace. +## Example + The following sample generates C2251: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md index 9fb28bcc52..602d3a755f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md @@ -10,8 +10,12 @@ ms.assetid: fee74ab9-1997-4615-82fe-e6d1fe3aacd9 > cannot explicitly instantiate template in current scope +## Remarks + The compiler detected a problem with an explicit instantiation of a template. For example, you cannot explicitly instantiate a template in a function. +## Example + The following sample generates C2252: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md index 555c85cba5..414abda3d3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md @@ -10,8 +10,12 @@ ms.assetid: bd6445ae-b2c1-4669-9657-a8f4acf80b16 > 'function' : pure specifier or abstract override specifier only allowed on virtual function +## Remarks + A nonvirtual function is specified as pure **`virtual`**. +## Examples + The following sample generates C2253: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md index 30629f0d45..bc9676e95a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md @@ -10,8 +10,12 @@ ms.assetid: 49bb3d7e-3bdf-4af6-937c-fa627be412a9 > 'function' : pure specifier or abstract override specifier not allowed on friend function +## Remarks + A **`friend`** function is specified as pure **`virtual`**. +## Example + The following sample generates C2254: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md index 63f0eae7a1..2d6ea4932d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md @@ -10,8 +10,12 @@ ms.assetid: 67dc4cb0-de6b-4405-bd64-d47736367a93 > 'element' : not allowed outside of a class definition +## Remarks + For example, a nonmember function is declared a **`friend`**. +## Example + The following sample generates C2255: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md index 7ff7ca5837..99a1f00550 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md @@ -10,8 +10,12 @@ ms.assetid: 171fa2bc-8c72-49cd-afe5-d723b7acd3c5 > illegal use of friend specifier on 'function' +## Remarks + A destructor or constructor cannot be specified as a [friend](../../cpp/friend-cpp.md). +## Example + The following sample generates C2256: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md index 6f3adc5275..3c070b3c21 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md @@ -10,8 +10,12 @@ ms.assetid: 105eaa87-befb-4ecb-9a3f-e09e14d2f5bf > illegal pure syntax, must be '= 0' +## Remarks + A pure virtual function is declared with incorrect syntax. +## Example + The following sample generates C2258: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md index 11c96f2b72..74270c48a8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md @@ -10,12 +10,16 @@ ms.assetid: e458236f-bdea-4786-9aa6-a98d8bffa5f4 > '*class*' : cannot instantiate abstract class +## Remarks + Code declares an instance of an abstract class or structure. You can't instantiate a class or structure with one or more pure virtual functions. To instantiate objects of a derived class, the derived class must override each pure virtual function. For more information, see [Implicitly abstract classes](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Implicitly_abstract_classes). +## Examples + The following sample generates C2259: ```cpp From 901cb657cebd007f28d42c4a260b4d9a2778b08c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 19:16:04 +0800 Subject: [PATCH 909/981] Replace term "sample" with "example" for error references in range [C2231, C2260] --- .../compiler-errors-1/compiler-error-c2231.md | 2 +- .../compiler-errors-1/compiler-error-c2232.md | 2 +- .../compiler-errors-1/compiler-error-c2233.md | 2 +- .../compiler-errors-1/compiler-error-c2234.md | 2 +- .../compiler-errors-1/compiler-error-c2236.md | 2 +- .../compiler-errors-1/compiler-error-c2238.md | 2 +- .../compiler-errors-1/compiler-error-c2243.md | 2 +- .../compiler-errors-1/compiler-error-c2244.md | 2 +- .../compiler-errors-1/compiler-error-c2245.md | 2 +- .../compiler-errors-1/compiler-error-c2246.md | 2 +- .../compiler-errors-1/compiler-error-c2247.md | 2 +- .../compiler-errors-1/compiler-error-c2248.md | 2 +- .../compiler-errors-1/compiler-error-c2249.md | 4 ++-- .../compiler-errors-1/compiler-error-c2250.md | 2 +- .../compiler-errors-1/compiler-error-c2251.md | 2 +- .../compiler-errors-1/compiler-error-c2252.md | 2 +- .../compiler-errors-1/compiler-error-c2253.md | 4 ++-- .../compiler-errors-1/compiler-error-c2254.md | 2 +- .../compiler-errors-1/compiler-error-c2255.md | 2 +- .../compiler-errors-1/compiler-error-c2256.md | 2 +- .../compiler-errors-1/compiler-error-c2258.md | 2 +- .../compiler-errors-1/compiler-error-c2259.md | 6 +++--- 22 files changed, 26 insertions(+), 26 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md index 3c7345b293..2893c93d89 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md @@ -16,7 +16,7 @@ The operand to the left of the member-selection operation (.) is a pointer inste ## Example -The following sample generates C2231: +The following example generates C2231: ```c // C2231.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md index 39c0057dbf..0799d5ac34 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md @@ -16,7 +16,7 @@ The operand to the left of the `->` operator is not a pointer. Use the period (. ## Example -The following sample generates C2232: +The following example generates C2232: ```c // C2232.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md index 8c581360ac..eae29aa23d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md @@ -16,7 +16,7 @@ Each object in an array must contain at least one element. ## Example -The following sample generates C2233: +The following example generates C2233: ```cpp // C2233.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md index 9f686d1fd6..e298f86f35 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md @@ -16,7 +16,7 @@ Because pointers to references are not allowed, arrays of references are not pos ## Example -The following sample generates C2234: +The following example generates C2234: ```cpp // C2234.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md index 306c49f7d9..521223e641 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md @@ -16,7 +16,7 @@ The identifier is already defined as a type and cannot be overridden by a user-d ## Example -The following sample generates C2236: +The following example generates C2236: ```cpp // C2236.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md index 674669a1ac..94325929da 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md @@ -16,7 +16,7 @@ An incorrect token was found. ## Example -The following sample generates C2238: +The following example generates C2238: ```cpp // C2238.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md index f2a2c48e8d..4a73edc659 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md @@ -16,7 +16,7 @@ Access protection (**`protected`** or **`private`**) prevented conversion from a ## Example -The following sample generates C2243: +The following example generates C2243: ```cpp // C2243.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md index fce7ac39bb..24cb988822 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md @@ -18,7 +18,7 @@ This error only occurs in C++ projects. ## Examples -The following sample generates C2244: +The following example generates C2244: ```cpp // C2244.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md index 2fb00bc883..65d6142671 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md @@ -16,7 +16,7 @@ A function specified as a friend was not found by the compiler. ## Example -The following sample generates C2245: +The following example generates C2245: ```cpp // C2245.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md index a85d17f359..cfc2d82413 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md @@ -16,7 +16,7 @@ A member of a class, structure, or union with local scope is declared **`static` ## Example -The following sample generates C2246: +The following example generates C2246: ```cpp // C2246.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md index f2bb4a1484..e9343220f1 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md @@ -16,7 +16,7 @@ ms.assetid: 72efa03e-615e-4ef9-aede-0a98654b20fd ## Examples -The following sample generates C2247: +The following example generates C2247: ```cpp // C2247.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md index cd7e67afa4..a925b2c310 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md @@ -16,7 +16,7 @@ Members of a derived class can't access **`private`** members of a base class. Y ## Examples -The following sample generates C2248 when `private` or `protected` members of a class are accessed from outside the class. To fix this issue, don't access these members directly outside the class. Use `public` member data and member functions to interact with the class. +The following example generates C2248 when `private` or `protected` members of a class are accessed from outside the class. To fix this issue, don't access these members directly outside the class. Use `public` member data and member functions to interact with the class. ```cpp // C2248_access.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md index 8a31cd7ff7..711bf675bd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md @@ -16,7 +16,7 @@ The `member` is inherited from a nonpublic **`virtual`** base class or structure ## Examples -The following sample generates C2249. +The following example generates C2249. ```cpp // C2249.cpp @@ -35,7 +35,7 @@ int main() { } ``` -C2249 can also occur if you try to assign a stream from the C++ Standard Library to another stream. The following sample generates C2249. +C2249 can also occur if you try to assign a stream from the C++ Standard Library to another stream. The following example generates C2249. ```cpp // C2249_2.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md index 845fa9125c..b1152ea8b5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md @@ -16,7 +16,7 @@ The derived class inherits more than one override of a virtual function of a vir ## Example -The following sample generates C2286: +The following example generates C2286: ```cpp // C2250.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md index 132a488f38..382966e5ed 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md @@ -16,7 +16,7 @@ The compiler was not able to find an identifier in the specified namespace. ## Example -The following sample generates C2251: +The following example generates C2251: ```cpp // C2251.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md index 602d3a755f..75c4cdbe26 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md @@ -16,7 +16,7 @@ The compiler detected a problem with an explicit instantiation of a template. F ## Example -The following sample generates C2252: +The following example generates C2252: ```cpp // C2252.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md index 414abda3d3..427ffaded0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md @@ -16,7 +16,7 @@ A nonvirtual function is specified as pure **`virtual`**. ## Examples -The following sample generates C2253: +The following example generates C2253: ```cpp // C2253.cpp @@ -28,7 +28,7 @@ public: }; ``` -The following sample generates C2253: +The following example generates C2253: ```cpp // C2253_2.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md index bc9676e95a..a0740739bc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md @@ -16,7 +16,7 @@ A **`friend`** function is specified as pure **`virtual`**. ## Example -The following sample generates C2254: +The following example generates C2254: ```cpp // C2254.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md index 2d6ea4932d..d4e1904686 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md @@ -16,7 +16,7 @@ For example, a nonmember function is declared a **`friend`**. ## Example -The following sample generates C2255: +The following example generates C2255: ```cpp // C2255.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md index 99a1f00550..281491a512 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md @@ -16,7 +16,7 @@ A destructor or constructor cannot be specified as a [friend](../../cpp/friend-c ## Example -The following sample generates C2256: +The following example generates C2256: ```cpp // C2256.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md index 3c070b3c21..c6c5b8400d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md @@ -16,7 +16,7 @@ A pure virtual function is declared with incorrect syntax. ## Example -The following sample generates C2258: +The following example generates C2258: ```cpp // C2258.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md index 74270c48a8..974025e237 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md @@ -20,7 +20,7 @@ For more information, see [Implicitly abstract classes](../../dotnet/how-to-defi ## Examples -The following sample generates C2259: +The following example generates C2259: ```cpp // C2259.cpp @@ -45,7 +45,7 @@ To resolve this issue, don't use more restrictive access permissions for the imp C2259 can also occur because of conformance work that was done in Visual Studio 2005, **`/Zc:wchar_t`** is now on by default. In this situation, C2599 can be resolved either by compiling with **`/Zc:wchar_t-`**, to get the behavior from previous versions, or preferably, by updating your types so they're compatible. For more information, see [`/Zc:wchar_t` (wchar_t Is Native Type)](../../build/reference/zc-wchar-t-wchar-t-is-native-type.md). -The following sample generates C2259: +The following example generates C2259: ```cpp // C2259b.cpp @@ -83,7 +83,7 @@ public: MyClass4 y; ``` -The following sample generates C2259: +The following example generates C2259: ```cpp // C2259c.cpp From c17ce2329dd64b662391d761b6c24ee3e15fe115 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 20 Jul 2025 19:19:42 +0800 Subject: [PATCH 910/981] Update metadata for error references in range [C2231, C2260] --- .../error-messages/compiler-errors-1/compiler-error-c2231.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2232.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2233.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2234.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2236.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2238.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2241.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2242.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2243.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2244.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2245.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2246.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2247.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2248.md | 3 +-- .../error-messages/compiler-errors-1/compiler-error-c2249.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2250.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2251.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2252.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2253.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2254.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2255.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2256.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2258.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2259.md | 3 +-- 24 files changed, 46 insertions(+), 70 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md index 2893c93d89..a3ab0edc00 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2231.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2231.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2231" title: "Compiler Error C2231" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2231" +ms.date: 11/04/2016 f1_keywords: ["C2231"] helpviewer_keywords: ["C2231"] -ms.assetid: 677c5c66-d30f-4c3b-bbb9-760858d56477 --- # Compiler Error C2231 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md index 0799d5ac34..58ab4d67d2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2232.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2232.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2232" title: "Compiler Error C2232" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2232" +ms.date: 11/04/2016 f1_keywords: ["C2232"] helpviewer_keywords: ["C2232"] -ms.assetid: 76f302b7-30a7-4a81-9a39-b4edde33b54c --- # Compiler Error C2232 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md index eae29aa23d..941d8ee870 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2233.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2233.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2233" title: "Compiler Error C2233" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2233" +ms.date: 11/04/2016 f1_keywords: ["C2233"] helpviewer_keywords: ["C2233"] -ms.assetid: 236bdf0b-9607-4f26-a249-d8def0b1333c --- # Compiler Error C2233 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md index e298f86f35..df26be2eea 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2234.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2234.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2234" title: "Compiler Error C2234" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2234" +ms.date: 11/04/2016 f1_keywords: ["C2234"] helpviewer_keywords: ["C2234"] -ms.assetid: cfa42458-c803-4717-a017-9eca1c0cbfb0 --- # Compiler Error C2234 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md index 521223e641..4fc2c582fb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2236.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2236.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2236" title: "Compiler Error C2236" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2236" +ms.date: 11/04/2016 f1_keywords: ["C2236"] helpviewer_keywords: ["C2236"] -ms.assetid: 0b6771a7-a783-4729-9c3d-7a3339c432cc --- # Compiler Error C2236 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md index 94325929da..36610cb8a8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2238.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2238.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2238" title: "Compiler Error C2238" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2238" +ms.date: 11/04/2016 f1_keywords: ["C2238"] helpviewer_keywords: ["C2238"] -ms.assetid: 3d53060c-d6b7-4603-b9cf-d7c65eb64cd2 --- # Compiler Error C2238 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md index 7de089058f..1b3217d46f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2241.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2241.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2241" title: "Compiler Error C2241" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2241" +ms.date: 11/04/2016 f1_keywords: ["C2241"] helpviewer_keywords: ["C2241"] -ms.assetid: 2f4e2c2c-b95c-4afe-bbe0-4214cd39d140 --- # Compiler Error C2241 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md index b7a50c92c2..d7401ce758 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2242.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2242.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2242" title: "Compiler Error C2242" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2242" +ms.date: 11/04/2016 f1_keywords: ["C2242"] helpviewer_keywords: ["C2242"] -ms.assetid: e1b687ed-4460-4c26-9f7e-c43e65c6dd65 --- # Compiler Error C2242 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md index 4a73edc659..036a1ae997 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2243.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2243.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2243" title: "Compiler Error C2243" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2243" +ms.date: 11/04/2016 f1_keywords: ["C2243"] helpviewer_keywords: ["C2243"] -ms.assetid: b90065bb-d251-4ba9-8b4c-280ee13fa9c0 --- # Compiler Error C2243 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md index 24cb988822..d0ae19f328 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2244.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2244.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2244" title: "Compiler Error C2244" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2244" +ms.date: 11/04/2016 f1_keywords: ["C2244"] helpviewer_keywords: ["C2244"] -ms.assetid: d9911c12-ceb5-4f93-ac47-b44a485215c2 --- # Compiler Error C2244 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md index 65d6142671..585fe22556 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2245.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2245.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2245" title: "Compiler Error C2245" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2245" +ms.date: 11/04/2016 f1_keywords: ["C2245"] helpviewer_keywords: ["C2245"] -ms.assetid: 08aaeadf-10ec-485a-b2a6-6e775289082b --- # Compiler Error C2245 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md index cfc2d82413..3c6e5d4c2e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2246.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2246.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2246" title: "Compiler Error C2246" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2246" +ms.date: 11/04/2016 f1_keywords: ["C2246"] helpviewer_keywords: ["C2246"] -ms.assetid: 4f3e4f83-21f3-4256-af96-43e0bb060311 --- # Compiler Error C2246 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md index e9343220f1..e658316482 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2247.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2247.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2247" title: "Compiler Error C2247" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2247" +ms.date: 11/04/2016 f1_keywords: ["C2247"] helpviewer_keywords: ["C2247"] -ms.assetid: 72efa03e-615e-4ef9-aede-0a98654b20fd --- # Compiler Error C2247 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md index a925b2c310..6a240fa1ff 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2248.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2248.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2248" title: "Compiler Error C2248" +description: "Learn more about: Compiler Error C2248" ms.date: 09/27/2022 f1_keywords: ["C2248"] helpviewer_keywords: ["C2248"] -ms.assetid: 7a3ba0e8-d3b9-4bb9-95db-81ef17e31d23 --- # Compiler Error C2248 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md index 711bf675bd..08b0242691 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2249.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2249.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2249" title: "Compiler Error C2249" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2249" +ms.date: 11/04/2016 f1_keywords: ["C2249"] helpviewer_keywords: ["C2249"] -ms.assetid: bdd6697c-e04b-49b9-8e40-d9eb6d74f2b6 --- # Compiler Error C2249 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md index b1152ea8b5..90762d9a52 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2250.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2250.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2250" title: "Compiler Error C2250" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2250" +ms.date: 11/04/2016 f1_keywords: ["C2250"] helpviewer_keywords: ["C2250"] -ms.assetid: f990986f-5c7d-4af4-a25c-b35540f1e217 --- # Compiler Error C2250 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md index 382966e5ed..f3be89655f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2251.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2251.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2251" title: "Compiler Error C2251" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2251" +ms.date: 11/04/2016 f1_keywords: ["C2251"] helpviewer_keywords: ["C2251"] -ms.assetid: fefe050c-f8d3-4316-b237-8007dbcdd3bf --- # Compiler Error C2251 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md index 75c4cdbe26..a26bb54ffd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2252.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2252.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2252" title: "Compiler Error C2252" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2252" +ms.date: 11/04/2016 f1_keywords: ["C2252"] helpviewer_keywords: ["C2252"] -ms.assetid: fee74ab9-1997-4615-82fe-e6d1fe3aacd9 --- # Compiler Error C2252 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md index 427ffaded0..10af621f45 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2253.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2253.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2253" title: "Compiler Error C2253" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2253" +ms.date: 11/04/2016 f1_keywords: ["C2253"] helpviewer_keywords: ["C2253"] -ms.assetid: bd6445ae-b2c1-4669-9657-a8f4acf80b16 --- # Compiler Error C2253 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md index a0740739bc..675b084392 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2254.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2254.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2254" title: "Compiler Error C2254" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2254" +ms.date: 11/04/2016 f1_keywords: ["C2254"] helpviewer_keywords: ["C2254"] -ms.assetid: 49bb3d7e-3bdf-4af6-937c-fa627be412a9 --- # Compiler Error C2254 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md index d4e1904686..99711de628 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2255.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2255.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2255" title: "Compiler Error C2255" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2255" +ms.date: 11/04/2016 f1_keywords: ["C2255"] helpviewer_keywords: ["C2255"] -ms.assetid: 67dc4cb0-de6b-4405-bd64-d47736367a93 --- # Compiler Error C2255 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md index 281491a512..2c40773e23 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2256.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2256.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2256" title: "Compiler Error C2256" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2256" +ms.date: 11/04/2016 f1_keywords: ["C2256"] helpviewer_keywords: ["C2256"] -ms.assetid: 171fa2bc-8c72-49cd-afe5-d723b7acd3c5 --- # Compiler Error C2256 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md index c6c5b8400d..8b04f7d245 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2258.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2258.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2258" title: "Compiler Error C2258" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2258" +ms.date: 11/04/2016 f1_keywords: ["C2258"] helpviewer_keywords: ["C2258"] -ms.assetid: 105eaa87-befb-4ecb-9a3f-e09e14d2f5bf --- # Compiler Error C2258 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md index 974025e237..9bcb2e62f8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2259.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2259.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2259" title: "Compiler Error C2259" +description: "Learn more about: Compiler Error C2259" ms.date: 07/08/2021 f1_keywords: ["C2259"] helpviewer_keywords: ["C2259"] -ms.assetid: e458236f-bdea-4786-9aa6-a98d8bffa5f4 --- # Compiler Error C2259 From 67a7184c1bacf0288e6a807e5c4221c832fa1f88 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 21 Jul 2025 22:24:55 +0800 Subject: [PATCH 911/981] Add blockquotes for error messages in range [C2261, C2290] --- docs/error-messages/compiler-errors-1/compiler-error-c2261.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2262.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2264.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2266.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2267.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2268.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2270.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2271.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2272.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2273.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2274.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2275.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2277.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2279.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2280.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2285.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2286.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2287.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2289.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2290.md | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md index eb8bd54da2..bf0b5fdb84 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md @@ -8,7 +8,7 @@ ms.assetid: 60969482-9e83-49b5-9631-a04bc844da12 --- # Compiler Error C2261 -'string' : assembly reference is invalid and cannot be resolved +> 'string' : assembly reference is invalid and cannot be resolved A value was not valid. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md index 8aa445522b..4e684dc673 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md @@ -8,7 +8,7 @@ ms.assetid: 727d1c6e-53e8-40e5-b7b8-6a7ac2011727 --- # Compiler Error C2262 -'attribute_specifiers' : InternalsVisibleTo declarations cannot have a version, culture, or processor architecture specified +> 'attribute_specifiers' : InternalsVisibleTo declarations cannot have a version, culture, or processor architecture specified The attribute was not specified correctly. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md index e2e1dd617e..b4156cb684 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md @@ -8,7 +8,7 @@ ms.assetid: 158b72cc-cee9-4a08-bd79-b7a5955345a8 --- # Compiler Error C2264 -'function' : error in function definition or declaration; function not called +> 'function' : error in function definition or declaration; function not called The function cannot be called due to an incorrect definition or declaration. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md index 9fc181b416..6c01dee721 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md @@ -8,6 +8,6 @@ ms.assetid: 5c267a67-d5a1-4ad7-b6f7-a156510aee35 --- # Compiler Error C2266 -'identifier' : reference to a non-constant bounded array is illegal +> 'identifier' : reference to a non-constant bounded array is illegal A reference is declared for an array with a nonconstant bound. The array must have constant bounds. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md index 4018e13c8c..f1e87ee546 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md @@ -8,7 +8,7 @@ ms.assetid: ea63bebb-6208-4367-8440-39be07f9c360 --- # Compiler Error C2267 -'function' : static functions with block scope are illegal +> 'function' : static functions with block scope are illegal A local function is declared **`static`**. Static functions must have global scope. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md index 8be9311197..b9b75aac53 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md @@ -8,7 +8,7 @@ ms.assetid: 0ed055c9-3c6f-4df2-a5b6-85cf0e01a249 --- # Compiler Error C2268 -'function' is a compiler predefined library helper. Library helpers are not supported with /GL; compile object file 'file' without /GL. +> 'function' is a compiler predefined library helper. Library helpers are not supported with /GL; compile object file 'file' without /GL. A function defined in your source code has the same name as an internal compiler function. Compile the module containing the function without [/GL](../../build/reference/gl-whole-program-optimization.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md index b19c40b8b2..5be147eb53 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md @@ -8,7 +8,7 @@ ms.assetid: b52c068e-0b61-42e7-b775-4d57b3ddcba0 --- # Compiler Error C2270 -'function' : modifiers not allowed on nonmember functions +> 'function' : modifiers not allowed on nonmember functions A nonmember function is declared with [const](../../cpp/const-cpp.md), [volatile](../../cpp/volatile-cpp.md), or another memory-model modifier. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md index cb79055f4c..e23a47bd36 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md @@ -8,7 +8,7 @@ ms.assetid: ea47bf57-f55d-4171-8e98-95a71d62820e --- # Compiler Error C2271 -'operator' : new/delete cannot have formal list modifiers +> 'operator' : new/delete cannot have formal list modifiers The operator (**`new`** or **`delete`**) is declared with a memory-model specifier. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md index a47e01e02a..a6fe45a754 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md @@ -8,7 +8,7 @@ ms.assetid: 1517706a-9c27-452e-9b10-3424b3d232bc --- # Compiler Error C2272 -'function' : modifiers not allowed on static member functions +> 'function' : modifiers not allowed on static member functions A **`static`** member function is declared with a memory-model specifier, such as [const](../../cpp/const-cpp.md) or [volatile](../../cpp/volatile-cpp.md), and such modifiers are not allowed on **`static`** member functions. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md index 2000e990c3..2c78a44387 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md @@ -8,7 +8,7 @@ ms.assetid: 3c682c66-97bf-4a23-a22c-d9a26a92bf95 --- # Compiler Error C2273 -'type' : illegal as right side of '->' operator +> 'type' : illegal as right side of '->' operator A type appears as the right operand of a `->` operator. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md index 52cd5d4fca..b670f40347 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md @@ -8,7 +8,7 @@ ms.assetid: 8e874903-f499-45ef-8291-f821eee4cc1c --- # Compiler Error C2274 -'type' : illegal as right side of '.' operator +> 'type' : illegal as right side of '.' operator A type appears as the right operand of a member-access (.) operator. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md index 5398ae9154..0948c93d6a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md @@ -8,7 +8,7 @@ ms.assetid: c1eafa71-48de-46e0-82f3-b575538ef205 --- # Compiler Error C2275 -'identifier' : illegal use of this type as an expression +> 'identifier' : illegal use of this type as an expression An expression uses the `->` operator with a **`typedef`** identifier. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md index f1aef2b07f..7de82b48d4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md @@ -8,7 +8,7 @@ ms.assetid: 15a83b07-8731-4524-810b-267f65a7844f --- # Compiler Error C2277 -'identifier' : cannot take address of this member function +> 'identifier' : cannot take address of this member function You cannot take the address of a member function. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md index b7df615fbd..a2593950f7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md @@ -8,7 +8,7 @@ ms.assetid: 1b5c88ef-2336-49b8-9ddb-d61f97c73e14 --- # Compiler Error C2279 -exception specification cannot appear in a typedef declaration +> exception specification cannot appear in a typedef declaration Under **/Za**, [exception specifications](../../cpp/exception-specifications-throw-cpp.md) are not allowed in a typedef declaration. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md index c438dc7138..0ffdaaac91 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md @@ -8,7 +8,7 @@ ms.assetid: e6c5b1fb-2b9b-4554-8ff9-775eeb37161b --- # Compiler Error C2280 -'*declaration*': attempting to reference a deleted function +> '*declaration*': attempting to reference a deleted function The compiler detected an attempt to reference a `deleted` function. This error can be caused by a call to a member function that has been explicitly marked as `= deleted` in the source code. This error can also be caused by a call to an implicit special member function of a struct or class that is automatically declared and marked as `deleted` by the compiler. For more information about when the compiler automatically generates **`default`** or `deleted` special member functions, see [Special member functions](../../cpp/special-member-functions.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md index cb7c1d60c9..dad0f15a6c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md @@ -8,6 +8,6 @@ ms.assetid: 7b40a1b0-f477-49fa-b762-c3bccd88514e --- # Compiler Error C2285 -pointers to members representation has already been determined - pragma ignored +> pointers to members representation has already been determined - pragma ignored Two different representations exist for class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md index 8479291e54..da5d13bb9f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md @@ -8,7 +8,7 @@ ms.assetid: 078e0201-35cc-42e2-8dbc-6f8cf557b098 --- # Compiler Error C2286 -pointers to members of 'identifier' representation is already set to 'inheritance' - declaration ignored +> pointers to members of 'identifier' representation is already set to 'inheritance' - declaration ignored Two different pointer-to-members representations exist for class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md index 178c7c0076..6a4c765554 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md @@ -8,7 +8,7 @@ ms.assetid: 64556299-4e1f-4437-88b7-2464fc0b95bb --- # Compiler Error C2287 -'class': inheritance representation: 'representation1' is less general than the required 'representation2' +> 'class': inheritance representation: 'representation1' is less general than the required 'representation2' A class is declared with a simpler representation than required. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md index 485af60194..2141e920db 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md @@ -8,7 +8,7 @@ ms.assetid: cb41a29e-1b06-47dc-bfce-8d73bd63a0df --- # Compiler Error C2289 -same type qualifier used more than once +> same type qualifier used more than once A type declaration or definition uses a type qualifier (**`const`**, **`volatile`**, **`signed`**, or **`unsigned`**) more than once, causing an error under ANSI compatibility (**/Za**). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md index f69fdf273c..5b12572999 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md @@ -8,6 +8,6 @@ ms.assetid: 78c0feec-ccde-401b-8335-5b6ea6be8a13 --- # Compiler Error C2290 -C++ asm syntax ignored. Use __asm. +> C++ asm syntax ignored. Use __asm. The **`asm`** syntax is reserved for future use. From 2720b85acdd7e2862077ace79b2b9f12fe9a4ee9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 21 Jul 2025 22:30:54 +0800 Subject: [PATCH 912/981] Add "Remarks" and "Example" headings for error references in range [C2261, C2290] --- docs/error-messages/compiler-errors-1/compiler-error-c2261.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2262.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2264.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2266.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2267.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2268.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2270.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2271.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2272.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2273.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2274.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2275.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2276.md | 4 ++-- docs/error-messages/compiler-errors-1/compiler-error-c2277.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2279.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2280.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2283.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2285.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2286.md | 2 ++ docs/error-messages/compiler-errors-1/compiler-error-c2287.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2289.md | 4 ++++ docs/error-messages/compiler-errors-1/compiler-error-c2290.md | 2 ++ 22 files changed, 72 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md index bf0b5fdb84..4de84ccc6e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md @@ -10,6 +10,8 @@ ms.assetid: 60969482-9e83-49b5-9631-a04bc844da12 > 'string' : assembly reference is invalid and cannot be resolved +## Remarks + A value was not valid. is used to specify a friend assembly. For example, if a.dll wants to specify b.dll as a friend assembly, you would specify (in a.dll): InternalsVisibleTo("b"). The runtime then allows b.dll to access everything in a.dll (except private types). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md index 4e684dc673..ea89e15d34 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md @@ -10,6 +10,8 @@ ms.assetid: 727d1c6e-53e8-40e5-b7b8-6a7ac2011727 > 'attribute_specifiers' : InternalsVisibleTo declarations cannot have a version, culture, or processor architecture specified +## Remarks + The attribute was not specified correctly. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md index b4156cb684..03b2a6fc83 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md @@ -10,8 +10,12 @@ ms.assetid: 158b72cc-cee9-4a08-bd79-b7a5955345a8 > 'function' : error in function definition or declaration; function not called +## Remarks + The function cannot be called due to an incorrect definition or declaration. +## Example + The following sample generates C2264: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md index 6c01dee721..32e2c9840b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md @@ -10,4 +10,6 @@ ms.assetid: 5c267a67-d5a1-4ad7-b6f7-a156510aee35 > 'identifier' : reference to a non-constant bounded array is illegal +## Remarks + A reference is declared for an array with a nonconstant bound. The array must have constant bounds. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md index f1e87ee546..b1616b6fba 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md @@ -10,8 +10,12 @@ ms.assetid: ea63bebb-6208-4367-8440-39be07f9c360 > 'function' : static functions with block scope are illegal +## Remarks + A local function is declared **`static`**. Static functions must have global scope. +## Example + The following sample generates C2267: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md index b9b75aac53..378638e69e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md @@ -10,8 +10,12 @@ ms.assetid: 0ed055c9-3c6f-4df2-a5b6-85cf0e01a249 > 'function' is a compiler predefined library helper. Library helpers are not supported with /GL; compile object file 'file' without /GL. +## Remarks + A function defined in your source code has the same name as an internal compiler function. Compile the module containing the function without [/GL](../../build/reference/gl-whole-program-optimization.md). +## Example + The following sample generates C2268: ```c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md index 5be147eb53..b92e5ca856 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md @@ -10,8 +10,12 @@ ms.assetid: b52c068e-0b61-42e7-b775-4d57b3ddcba0 > 'function' : modifiers not allowed on nonmember functions +## Remarks + A nonmember function is declared with [const](../../cpp/const-cpp.md), [volatile](../../cpp/volatile-cpp.md), or another memory-model modifier. +## Example + The following sample generates C2270: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md index e23a47bd36..f4078a960c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md @@ -10,8 +10,12 @@ ms.assetid: ea47bf57-f55d-4171-8e98-95a71d62820e > 'operator' : new/delete cannot have formal list modifiers +## Remarks + The operator (**`new`** or **`delete`**) is declared with a memory-model specifier. +## Example + The following sample generates C2271: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md index a6fe45a754..a6d77a74cc 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md @@ -10,8 +10,12 @@ ms.assetid: 1517706a-9c27-452e-9b10-3424b3d232bc > 'function' : modifiers not allowed on static member functions +## Remarks + A **`static`** member function is declared with a memory-model specifier, such as [const](../../cpp/const-cpp.md) or [volatile](../../cpp/volatile-cpp.md), and such modifiers are not allowed on **`static`** member functions. +## Example + The following sample generates C2272: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md index 2c78a44387..6f7d722211 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md @@ -10,10 +10,14 @@ ms.assetid: 3c682c66-97bf-4a23-a22c-d9a26a92bf95 > 'type' : illegal as right side of '->' operator +## Remarks + A type appears as the right operand of a `->` operator. This error can be caused by trying to access a user-defined type conversion. Use the keyword **`operator`** between -> and `type`. +## Example + The following sample generates C2273: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md index b670f40347..e3d3bbf516 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md @@ -10,10 +10,14 @@ ms.assetid: 8e874903-f499-45ef-8291-f821eee4cc1c > 'type' : illegal as right side of '.' operator +## Remarks + A type appears as the right operand of a member-access (.) operator. This error can be caused by trying to access a user-defined type conversion. Use the keyword **`operator`** between the period and `type`. +## Example + The following sample generates C2286: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md index 0948c93d6a..7a482e8873 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md @@ -10,8 +10,12 @@ ms.assetid: c1eafa71-48de-46e0-82f3-b575538ef205 > 'identifier' : illegal use of this type as an expression +## Remarks + An expression uses the `->` operator with a **`typedef`** identifier. +## Example + The following sample generates C2275: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md index b6fe542bb7..d564a81429 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md @@ -9,10 +9,10 @@ helpviewer_keywords: ["C2276"] > '*operator*' : illegal operation on bound member function expression -The compiler found a problem with the syntax used to create a pointer-to-member. - ## Remarks +The compiler found a problem with the syntax used to create a pointer-to-member. + Error `C2276` is often caused when you attempt to create a pointer-to-member by using an instance variable to qualify the member, instead of a class type. You may also see this error if you're trying to call a member function by using the wrong syntax. ## Example diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md index 7de82b48d4..8f613cea95 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md @@ -10,8 +10,12 @@ ms.assetid: 15a83b07-8731-4524-810b-267f65a7844f > 'identifier' : cannot take address of this member function +## Remarks + You cannot take the address of a member function. +## Example + The following sample generates C2277: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md index a2593950f7..46fd1de9e7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md @@ -10,8 +10,12 @@ ms.assetid: 1b5c88ef-2336-49b8-9ddb-d61f97c73e14 > exception specification cannot appear in a typedef declaration +## Remarks + Under **/Za**, [exception specifications](../../cpp/exception-specifications-throw-cpp.md) are not allowed in a typedef declaration. +## Example + The following sample generates C2279: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md index 0ffdaaac91..f909de6644 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md @@ -10,6 +10,8 @@ ms.assetid: e6c5b1fb-2b9b-4554-8ff9-775eeb37161b > '*declaration*': attempting to reference a deleted function +## Remarks + The compiler detected an attempt to reference a `deleted` function. This error can be caused by a call to a member function that has been explicitly marked as `= deleted` in the source code. This error can also be caused by a call to an implicit special member function of a struct or class that is automatically declared and marked as `deleted` by the compiler. For more information about when the compiler automatically generates **`default`** or `deleted` special member functions, see [Special member functions](../../cpp/special-member-functions.md). ## Example: Explicitly deleted functions diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md index 52b1375800..457c2ac518 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2283"] > '*identifier*': pure specifier or abstract override specifier not allowed on unnamed struct +## Remarks + A member function of an unnamed class or structure is declared with a pure specifier, which is not permitted. +## Example + The following sample generates C2283: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md index dad0f15a6c..4b095d4fca 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md @@ -10,4 +10,6 @@ ms.assetid: 7b40a1b0-f477-49fa-b762-c3bccd88514e > pointers to members representation has already been determined - pragma ignored +## Remarks + Two different representations exist for class. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md index da5d13bb9f..38f2682e63 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md @@ -10,6 +10,8 @@ ms.assetid: 078e0201-35cc-42e2-8dbc-6f8cf557b098 > pointers to members of 'identifier' representation is already set to 'inheritance' - declaration ignored +## Remarks + Two different pointer-to-members representations exist for class. For more information, see [Inheritance Keywords](../../cpp/inheritance-keywords.md). diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md index 6a4c765554..90eba186ca 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md @@ -10,8 +10,12 @@ ms.assetid: 64556299-4e1f-4437-88b7-2464fc0b95bb > 'class': inheritance representation: 'representation1' is less general than the required 'representation2' +## Remarks + A class is declared with a simpler representation than required. +## Example + The following sample generates C2287: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md index 2141e920db..85b9002aaf 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md @@ -10,8 +10,12 @@ ms.assetid: cb41a29e-1b06-47dc-bfce-8d73bd63a0df > same type qualifier used more than once +## Remarks + A type declaration or definition uses a type qualifier (**`const`**, **`volatile`**, **`signed`**, or **`unsigned`**) more than once, causing an error under ANSI compatibility (**/Za**). +## Example + The following sample generates C2286: ```cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md index 5b12572999..6d040d3b2a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md @@ -10,4 +10,6 @@ ms.assetid: 78c0feec-ccde-401b-8335-5b6ea6be8a13 > C++ asm syntax ignored. Use __asm. +## Remarks + The **`asm`** syntax is reserved for future use. From 5a2e726a84e599f2dd64adac55120dbef1aae2a6 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 21 Jul 2025 22:32:48 +0800 Subject: [PATCH 913/981] Replace term "sample" with "example" for error references in range [C2261, C2290] --- docs/error-messages/compiler-errors-1/compiler-error-c2261.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2262.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2264.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2267.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2268.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2270.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2271.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2272.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2273.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2274.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2275.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2276.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2277.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2279.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2283.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2286.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2287.md | 2 +- docs/error-messages/compiler-errors-1/compiler-error-c2289.md | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md index 4de84ccc6e..4c31a13530 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md @@ -20,7 +20,7 @@ For more on the correct syntax when specifying friend assemblies, see [Friend As ## Example -The following sample generates C2261. +The following example generates C2261. ```cpp // C2261.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md index ea89e15d34..759b176be2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md @@ -16,7 +16,7 @@ The attribute ## Example -The following sample generates C2262. +The following example generates C2262. ```cpp // C2262.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md index 03b2a6fc83..a5afdee353 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md @@ -16,7 +16,7 @@ The function cannot be called due to an incorrect definition or declaration. ## Example -The following sample generates C2264: +The following example generates C2264: ```cpp // C2264.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md index b1616b6fba..0bce7e93ff 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md @@ -16,7 +16,7 @@ A local function is declared **`static`**. Static functions must have global sco ## Example -The following sample generates C2267: +The following example generates C2267: ```cpp // C2267.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md index 378638e69e..e7e8fa4de7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md @@ -16,7 +16,7 @@ A function defined in your source code has the same name as an internal compiler ## Example -The following sample generates C2268: +The following example generates C2268: ```c // C2268.c diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md index b92e5ca856..5370292d09 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md @@ -16,7 +16,7 @@ A nonmember function is declared with [const](../../cpp/const-cpp.md), [volatile ## Example -The following sample generates C2270: +The following example generates C2270: ```cpp // C2270.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md index f4078a960c..b0d632d3f2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md @@ -16,7 +16,7 @@ The operator (**`new`** or **`delete`**) is declared with a memory-model specifi ## Example -The following sample generates C2271: +The following example generates C2271: ```cpp // C2271.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md index a6d77a74cc..8e8057c810 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md @@ -16,7 +16,7 @@ A **`static`** member function is declared with a memory-model specifier, such a ## Example -The following sample generates C2272: +The following example generates C2272: ```cpp // C2272.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md index 6f7d722211..a52ccb9bf4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md @@ -18,7 +18,7 @@ This error can be caused by trying to access a user-defined type conversion. Use ## Example -The following sample generates C2273: +The following example generates C2273: ```cpp // C2273.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md index e3d3bbf516..fc8d2e9f3d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md @@ -18,7 +18,7 @@ This error can be caused by trying to access a user-defined type conversion. Use ## Example -The following sample generates C2286: +The following example generates C2286: ```cpp // C2274.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md index 7a482e8873..57a53d295a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md @@ -16,7 +16,7 @@ An expression uses the `->` operator with a **`typedef`** identifier. ## Example -The following sample generates C2275: +The following example generates C2275: ```cpp // C2275.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md index d564a81429..3c9410edcd 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md @@ -17,7 +17,7 @@ Error `C2276` is often caused when you attempt to create a pointer-to-member by ## Example -This sample shows several ways C2276 may occur, and how to fix them: +This example shows several ways C2276 may occur, and how to fix them: ```cpp // C2276.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md index 8f613cea95..e04c0ddce2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md @@ -16,7 +16,7 @@ You cannot take the address of a member function. ## Example -The following sample generates C2277: +The following example generates C2277: ```cpp // C2277.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md index 46fd1de9e7..7a4f33b9e5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md @@ -16,7 +16,7 @@ Under **/Za**, [exception specifications](../../cpp/exception-specifications-thr ## Example -The following sample generates C2279: +The following example generates C2279: ```cpp // C2279.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md index 457c2ac518..f399bc8b8a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md @@ -15,7 +15,7 @@ A member function of an unnamed class or structure is declared with a pure speci ## Example -The following sample generates C2283: +The following example generates C2283: ```cpp // C2283.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md index 38f2682e63..e8288d18f0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md @@ -18,7 +18,7 @@ For more information, see [Inheritance Keywords](../../cpp/inheritance-keywords. ## Example -The following sample generates C2286: +The following example generates C2286: ```cpp // C2286.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md index 90eba186ca..1fa625d536 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md @@ -16,7 +16,7 @@ A class is declared with a simpler representation than required. ## Example -The following sample generates C2287: +The following example generates C2287: ```cpp // C2287.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md index 85b9002aaf..b2db59cb3f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md @@ -16,7 +16,7 @@ A type declaration or definition uses a type qualifier (**`const`**, **`volatile ## Example -The following sample generates C2286: +The following example generates C2286: ```cpp // C2289.cpp From d79e4b198150e52721b5b11ba5257f90bbf8f29f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 21 Jul 2025 22:36:18 +0800 Subject: [PATCH 914/981] Update metadata for error references in range [C2261, C2290] --- .../error-messages/compiler-errors-1/compiler-error-c2261.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2262.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2264.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2266.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2267.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2268.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2270.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2271.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2272.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2273.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2274.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2275.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2276.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2277.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2279.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2280.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2283.md | 2 +- .../error-messages/compiler-errors-1/compiler-error-c2285.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2286.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2287.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2289.md | 5 ++--- .../error-messages/compiler-errors-1/compiler-error-c2290.md | 5 ++--- 22 files changed, 42 insertions(+), 62 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md index 4c31a13530..3c27593063 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2261.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2261.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2261" title: "Compiler Error C2261" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2261" +ms.date: 11/04/2016 f1_keywords: ["C2261"] helpviewer_keywords: ["C2261"] -ms.assetid: 60969482-9e83-49b5-9631-a04bc844da12 --- # Compiler Error C2261 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md index 759b176be2..752d2409f8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2262.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2262.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2262" title: "Compiler Error C2262" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2262" +ms.date: 11/04/2016 f1_keywords: ["C2262"] helpviewer_keywords: ["C2262"] -ms.assetid: 727d1c6e-53e8-40e5-b7b8-6a7ac2011727 --- # Compiler Error C2262 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md index a5afdee353..915f27a906 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2264.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2264.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2264" title: "Compiler Error C2264" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2264" +ms.date: 11/04/2016 f1_keywords: ["C2264"] helpviewer_keywords: ["C2264"] -ms.assetid: 158b72cc-cee9-4a08-bd79-b7a5955345a8 --- # Compiler Error C2264 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md index 32e2c9840b..ecd97db4e0 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2266.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2266.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2266" title: "Compiler Error C2266" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2266" +ms.date: 11/04/2016 f1_keywords: ["C2266"] helpviewer_keywords: ["C2266"] -ms.assetid: 5c267a67-d5a1-4ad7-b6f7-a156510aee35 --- # Compiler Error C2266 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md index 0bce7e93ff..2393a3ecdb 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2267.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2267.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2267" title: "Compiler Error C2267" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2267" +ms.date: 11/04/2016 f1_keywords: ["C2267"] helpviewer_keywords: ["C2267"] -ms.assetid: ea63bebb-6208-4367-8440-39be07f9c360 --- # Compiler Error C2267 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md index e7e8fa4de7..6c77ca44b4 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2268.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2268.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2268" title: "Compiler Error C2268" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2268" +ms.date: 11/04/2016 f1_keywords: ["C2268"] helpviewer_keywords: ["C2268"] -ms.assetid: 0ed055c9-3c6f-4df2-a5b6-85cf0e01a249 --- # Compiler Error C2268 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md index 5370292d09..d6400d6643 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2270.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2270.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2270" title: "Compiler Error C2270" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2270" +ms.date: 11/04/2016 f1_keywords: ["C2270"] helpviewer_keywords: ["C2270"] -ms.assetid: b52c068e-0b61-42e7-b775-4d57b3ddcba0 --- # Compiler Error C2270 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md index b0d632d3f2..5cd706b293 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2271.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2271.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2271" title: "Compiler Error C2271" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2271" +ms.date: 11/04/2016 f1_keywords: ["C2271"] helpviewer_keywords: ["C2271"] -ms.assetid: ea47bf57-f55d-4171-8e98-95a71d62820e --- # Compiler Error C2271 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md index 8e8057c810..b8915aeab7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2272.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2272.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2272" title: "Compiler Error C2272" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2272" +ms.date: 11/04/2016 f1_keywords: ["C2272"] helpviewer_keywords: ["C2272"] -ms.assetid: 1517706a-9c27-452e-9b10-3424b3d232bc --- # Compiler Error C2272 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md index a52ccb9bf4..c1bc46a2c6 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2273.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2273.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2273" title: "Compiler Error C2273" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2273" +ms.date: 11/04/2016 f1_keywords: ["C2273"] helpviewer_keywords: ["C2273"] -ms.assetid: 3c682c66-97bf-4a23-a22c-d9a26a92bf95 --- # Compiler Error C2273 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md index fc8d2e9f3d..67e054c561 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2274" title: "Compiler Error C2274" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2274" +ms.date: 11/04/2016 f1_keywords: ["C2274"] helpviewer_keywords: ["C2274"] -ms.assetid: 8e874903-f499-45ef-8291-f821eee4cc1c --- # Compiler Error C2274 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md index 57a53d295a..b4a3a21d31 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2275.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2275.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2275" title: "Compiler Error C2275" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2275" +ms.date: 11/04/2016 f1_keywords: ["C2275"] helpviewer_keywords: ["C2275"] -ms.assetid: c1eafa71-48de-46e0-82f3-b575538ef205 --- # Compiler Error C2275 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md index 3c9410edcd..e583d2541c 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2276.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2276.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: Compiler Error C2276" title: "Compiler Error C2276" +description: "Learn more about: Compiler Error C2276" ms.date: 03/25/2021 f1_keywords: ["C2276"] helpviewer_keywords: ["C2276"] diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md index e04c0ddce2..1f56b60b30 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2277.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2277.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2277" title: "Compiler Error C2277" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2277" +ms.date: 11/04/2016 f1_keywords: ["C2277"] helpviewer_keywords: ["C2277"] -ms.assetid: 15a83b07-8731-4524-810b-267f65a7844f --- # Compiler Error C2277 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md index 7a4f33b9e5..0591321c48 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2279.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2279.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2279" title: "Compiler Error C2279" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2279" +ms.date: 11/04/2016 f1_keywords: ["C2279"] helpviewer_keywords: ["C2279"] -ms.assetid: 1b5c88ef-2336-49b8-9ddb-d61f97c73e14 --- # Compiler Error C2279 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md index f909de6644..c952f212b5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2280.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2280.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2280" title: "Compiler Error C2280" -ms.date: "04/25/2017" +description: "Learn more about: Compiler Error C2280" +ms.date: 04/25/2017 f1_keywords: ["C2280"] helpviewer_keywords: ["C2280"] -ms.assetid: e6c5b1fb-2b9b-4554-8ff9-775eeb37161b --- # Compiler Error C2280 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md index f399bc8b8a..8f402a366e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2283.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2283.md @@ -1,7 +1,7 @@ --- title: "Compiler Error C2283" description: "Learn more about: Compiler Error C2283" -ms.date: "11/04/2016" +ms.date: 11/04/2016 f1_keywords: ["C2283"] helpviewer_keywords: ["C2283"] --- diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md index 4b095d4fca..d11de7e744 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2285.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2285.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2285" title: "Compiler Error C2285" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2285" +ms.date: 11/04/2016 f1_keywords: ["C2285"] helpviewer_keywords: ["C2285"] -ms.assetid: 7b40a1b0-f477-49fa-b762-c3bccd88514e --- # Compiler Error C2285 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md index e8288d18f0..81e52facd8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2286.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2286.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2286" title: "Compiler Error C2286" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2286" +ms.date: 11/04/2016 f1_keywords: ["C2286"] helpviewer_keywords: ["C2286"] -ms.assetid: 078e0201-35cc-42e2-8dbc-6f8cf557b098 --- # Compiler Error C2286 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md index 1fa625d536..5028b594ce 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2287.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2287.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2287" title: "Compiler Error C2287" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2287" +ms.date: 11/04/2016 f1_keywords: ["C2287"] helpviewer_keywords: ["C2287"] -ms.assetid: 64556299-4e1f-4437-88b7-2464fc0b95bb --- # Compiler Error C2287 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md index b2db59cb3f..dd43552c14 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2289" title: "Compiler Error C2289" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2289" +ms.date: 11/04/2016 f1_keywords: ["C2289"] helpviewer_keywords: ["C2289"] -ms.assetid: cb41a29e-1b06-47dc-bfce-8d73bd63a0df --- # Compiler Error C2289 diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md index 6d040d3b2a..5742c5e234 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2290.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2290.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2290" title: "Compiler Error C2290" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2290" +ms.date: 11/04/2016 f1_keywords: ["C2290"] helpviewer_keywords: ["C2290"] -ms.assetid: 78c0feec-ccde-401b-8335-5b6ea6be8a13 --- # Compiler Error C2290 From 972ac7e7f03cbbe29abfe1c67ebc23771e6d4638 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 22 Jul 2025 14:42:33 -0700 Subject: [PATCH 915/981] test uat tool --- docs/assembler/masm/dot-fpo.md | 27 +++++++++--------- ...ing-the-format-of-netmodule-input-files.md | 23 ++++++++------- docs/build/reference/ln-create-msil-module.md | 19 ++++++------- .../safe-cast-cpp-component-extensions.md | 28 +++++++++---------- 4 files changed, 46 insertions(+), 51 deletions(-) diff --git a/docs/assembler/masm/dot-fpo.md b/docs/assembler/masm/dot-fpo.md index 0e523fb9bf..7c70aab623 100644 --- a/docs/assembler/masm/dot-fpo.md +++ b/docs/assembler/masm/dot-fpo.md @@ -4,35 +4,34 @@ title: ".FPO" ms.date: "11/05/2019" f1_keywords: [".FPO"] helpviewer_keywords: [".FPO directive"] -ms.assetid: 35f4cd61-32f9-4262-b657-73f04f775d09 --- # .FPO (32-bit MASM) -The **.FPO** directive controls the emission of debug records to the .debug$F segment or section. (32-bit MASM only.) +The `.FPO` directive controls the emission of debug records to the `.debug$F` segment or section. Use this directive with 32-bit MASM only. ## Syntax -> **.FPO** (*cdwLocals*, *cdwParams*, *cbProlog*, *cbRegs*, *fUseBP*, *cbFrame*) +> `.FPO` (*`cdwLocals`*, *`cdwParams`*, *`cbProlog`*, *`cbRegs`*, *`fUseBP`*, *`cbFrame`*) ### Parameters -*cdwLocals*\ -Number of local variables, an unsigned 32 bit value. +*`cdwLocals`*\ +Number of local variables, an unsigned 32-bit value. -*cdwParams*\ -Size of the parameters in DWORDS, an unsigned 16 bit value. +*`cdwParams`*\ +Size of the parameters in DWORDS, an unsigned 16-bit value. -*cbProlog*\ -Number of bytes in the function prolog code, an unsigned 8 bit value. +*`cbProlog`*\ +Number of bytes in the function prolog code, an unsigned 8-bit value. -*cbRegs*\ +*`cbRegs`*\ Number registers saved. -*fUseBP*\ -Indicates whether the EBP register has been allocated. either 0 or 1. +*`fUseBP`*\ +Indicates whether the EBP register is allocated. Use either 0 or 1. -*cbFrame*\ -Indicates the frame type. See [FPO_DATA](/windows/win32/api/winnt/ns-winnt-fpo_data) for more information. +*`cbFrame`*\ +Indicates the frame type. For more information, see [`FPO_DATA`](/windows/win32/api/winnt/ns-winnt-fpo_data). ## See also diff --git a/docs/build/reference/choosing-the-format-of-netmodule-input-files.md b/docs/build/reference/choosing-the-format-of-netmodule-input-files.md index 708f741e6a..5848e0a8ce 100644 --- a/docs/build/reference/choosing-the-format-of-netmodule-input-files.md +++ b/docs/build/reference/choosing-the-format-of-netmodule-input-files.md @@ -2,32 +2,31 @@ description: "Learn more about: Choosing the Format of .netmodule Input Files" title: "Choosing the Format of .netmodule Input Files" ms.date: "11/04/2016" -ms.assetid: 4653d1bd-300f-4083-86f5-d1a06f44e61c --- -# Choosing the Format of .netmodule Input Files +# Choosing the format of .netmodule input files -An MSIL .obj file (compiled with [/clr](clr-common-language-runtime-compilation.md)) can also be used as a .netmodule file. .obj files contain metadata and native symbols. .netmodules only contain metadata. +You can use an MSIL `.obj` file (compiled with [`/clr`](clr-common-language-runtime-compilation.md)) as a `.netmodule` file. `.obj` files contain metadata and native symbols. `.netmodules` only contain metadata. -You can pass an MSIL .obj file to any other Visual Studio compiler via the /addmodule compiler option (but be aware that the .obj file becomes part of the resulting assembly and must be shipped with the assembly). For example, Visual C# and Visual Basic have the /addmodule compiler option. +Pass an MSIL `.obj` file to any other Visual Studio compiler with the `/addmodule` compiler option. Be aware that the `.obj` file becomes part of the resulting assembly and must be shipped with the assembly. For example, Visual C# and Visual Basic have the `/addmodule` compiler option. > [!NOTE] -> In most cases, you will need to pass to the linker the .obj file from the compilation that created the .net module. Passing a .dll or .netmodule MSIL module file to the linker may result in LNK1107. +> In most cases, you need to pass to the linker the `.obj` file from the compilation that created the .net module. Passing a `.dll` or `.netmodule` MSIL module file to the linker might result in LNK1107. -.obj files, along with their associated .h files, which you reference via #include in source, allow C++ applications to consume the native types in the module, whereas in a .netmodule file, only the managed types can be consumed by a C++ application. If you attempt to pass a .obj file to #using, information about native types will not be available; #include the .obj file's .h file instead. +`.obj` files, along with their associated `.h` files, which you reference via #include in source, allow C++ applications to consume the native types in the module. In a `.netmodule` file, only the managed types can be consumed by a C++ application. If you attempt to pass a `.obj` file to #using, information about native types isn't available. Instead, #include the `.obj` file's `.h` file. Other Visual Studio compilers can only consume managed types from a module. -Use the following to determine whether you need to use a .netmodule or a .obj file as module input to the MSVC linker: +Use the following guidance to determine whether you need to use a `.netmodule` or a `.obj` file as module input to the MSVC linker: -- If you are building with a Visual Studio compiler other than Visual C++, produce a .netmodule and use the .netmodule as input to the linker. +- If you're building with a Visual Studio compiler other than Visual C++, produce a `.netmodule` and use the `.netmodule` as input to the linker. -- If you are using the MSVC compiler to produce modules and if the module(s) will be used to build something other than a library, use the .obj files produced by the compiler as module input to the linker; do not use the .netmodule file as input. +- If you're using the MSVC compiler to produce modules and if the modules will be used to build something other than a library, use the `.obj` files produced by the compiler as module input to the linker. Don't use the `.netmodule` file as input. -- If your modules will be used to build a native (not a managed) library, use .obj files as module input to the linker and generate a .lib library file. +- If your modules will be used to build a native (not a managed) library, use `.obj` files as module input to the linker and generate a `.lib` library file. -- If your modules will be used to build a managed library, and if all module input to the linker will be verifiable (produced with /clr:safe), use .obj files as module input to the linker and generate a .dll (assembly) or .netmodule (module) library file. +- If your modules will be used to build a managed library, and if all module input to the linker is verifiable (produced with `/clr:safe`), use `.obj` files as module input to the linker and generate a `.dll` (assembly) or `.netmodule` (module) library file. -- If your modules will be used to build a managed library, and if one or more modules input to the linker will be produced with just /clr, use .obj files as module input to the linker and generate a .dll (assembly). If you want to expose managed types from the library and if you also want C++ applications to consume the native types in the library, your library will consist of the .obj files for the libraries component modules (you will also want to ship the .h files for each module, so they can be referenced with #include from source code). +- If your modules will be used to build a managed library, and if one or more modules input to the linker are produced with just `/clr`, use `.obj` files as module input to the linker and generate a `.dll` (assembly). If you want to expose managed types from the library and if you also want C++ applications to consume the native types in the library, your library consists of the `.obj` files for the libraries component modules. You also want to ship the `.h` files for each module, so they can be referenced with #include from source code. ## See also diff --git a/docs/build/reference/ln-create-msil-module.md b/docs/build/reference/ln-create-msil-module.md index c1a892c54b..b281c6123e 100644 --- a/docs/build/reference/ln-create-msil-module.md +++ b/docs/build/reference/ln-create-msil-module.md @@ -4,11 +4,10 @@ title: "/LN (Create MSIL Module)" ms.date: "11/04/2016" f1_keywords: ["/LN"] helpviewer_keywords: ["-LN compiler option [C++]", "/LN compiler option [C++]"] -ms.assetid: 4f38f4f4-3176-4caf-8200-5c7585dc1ed3 --- # /LN (Create MSIL Module) -Specifies that an assembly manifest should not be inserted into the output file. +Specifies that the compiler shouldn't insert an assembly manifest into the output file. ## Syntax @@ -18,19 +17,19 @@ Specifies that an assembly manifest should not be inserted into the output file. ## Remarks -By default, **/LN** is not in effect (an assembly manifest is inserted into the output file). +By default, `/LN` isn't in effect, and the compiler inserts an assembly manifest into the output file. -When **/LN** is used, one of the [/clr (Common Language Runtime Compilation)](clr-common-language-runtime-compilation.md) options must also be used. +When you use `/LN`, you must also use one of the [/clr (Common Language Runtime Compilation)](clr-common-language-runtime-compilation.md) options. -A managed program that does not have an assembly metadata in the manifest is called a module. If you compile with [/c (Compile Without Linking)](c-compile-without-linking.md) and **/LN**, specify [/NOASSEMBLY (Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. +A managed program that doesn't have assembly metadata in the manifest is called a module. If you compile with [/c (Compile Without Linking)](c-compile-without-linking.md) and `/LN`, specify [/NOASSEMBLY (Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. -You may want to create modules if you want to take a component-based approach to building assemblies. That is, you can author types and compile them into modules. Then, you can generate an assembly from one or more modules. For more information on creating assemblies from modules, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md) or [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). +Create modules if you want to take a component-based approach to building assemblies. You can author types and compile them into modules. Then, you can generate an assembly from one or more modules. For more information on creating assemblies from modules, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md) or [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). -The default file extension for a module is .netmodule. +The default file extension for a module is `.netmodule`. -In releases before Visual Studio 2005, a module was created with **/clr:noAssembly**. +In releases before Visual Studio 2005, you created a module with `/clr:noAssembly`. -The MSVC linker accepts .netmodule files as input and the output file produced by the linker will be an assembly or .netmodule with no run-time dependence on any of the .netmodules that were input to the linker. For more information, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md). +The MSVC linker accepts `.netmodule` files as input. The output file produced by the linker is an assembly or `.netmodule` with no run-time dependence on any of the `.netmodule`s that you input to the linker. For more information, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md). ### To set this compiler option in the Visual Studio development environment @@ -38,7 +37,7 @@ The MSVC linker accepts .netmodule files as input and the output file produced b ### To set this compiler option programmatically -- This compiler option cannot be changed programmatically. +- You can't change this compiler option programmatically. ## See also diff --git a/docs/extensions/safe-cast-cpp-component-extensions.md b/docs/extensions/safe-cast-cpp-component-extensions.md index 800fe8605f..e17456a642 100644 --- a/docs/extensions/safe-cast-cpp-component-extensions.md +++ b/docs/extensions/safe-cast-cpp-component-extensions.md @@ -5,11 +5,10 @@ ms.date: "10/12/2018" ms.topic: "reference" f1_keywords: ["safe_cast", "safe_cast_cpp", "stdcli::language::safe_cast"] helpviewer_keywords: ["safe_cast keyword [C++]"] -ms.assetid: 4fa688bf-a8ec-49bc-a4c5-f48134efa4f7 --- # safe_cast (C++/CLI and C++/CX) -The **safe_cast** operation returns the specified expression as the specified type, if successful; otherwise, throws `InvalidCastException`. +The **`safe_cast`** operation returns the specified expression as the specified type. If the operation isn't successful, it throws an `InvalidCastException`. ## All Runtimes @@ -23,7 +22,7 @@ The **safe_cast** operation returns the specified expression as the specified ty ## Windows Runtime -**safe_cast** allows you to change the type of a specified expression. In situations where you fully expect a variable or parameter to be convertible to a certain type, you can use **safe_cast** without a **try-catch** block to detect programming errors during development. For more information, see [Casting (C++/CX)](../cppcx/casting-c-cx.md). +Use **`safe_cast`** to change the type of a specified expression. If you expect a variable or parameter to be convertible to a certain type, use **`safe_cast`** without a **try-catch** block to detect programming errors during development. For more information, see [Casting (C++/CX)](../cppcx/casting-c-cx.md). ### Syntax @@ -41,7 +40,7 @@ An expression that evaluates to a handle to a reference or value type, a value t ### Remarks -**safe_cast** throws `InvalidCastException` if it cannot convert *expression* to the type specified by *type-id*. To catch `InvalidCastException`, specify the [/EH (Exception Handling Model)](../build/reference/eh-exception-handling-model.md) compiler option, and use a **try/catch** statement. +**`safe_cast`** throws `InvalidCastException` if it can't convert *expression* to the type specified by *type-id*. To catch `InvalidCastException`, specify the [/EH (Exception Handling Model)](../build/reference/eh-exception-handling-model.md) compiler option, and use a **try/catch** statement. ### Requirements @@ -49,7 +48,7 @@ Compiler option: `/ZW` ### Examples -The following code example demonstrates how to use **safe_cast** with the Windows Runtime. +The following code example demonstrates how to use **`safe_cast`** with the Windows Runtime. ```cpp // safe_cast_ZW.cpp @@ -83,7 +82,7 @@ Caught expected exception: InvalidCastException ## Common Language Runtime -**safe_cast** allows you to change the type of an expression and generate verifiable MSIL code. +**`safe_cast`** changes the type of an expression and generates verifiable MSIL code. ### Syntax @@ -93,30 +92,29 @@ Caught expected exception: InvalidCastException ### Parameters -*type-id*
+*`type-id`*\ A handle to a reference or value type, a value type, or a tracking reference to a reference or value type. -*expression*
+*`expression`* An expression that evaluates to a handle to a reference or value type, a value type, or a tracking reference to a reference or value type. ### Remarks The expression `safe_cast<`*type-id*`>(`*expression*`)` converts the operand *expression* to an object of type *type-id*. -The compiler will accept a [static_cast](../cpp/static-cast-operator.md) in most places that it will accept a **safe_cast**. However, **safe_cast** is guaranteed to produce verifiable MSIL, whereas a **`static_cast`** could produce unverifiable MSIL. See [Pure and Verifiable Code (C++/CLI)](../dotnet/pure-and-verifiable-code-cpp-cli.md) and [Peverify.exe (PEVerify Tool)](/dotnet/framework/tools/peverify-exe-peverify-tool) for more information on verifiable code. +The compiler accepts a [`static_cast`](../cpp/static-cast-operator.md) in most places that it accepts a **`safe_cast`**. However, **`safe_cast`** always produces verifiable MSIL, whereas a **`static_cast`** might produce unverifiable MSIL. For more information on verifiable code, see [Pure and Verifiable Code (C++/CLI)](../dotnet/pure-and-verifiable-code-cpp-cli.md) and [`Peverify.exe` (PEVerify Tool)](/dotnet/framework/tools/peverify-exe-peverify-tool). -Like **`static_cast`**, **safe_cast** invokes user-defined conversions. +Like **`static_cast`**, **`safe_cast`** invokes user-defined conversions. For more information about casts, see [Casting Operators](../cpp/casting-operators.md). -**safe_cast** does not apply a **`const_cast`** (cast away **`const`**). +**`safe_cast`** doesn't apply a **`const_cast`** (cast away **`const`**). -**safe_cast** is in the cli namespace. See [Platform, default, and cli Namespaces](platform-default-and-cli-namespaces-cpp-component-extensions.md) for more information. +**`safe_cast`** is in the cli namespace. For more information, see [Platform, default, and cli Namespaces](platform-default-and-cli-namespaces-cpp-component-extensions.md). -For more information on **safe_cast**, see: +For more information on **`safe_cast`**, see: - [C-Style Casts with /clr (C++/CLI)](c-style-casts-with-clr-cpp-cli.md) - - [How to: Use safe_cast in C++/CLI](../dotnet/how-to-use-safe-cast-in-cpp-cli.md) ### Requirements @@ -125,7 +123,7 @@ Compiler option: `/clr` ### Examples -One example of where the compiler will not accept a **`static_cast`** but will accept a **safe_cast** is for casts between unrelated interface types. With **safe_cast**, the compiler will not issue a conversion error and will perform a check at runtime to see if the cast is possible +One example of where the compiler doesn't accept a **`static_cast`** but accepts a **`safe_cast`** is for casts between unrelated interface types. With **`safe_cast`**, the compiler doesn't issue a conversion error and performs a check at runtime to see if the cast is possible. ```cpp // safe_cast.cpp From 9534150c2ad1465caaf968c5043dfbc0980ddacc Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 22 Jul 2025 15:47:44 -0700 Subject: [PATCH 916/981] acrolinx cleanup --- .../choosing-the-format-of-netmodule-input-files.md | 10 +++++----- docs/build/reference/ln-create-msil-module.md | 8 ++++---- docs/extensions/safe-cast-cpp-component-extensions.md | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/build/reference/choosing-the-format-of-netmodule-input-files.md b/docs/build/reference/choosing-the-format-of-netmodule-input-files.md index 5848e0a8ce..86c167a0fb 100644 --- a/docs/build/reference/choosing-the-format-of-netmodule-input-files.md +++ b/docs/build/reference/choosing-the-format-of-netmodule-input-files.md @@ -7,7 +7,7 @@ ms.date: "11/04/2016" You can use an MSIL `.obj` file (compiled with [`/clr`](clr-common-language-runtime-compilation.md)) as a `.netmodule` file. `.obj` files contain metadata and native symbols. `.netmodules` only contain metadata. -Pass an MSIL `.obj` file to any other Visual Studio compiler with the `/addmodule` compiler option. Be aware that the `.obj` file becomes part of the resulting assembly and must be shipped with the assembly. For example, Visual C# and Visual Basic have the `/addmodule` compiler option. +Pass an MSIL `.obj` file to any other Visual Studio compiler with the `/addmodule` compiler option. The `.obj` file becomes part of the resulting assembly and must be shipped with the assembly. For example, Visual C# and Visual Basic have the `/addmodule` compiler option. > [!NOTE] > In most cases, you need to pass to the linker the `.obj` file from the compilation that created the .net module. Passing a `.dll` or `.netmodule` MSIL module file to the linker might result in LNK1107. @@ -20,13 +20,13 @@ Use the following guidance to determine whether you need to use a `.netmodule` o - If you're building with a Visual Studio compiler other than Visual C++, produce a `.netmodule` and use the `.netmodule` as input to the linker. -- If you're using the MSVC compiler to produce modules and if the modules will be used to build something other than a library, use the `.obj` files produced by the compiler as module input to the linker. Don't use the `.netmodule` file as input. +- If you're using the MSVC compiler to produce modules and if the modules are used to build something other than a library, use the `.obj` files produced by the compiler as module input to the linker. Don't use the `.netmodule` file as input. -- If your modules will be used to build a native (not a managed) library, use `.obj` files as module input to the linker and generate a `.lib` library file. +- If your modules are used to build a native (not a managed) library, use `.obj` files as module input to the linker and generate a `.lib` library file. -- If your modules will be used to build a managed library, and if all module input to the linker is verifiable (produced with `/clr:safe`), use `.obj` files as module input to the linker and generate a `.dll` (assembly) or `.netmodule` (module) library file. +- If your modules are used to build a managed library, and if all module input to the linker is verifiable (produced with `/clr:safe`), use `.obj` files as module input to the linker and generate a `.dll` (assembly) or `.netmodule` (module) library file. -- If your modules will be used to build a managed library, and if one or more modules input to the linker are produced with just `/clr`, use `.obj` files as module input to the linker and generate a `.dll` (assembly). If you want to expose managed types from the library and if you also want C++ applications to consume the native types in the library, your library consists of the `.obj` files for the libraries component modules. You also want to ship the `.h` files for each module, so they can be referenced with #include from source code. +- If your modules are used to build a managed library, and if one or more modules input to the linker are produced with just `/clr`, use `.obj` files as module input to the linker and generate a `.dll` (assembly). If you want to expose managed types from the library and if you also want C++ applications to consume the native types in the library, your library consists of the `.obj` files for the libraries component modules. You also want to ship the `.h` files for each module, so they can be referenced with #include from source code. ## See also diff --git a/docs/build/reference/ln-create-msil-module.md b/docs/build/reference/ln-create-msil-module.md index b281c6123e..b5cd351176 100644 --- a/docs/build/reference/ln-create-msil-module.md +++ b/docs/build/reference/ln-create-msil-module.md @@ -21,19 +21,19 @@ By default, `/LN` isn't in effect, and the compiler inserts an assembly manifest When you use `/LN`, you must also use one of the [/clr (Common Language Runtime Compilation)](clr-common-language-runtime-compilation.md) options. -A managed program that doesn't have assembly metadata in the manifest is called a module. If you compile with [/c (Compile Without Linking)](c-compile-without-linking.md) and `/LN`, specify [/NOASSEMBLY (Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. +A managed program that doesn't have assembly metadata in the manifest is called a module. If you compile with [/c (Compile Without Linking)](c-compile-without-linking.md) and `/LN`, specify [`/NOASSEMBLY `(Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. -Create modules if you want to take a component-based approach to building assemblies. You can author types and compile them into modules. Then, you can generate an assembly from one or more modules. For more information on creating assemblies from modules, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md) or [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). +Create modules if you want to take a component-based approach to building assemblies. You can author types and compile them into modules. Then, you can generate an assembly from one or more modules. For more information on creating assemblies from modules, see [`.netmodule` Files as Linker Input](netmodule-files-as-linker-input.md) or [`Al.exe `(Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). The default file extension for a module is `.netmodule`. In releases before Visual Studio 2005, you created a module with `/clr:noAssembly`. -The MSVC linker accepts `.netmodule` files as input. The output file produced by the linker is an assembly or `.netmodule` with no run-time dependence on any of the `.netmodule`s that you input to the linker. For more information, see [.netmodule Files as Linker Input](netmodule-files-as-linker-input.md). +The MSVC linker accepts `.netmodule` files as input. The output file produced by the linker is an assembly or `.netmodule` with no run-time dependence on any of the `.netmodule`s that you input to the linker. For more information, see [`.netmodule `Files as Linker Input](netmodule-files-as-linker-input.md). ### To set this compiler option in the Visual Studio development environment -- Specify [/NOASSEMBLY (Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. +- Specify [`/NOASSEMBLY` (Create a MSIL Module)](noassembly-create-a-msil-module.md) in the linker phase to create the output file. ### To set this compiler option programmatically diff --git a/docs/extensions/safe-cast-cpp-component-extensions.md b/docs/extensions/safe-cast-cpp-component-extensions.md index e17456a642..a35a3a2af9 100644 --- a/docs/extensions/safe-cast-cpp-component-extensions.md +++ b/docs/extensions/safe-cast-cpp-component-extensions.md @@ -102,7 +102,7 @@ An expression that evaluates to a handle to a reference or value type, a value t The expression `safe_cast<`*type-id*`>(`*expression*`)` converts the operand *expression* to an object of type *type-id*. -The compiler accepts a [`static_cast`](../cpp/static-cast-operator.md) in most places that it accepts a **`safe_cast`**. However, **`safe_cast`** always produces verifiable MSIL, whereas a **`static_cast`** might produce unverifiable MSIL. For more information on verifiable code, see [Pure and Verifiable Code (C++/CLI)](../dotnet/pure-and-verifiable-code-cpp-cli.md) and [`Peverify.exe` (PEVerify Tool)](/dotnet/framework/tools/peverify-exe-peverify-tool). +The compiler accepts a [`static_cast`](../cpp/static-cast-operator.md) in most places that it accepts a **`safe_cast`**. However, **`safe_cast`** always produces verifiable MSIL, whereas a **`static_cast`** might produce unverifiable MSIL. For more information on verifiable code, see [Pure and Verifiable Code (C++/CLI)](../dotnet/pure-and-verifiable-code-cpp-cli.md) and [`Peverify.exe` (PEVerify Tool)](/dotnet/framework/tools/peverify-exe-peverify-tool). Like **`static_cast`**, **`safe_cast`** invokes user-defined conversions. @@ -110,7 +110,7 @@ For more information about casts, see [Casting Operators](../cpp/casting-operato **`safe_cast`** doesn't apply a **`const_cast`** (cast away **`const`**). -**`safe_cast`** is in the cli namespace. For more information, see [Platform, default, and cli Namespaces](platform-default-and-cli-namespaces-cpp-component-extensions.md). +**`safe_cast`** is in the cli namespace. For more information, see [Platform, default, and cli Namespaces](platform-default-and-cli-namespaces-cpp-component-extensions.md). For more information on **`safe_cast`**, see: @@ -123,7 +123,7 @@ Compiler option: `/clr` ### Examples -One example of where the compiler doesn't accept a **`static_cast`** but accepts a **`safe_cast`** is for casts between unrelated interface types. With **`safe_cast`**, the compiler doesn't issue a conversion error and performs a check at runtime to see if the cast is possible. +One example of where the compiler doesn't accept a **`static_cast`** but accepts a **`safe_cast`** is for casts between unrelated interface types. With **`safe_cast`**, the compiler doesn't issue a conversion error and performs a check at runtime to see if the cast is possible. ```cpp // safe_cast.cpp From 2505f9d99f8b58f18010712174aafccb9646de8f Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 22 Jul 2025 16:00:36 -0700 Subject: [PATCH 917/981] [tidy] replace `.00` with `.0` --- docs/overview/compiler-versions.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index 57c03deb47..48e8963904 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -86,12 +86,12 @@ The following table lists the Visual C++ compiler `_MSC_VER` for each correspond | Visual Studio 6.0 | 1200 | 6.0 | | Visual Studio .NET 2002 (7.0) | 1300 | 7.0 | | Visual Studio .NET 2003 (7.1) | 1310 | 7.1 | -| Visual Studio 2005 (8.0) | 1400 | 8.00 | -| Visual Studio 2008 (9.0) | 1500 | 9.00 | -| Visual Studio 2010 (10.0) | 1600 | 10.00 | -| Visual Studio 2012 (11.0) | 1700 | 11.00 | -| Visual Studio 2013 (12.0) | 1800 | 12.00 | -| Visual Studio 2015 (14.0) | 1900 | 14.00 | +| Visual Studio 2005 (8.0) | 1400 | 8.0 | +| Visual Studio 2008 (9.0) | 1500 | 9.0 | +| Visual Studio 2010 (10.0) | 1600 | 10.0 | +| Visual Studio 2012 (11.0) | 1700 | 11.0 | +| Visual Studio 2013 (12.0) | 1800 | 12.0 | +| Visual Studio 2015 (14.0) | 1900 | 14.0 | | Visual Studio 2017 RTW (15.0) | 1910 | 14.10 | | Visual Studio 2017 version 15.3 | 1911 | 14.11 | | Visual Studio 2017 version 15.5 | 1912 | 14.12 | From aefc04ac47ff181da793be5cf03d3e72ccec7577 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 22 Jul 2025 16:03:09 -0700 Subject: [PATCH 918/981] [tidy] have the table description list the columns in the same order as they're shown --- docs/overview/compiler-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index 48e8963904..e9455ef10a 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -79,7 +79,7 @@ When the major version changed between Visual Studio 2013 and Visual Studio 2015 An example of a minor change is from Visual Studio 2022 17.1 to Visual Studio 2022 17.2. In that case, `_MSC_VER` changed from 1931 to 1932. -The following table lists the Visual C++ compiler `_MSC_VER` for each corresponding Visual Studio and MSVC toolset release: +The following table lists the Visual Studio version corresponding to each Visual C++ compiler (`_MSC_VER`), and MSVC toolset release: | Visual Studio version | `_MSC_VER` | MSVC toolset version | |--|--|--| From 572dad41bf856c221ee0d7502119756b480ec7c7 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 22 Jul 2025 16:11:46 -0700 Subject: [PATCH 919/981] [tidy] remove bogus comma --- docs/overview/compiler-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/compiler-versions.md b/docs/overview/compiler-versions.md index e9455ef10a..b167daf235 100644 --- a/docs/overview/compiler-versions.md +++ b/docs/overview/compiler-versions.md @@ -79,7 +79,7 @@ When the major version changed between Visual Studio 2013 and Visual Studio 2015 An example of a minor change is from Visual Studio 2022 17.1 to Visual Studio 2022 17.2. In that case, `_MSC_VER` changed from 1931 to 1932. -The following table lists the Visual Studio version corresponding to each Visual C++ compiler (`_MSC_VER`), and MSVC toolset release: +The following table lists the Visual Studio version corresponding to each Visual C++ compiler (`_MSC_VER`) and MSVC toolset release: | Visual Studio version | `_MSC_VER` | MSVC toolset version | |--|--|--| From 799ba57d2bb69449c37f03f13969fe1214fdea3f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 24 Jul 2025 21:21:36 +0800 Subject: [PATCH 920/981] Resolve mismatched "lt" and "gt" operator links --- docs/mfc/windows-sockets-example-of-sockets-using-archives.md | 2 +- docs/parallel/concrt/reference/concurrency-namespace.md | 2 +- docs/standard-library/deque.md | 2 +- docs/standard-library/forward-list.md | 2 +- docs/standard-library/iterator.md | 2 +- docs/standard-library/list.md | 2 +- docs/standard-library/memory.md | 2 +- docs/standard-library/optional.md | 2 +- docs/standard-library/queue.md | 2 +- docs/standard-library/regex.md | 2 +- docs/standard-library/utility.md | 2 +- docs/standard-library/variant.md | 2 +- docs/standard-library/vector.md | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/mfc/windows-sockets-example-of-sockets-using-archives.md b/docs/mfc/windows-sockets-example-of-sockets-using-archives.md index bd76e3b6f3..c97e8c3d0c 100644 --- a/docs/mfc/windows-sockets-example-of-sockets-using-archives.md +++ b/docs/mfc/windows-sockets-example-of-sockets-using-archives.md @@ -50,6 +50,6 @@ For more information, see Windows Sockets Specification: **htonl**, **htons**, * [Windows Sockets in MFC](../mfc/windows-sockets-in-mfc.md)
[CArchive::IsStoring](../mfc/reference/carchive-class.md#isstoring)
[CArchive::operator <<](../mfc/reference/carchive-class.md#operator_lt_lt)
-[CArchive::operator >>](../mfc/reference/carchive-class.md#operator_lt_lt)
+[CArchive::operator >>](../mfc/reference/carchive-class.md#operator_gt_gt)
[CArchive::Flush](../mfc/reference/carchive-class.md#flush)
[CObject::Serialize](../mfc/reference/cobject-class.md#serialize) diff --git a/docs/parallel/concrt/reference/concurrency-namespace.md b/docs/parallel/concrt/reference/concurrency-namespace.md index a336049731..4f5a100c3a 100644 --- a/docs/parallel/concrt/reference/concurrency-namespace.md +++ b/docs/parallel/concrt/reference/concurrency-namespace.md @@ -208,7 +208,7 @@ namespace concurrency; |[operator<=](concurrency-namespace-operators.md#operator_lt_eq)|Tests if the `concurrent_vector` object on the left side of the operator is less than or equal to the `concurrent_vector` object on the right side.| |[operator==](concurrency-namespace-operators.md#operator_eq_eq)|Tests if the `concurrent_vector` object on the left side of the operator is equal to the `concurrent_vector` object on the right side.| |[operator>](concurrency-namespace-operators.md#operator_gt)|Tests if the `concurrent_vector` object on the left side of the operator is greater than the `concurrent_vector` object on the right side.| -|[operator>=](concurrency-namespace-operators.md#operator_lt_eq)|Tests if the `concurrent_vector` object on the left side of the operator is greater than or equal to the `concurrent_vector` object on the right side.| +|[operator>=](concurrency-namespace-operators.md#operator_gt_eq)|Tests if the `concurrent_vector` object on the left side of the operator is greater than or equal to the `concurrent_vector` object on the right side.| ### Constants diff --git a/docs/standard-library/deque.md b/docs/standard-library/deque.md index 4a56c8107b..2f728d94ae 100644 --- a/docs/standard-library/deque.md +++ b/docs/standard-library/deque.md @@ -25,7 +25,7 @@ Defines the container class template deque and several supporting templates. |-|-| |[operator!=](../standard-library/deque-operators.md#op_neq)|Tests if the deque object on the left side of the operator is not equal to the deque object on the right side.| |[operator<](../standard-library/deque-operators.md#op_lt)|Tests if the deque object on the left side of the operator is less than the deque object on the right side.| -|[operator\<=](../standard-library/deque-operators.md#op_gt_eq)|Tests if the deque object on the left side of the operator is less than or equal to the deque object on the right side.| +|[operator\<=](../standard-library/deque-operators.md#op_lt_eq)|Tests if the deque object on the left side of the operator is less than or equal to the deque object on the right side.| |[operator==](../standard-library/deque-operators.md#op_eq_eq)|Tests if the deque object on the left side of the operator is equal to the deque object on the right side.| |[operator>](../standard-library/deque-operators.md#op_gt)|Tests if the deque object on the left side of the operator is greater than the deque object on the right side.| |[operator>=](../standard-library/deque-operators.md#op_gt_eq)|Tests if the deque object on the left side of the operator is greater than or equal to the deque object on the right side.| diff --git a/docs/standard-library/forward-list.md b/docs/standard-library/forward-list.md index c7400192b6..861fd7f512 100644 --- a/docs/standard-library/forward-list.md +++ b/docs/standard-library/forward-list.md @@ -30,7 +30,7 @@ Defines the container class template forward_list and several supporting templat |[operator<](../standard-library/forward-list-operators.md#op_lt)|Tests if the forward list object on the left side of the operator is less than the forward list object on the right side.| |[operator<=](../standard-library/forward-list-operators.md#op_lt_eq)|Tests if the forward list object on the left side of the operator is less than or equal to the forward list object on the right side.| |[operator>](../standard-library/forward-list-operators.md#op_gt)|Tests if the forward list object on the left side of the operator is greater than the forward list object on the right side.| -|[operator>=](../standard-library/forward-list-operators.md#op_lt_eq)|Tests if the forward list object on the left side of the operator is greater than or equal to the forward list object on the right side.| +|[operator>=](../standard-library/forward-list-operators.md#op_gt_eq)|Tests if the forward list object on the left side of the operator is greater than or equal to the forward list object on the right side.| ### Functions diff --git a/docs/standard-library/iterator.md b/docs/standard-library/iterator.md index 4c87768cbf..f5ac9540c1 100644 --- a/docs/standard-library/iterator.md +++ b/docs/standard-library/iterator.md @@ -58,7 +58,7 @@ Visual Studio has added extensions to C++ Standard Library iterators to support |[`operator!=`](../standard-library/iterator-operators.md#op_neq)|Tests if the iterator object on the left side of the operator isn't equal to the iterator object on the right side.| |[`operator==`](../standard-library/iterator-operators.md#op_eq_eq)|Tests if the iterator object on the left side of the operator is equal to the iterator object on the right side.| |[`operator<`](../standard-library/iterator-operators.md#op_lt)|Tests if the iterator object on the left side of the operator is less than the iterator object on the right side.| -|[`operator<=`](../standard-library/iterator-operators.md#op_gt_eq)|Tests if the iterator object on the left side of the operator is less than or equal to the iterator object on the right side.| +|[`operator<=`](../standard-library/iterator-operators.md#op_lt_eq)|Tests if the iterator object on the left side of the operator is less than or equal to the iterator object on the right side.| |[`operator>`](../standard-library/iterator-operators.md#op_gt)|Tests if the iterator object on the left side of the operator is greater than the iterator object on the right side.| |[`operator>=`](../standard-library/iterator-operators.md#op_gt_eq)|Tests if the iterator object on the left side of the operator is greater than or equal to the iterator object on the right side.| |[`operator+`](../standard-library/iterator-operators.md#op_add)|Adds an offset to an iterator and returns the new `reverse_iterator` addressing the inserted element at the new offset position.| diff --git a/docs/standard-library/list.md b/docs/standard-library/list.md index 389e03c230..14baffd00a 100644 --- a/docs/standard-library/list.md +++ b/docs/standard-library/list.md @@ -27,7 +27,7 @@ Defines the container class template list and several supporting templates. |-|-| |[operator!=](../standard-library/list-operators.md#op_neq)|Tests if the list object on the left side of the operator is not equal to the list object on the right side.| |[operator<](../standard-library/list-operators.md#op_lt)|Tests if the list object on the left side of the operator is less than the list object on the right side.| -|[operator\<=](../standard-library/list-operators.md#op_gt_eq)|Tests if the list object on the left side of the operator is less than or equal to the list object on the right side.| +|[operator\<=](../standard-library/list-operators.md#op_lt_eq)|Tests if the list object on the left side of the operator is less than or equal to the list object on the right side.| |[operator==](../standard-library/list-operators.md#op_eq_eq)|Tests if the list object on the left side of the operator is equal to the list object on the right side.| |[operator>](../standard-library/list-operators.md#op_gt)|Tests if the list object on the left side of the operator is greater than the list object on the right side.| |[operator>=](../standard-library/list-operators.md#op_gt_eq)|Tests if the list object on the left side of the operator is greater than or equal to the list object on the right side.| diff --git a/docs/standard-library/memory.md b/docs/standard-library/memory.md index 336706d3f9..9395bda740 100644 --- a/docs/standard-library/memory.md +++ b/docs/standard-library/memory.md @@ -74,7 +74,7 @@ Defines a class, an operator, and several templates that help allocate and free |[operator==](../standard-library/memory-operators.md#op_eq_eq)|Tests for equality between allocator objects of a specified class.| |[operator>=](../standard-library/memory-operators.md#op_gt_eq)|Tests for one allocator object being greater than or equal to a second allocator object, of a specified class.| |[operator<](../standard-library/memory-operators.md#op_lt)|Tests for one object being less than a second object of a specified class.| -|[operator\<=](../standard-library/memory-operators.md#op_gt_eq)|Tests for one object being less than or equal to a second object of a specified class.| +|[operator\<=](../standard-library/memory-operators.md#op_lt_eq)|Tests for one object being less than or equal to a second object of a specified class.| |[operator>](../standard-library/memory-operators.md#op_gt)|Tests for one object being greater than a second object of a specified class.| |[operator<<](../standard-library/memory-operators.md#op_lt_lt)|`shared_ptr` inserter.| diff --git a/docs/standard-library/optional.md b/docs/standard-library/optional.md index 776d8b5da6..0bfa38327b 100644 --- a/docs/standard-library/optional.md +++ b/docs/standard-library/optional.md @@ -26,7 +26,7 @@ Defines the container class template `optional` and several supporting templates |[operator<](../standard-library/optional-operators.md#op_lt)|Tests if the object on the left is less than the object on the right.| |[operator<=](../standard-library/optional-operators.md#op_lt_eq)|Tests if the object on the left is less than or equal to the object on the right.| |[operator>](../standard-library/optional-operators.md#op_gt)|Tests if the object on the left is greater than the object on the right.| -|[operator>=](../standard-library/optional-operators.md#op_lt_eq)|Tests if the object on the left is greater than or equal to the object on the right.| +|[operator>=](../standard-library/optional-operators.md#op_gt_eq)|Tests if the object on the left is greater than or equal to the object on the right.| > [!NOTE] > In addition to relational compares, \ operators also support comparison with **nullopt** and `T`. diff --git a/docs/standard-library/queue.md b/docs/standard-library/queue.md index cd1709709b..f6b35149a9 100644 --- a/docs/standard-library/queue.md +++ b/docs/standard-library/queue.md @@ -27,7 +27,7 @@ Defines the class templates priority_queue and queue and several supporting temp |-|-| |[operator!=](../standard-library/queue-operators.md#op_neq)|Tests if the queue object on the left side of the operator is not equal to the queue object on the right side.| |[operator<](../standard-library/queue-operators.md#op_lt)|Tests if the queue object on the left side of the operator is less than the queue object on the right side.| -|[operator\<=](../standard-library/queue-operators.md#op_gt_eq)|Tests if the queue object on the left side of the operator is less than or equal to the queue object on the right side.| +|[operator\<=](../standard-library/queue-operators.md#op_lt_eq)|Tests if the queue object on the left side of the operator is less than or equal to the queue object on the right side.| |[operator==](../standard-library/queue-operators.md#op_eq_eq)|Tests if the queue object on the left side of the operator is equal to the queue object on the right side.| |[operator>](../standard-library/queue-operators.md#op_gt)|Tests if the queue object on the left side of the operator is greater than the queue object on the right side.| |[operator>=](../standard-library/queue-operators.md#op_gt_eq)|Tests if the queue object on the left side of the operator is greater than or equal to the queue object on the right side.| diff --git a/docs/standard-library/regex.md b/docs/standard-library/regex.md index afa6499a17..7a11ed48c8 100644 --- a/docs/standard-library/regex.md +++ b/docs/standard-library/regex.md @@ -81,7 +81,7 @@ To modify the details of the grammar of regular expressions, write a class that |[`operator==`](../standard-library/regex-operators.md#op_eq_eq)|Comparison of various objects, equal.| |[`operator!=`](../standard-library/regex-operators.md#op_neq)|Comparison of various objects, not equal.| |[`operator<`](../standard-library/regex-operators.md#op_lt)|Comparison of various objects, less than.| -|[`operator<=`](../standard-library/regex-operators.md#op_gt_eq)|Comparison of various objects, less than or equal.| +|[`operator<=`](../standard-library/regex-operators.md#op_lt_eq)|Comparison of various objects, less than or equal.| |[`operator>`](../standard-library/regex-operators.md#op_gt)|Comparison of various objects, greater than.| |[`operator>=`](../standard-library/regex-operators.md#op_gt_eq)|Comparison of various objects, greater than or equal.| |[`operator<<`](../standard-library/regex-operators.md#op_lt_lt)|Inserts a `sub_match` in a stream.| diff --git a/docs/standard-library/utility.md b/docs/standard-library/utility.md index 266e984099..e5a9761077 100644 --- a/docs/standard-library/utility.md +++ b/docs/standard-library/utility.md @@ -61,7 +61,7 @@ Pairs are widely used in the C++ Standard Library. They're required both as the |[`operator!=`](../standard-library/utility-operators.md#op_neq)|Tests if the pair object on the left side of the operator isn't equal to the pair object on the right side.| |[`operator==`](../standard-library/utility-operators.md#op_eq_eq)|Tests if the pair object on the left side of the operator is equal to the pair object on the right side.| |[`operator<`](../standard-library/utility-operators.md#op_lt)|Tests if the pair object on the left side of the operator is less than the pair object on the right side.| -|[`operator<=`](../standard-library/utility-operators.md#op_gt_eq)|Tests if the pair object on the left side of the operator is less than or equal to the pair object on the right side.| +|[`operator<=`](../standard-library/utility-operators.md#op_lt_eq)|Tests if the pair object on the left side of the operator is less than or equal to the pair object on the right side.| |[`operator>`](../standard-library/utility-operators.md#op_gt)|Tests if the pair object on the left side of the operator is greater than the pair object on the right side.| |[`operator>=`](../standard-library/utility-operators.md#op_gt_eq)|Tests if the pair object on the left side of the operator is greater than or equal to the pair object on the right side.| diff --git a/docs/standard-library/variant.md b/docs/standard-library/variant.md index 9be7549e0e..be23f0f5b0 100644 --- a/docs/standard-library/variant.md +++ b/docs/standard-library/variant.md @@ -26,7 +26,7 @@ A variant object holds and manages a value. If the variant holds a value, that v |[operator<](../standard-library/forward-list-operators.md#op_lt)|Tests if the variant object on the left side of the operator is less than the variant object on the right side.| |[operator<=](../standard-library/forward-list-operators.md#op_lt_eq)|Tests if the variant object on the left side of the operator is less than or equal to the variant object on the right side.| |[operator>](../standard-library/forward-list-operators.md#op_gt)|Tests if the variant object on the left side of the operator is greater than the variant object on the right side.| -|[operator>=](../standard-library/forward-list-operators.md#op_lt_eq)|Tests if the variant object on the left side of the operator is greater than or equal to the variant object on the right side.| +|[operator>=](../standard-library/forward-list-operators.md#op_gt_eq)|Tests if the variant object on the left side of the operator is greater than or equal to the variant object on the right side.| ### Functions diff --git a/docs/standard-library/vector.md b/docs/standard-library/vector.md index f9dd7af32e..22ea3970ae 100644 --- a/docs/standard-library/vector.md +++ b/docs/standard-library/vector.md @@ -89,7 +89,7 @@ The second (right) vector in a compare operation. |-|-| |[`operator! =`](../standard-library/vector-operators.md#op_neq)|Tests if the `vector` object on the left side of the operator isn't equal to the `vector` object on the right side.| |[`operator<`](../standard-library/vector-operators.md#op_lt)|Tests if the `vector` object on the left side of the operator is less than the `vector` object on the right side.| -|[`operator<=`](../standard-library/vector-operators.md#op_gt_eq)|Tests if the `vector` object on the left side of the operator is less than or equal to the `vector` object on the right side.| +|[`operator<=`](../standard-library/vector-operators.md#op_lt_eq)|Tests if the `vector` object on the left side of the operator is less than or equal to the `vector` object on the right side.| |[`operator==`](../standard-library/vector-operators.md#op_eq_eq)|Tests if the `vector` object on the left side of the operator is equal to the `vector` object on the right side.| |[`operator>`](../standard-library/vector-operators.md#op_gt)|Tests if the `vector` object on the left side of the operator is greater than the `vector` object on the right side.| |[`operator>=`](../standard-library/vector-operators.md#op_gt_eq)|Tests if the `vector` object on the left side of the operator is greater than or equal to the `vector` object on the right side.| From a24ed92bf9833ec9af347273f8be654b7101fab6 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 24 Jul 2025 21:26:42 +0800 Subject: [PATCH 921/981] Update metadata in 11 topics --- .../mfc/windows-sockets-example-of-sockets-using-archives.md | 5 ++--- docs/parallel/concrt/reference/concurrency-namespace.md | 5 ++--- docs/standard-library/deque.md | 5 ++--- docs/standard-library/forward-list.md | 5 ++--- docs/standard-library/list.md | 5 ++--- docs/standard-library/memory.md | 4 ++-- docs/standard-library/optional.md | 4 ++-- docs/standard-library/queue.md | 5 ++--- docs/standard-library/utility.md | 2 +- docs/standard-library/variant.md | 4 ++-- docs/standard-library/vector.md | 4 ++-- 11 files changed, 21 insertions(+), 27 deletions(-) diff --git a/docs/mfc/windows-sockets-example-of-sockets-using-archives.md b/docs/mfc/windows-sockets-example-of-sockets-using-archives.md index c97e8c3d0c..89e332528b 100644 --- a/docs/mfc/windows-sockets-example-of-sockets-using-archives.md +++ b/docs/mfc/windows-sockets-example-of-sockets-using-archives.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Windows Sockets: Example of Sockets Using Archives" title: "Windows Sockets: Example of Sockets Using Archives" -ms.date: "11/04/2016" +description: "Learn more about: Windows Sockets: Example of Sockets Using Archives" +ms.date: 11/04/2016 helpviewer_keywords: ["sockets [MFC], with archives", "examples [MFC], Windows Sockets", "Windows Sockets [MFC], with archives"] -ms.assetid: 2e3c9bb2-7e7b-4f28-8dc5-6cb7a484edac --- # Windows Sockets: Example of Sockets Using Archives diff --git a/docs/parallel/concrt/reference/concurrency-namespace.md b/docs/parallel/concrt/reference/concurrency-namespace.md index 4f5a100c3a..db453f19ce 100644 --- a/docs/parallel/concrt/reference/concurrency-namespace.md +++ b/docs/parallel/concrt/reference/concurrency-namespace.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: concurrency Namespace" title: "concurrency Namespace" -ms.date: "11/04/2016" +description: "Learn more about: concurrency Namespace" +ms.date: 11/04/2016 f1_keywords: ["concurrent_priority_queue/concurrency", "agents/concurrency", "concurrent_vector/concurrency", "concrt/concurrency", "internal_split_ordered_list/concurrency", "concurrent_queue/concurrency", "pplcancellation_token/concurrency", "pplinterface/concurrency", "ppltasks/concurrency", "ppl/concurrency", "concurrent_unordered_map/concurrency", "concrtrm/concurrency", "concurrent_unordered_set/concurrency", "pplconcrt/concurrency", "internal_concurrent_hash/concurrency"] helpviewer_keywords: ["Concurrency namespace"] -ms.assetid: f1d33ca2-679b-4442-b140-22a9d9df61d1 --- # concurrency Namespace diff --git a/docs/standard-library/deque.md b/docs/standard-library/deque.md index 2f728d94ae..30e85cc003 100644 --- a/docs/standard-library/deque.md +++ b/docs/standard-library/deque.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: ["deque header"] -ms.assetid: 4521fe92-5a91-4853-9e9f-59600bf9e46f --- # `` diff --git a/docs/standard-library/forward-list.md b/docs/standard-library/forward-list.md index 861fd7f512..3a614d2184 100644 --- a/docs/standard-library/forward-list.md +++ b/docs/standard-library/forward-list.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: [""] -ms.assetid: 8b4ab09e-1475-434a-b4e0-fdbc07a08b5b --- # `` diff --git a/docs/standard-library/list.md b/docs/standard-library/list.md index 14baffd00a..6d8ef3944f 100644 --- a/docs/standard-library/list.md +++ b/docs/standard-library/list.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: ["list header"] -ms.assetid: 2345823b-5612-44d8-95d3-aa96ed076d17 --- # `` diff --git a/docs/standard-library/memory.md b/docs/standard-library/memory.md index 9395bda740..5e3a65200e 100644 --- a/docs/standard-library/memory.md +++ b/docs/standard-library/memory.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: " title: "" -ms.date: "08/04/2019" +description: "Learn more about: " +ms.date: 08/04/2019 f1_keywords: [""] helpviewer_keywords: ["memory header"] --- diff --git a/docs/standard-library/optional.md b/docs/standard-library/optional.md index 0bfa38327b..5a632e0931 100644 --- a/docs/standard-library/optional.md +++ b/docs/standard-library/optional.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: " title: "" -ms.date: "08/06/2019" +description: "Learn more about: " +ms.date: 08/06/2019 f1_keywords: [""] helpviewer_keywords: [""] --- diff --git a/docs/standard-library/queue.md b/docs/standard-library/queue.md index f6b35149a9..f580355a8e 100644 --- a/docs/standard-library/queue.md +++ b/docs/standard-library/queue.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: ["queue header"] -ms.assetid: 24fcf350-eb0e-48cf-9fef-978be1aeda1f --- # `` diff --git a/docs/standard-library/utility.md b/docs/standard-library/utility.md index e5a9761077..c522bcbcd3 100644 --- a/docs/standard-library/utility.md +++ b/docs/standard-library/utility.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: " title: "" +description: "Learn more about: " ms.date: 11/14/2024 f1_keywords: [""] helpviewer_keywords: ["utility header"] diff --git a/docs/standard-library/variant.md b/docs/standard-library/variant.md index be23f0f5b0..a61bd4e8bb 100644 --- a/docs/standard-library/variant.md +++ b/docs/standard-library/variant.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: " title: "" -ms.date: "04/04/2019" +description: "Learn more about: " +ms.date: 04/04/2019 f1_keywords: [""] helpviewer_keywords: [""] --- diff --git a/docs/standard-library/vector.md b/docs/standard-library/vector.md index 22ea3970ae..ab97e69048 100644 --- a/docs/standard-library/vector.md +++ b/docs/standard-library/vector.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: ["vector header"] --- From bc23da40f37bbf03c9504baeb7b5e71e7ed50c9a Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 26 Jul 2025 07:32:32 +0800 Subject: [PATCH 922/981] Clean up superfluous trailing spaces in `toc.yml`s (#5502) I own these. --- docs/build/toc.yml | 4 ++-- docs/c-language/toc.yml | 2 +- docs/c-runtime-library/toc.yml | 2 +- docs/cpp/toc.yml | 2 +- docs/cross-platform/toc.yml | 2 +- docs/embedded/toc.yml | 2 +- docs/error-messages/toc.yml | 2 +- docs/get-started/toc.yml | 6 +++--- docs/ide/toc.yml | 2 +- docs/intrinsics/toc.yml | 2 +- docs/mfc/toc.yml | 4 ++-- docs/preprocessor/toc.yml | 2 +- docs/standard-library/toc.yml | 4 ++-- 13 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/build/toc.yml b/docs/build/toc.yml index 444ec54501..40514a7514 100644 --- a/docs/build/toc.yml +++ b/docs/build/toc.yml @@ -408,7 +408,7 @@ items: - name: Command line property pages href: ../build/reference/command-line-property-pages.md - name: NMake property page - href: ../build/reference/nmake-property-page.md + href: ../build/reference/nmake-property-page.md - name: Manifest Tool property pages href: ../build/reference/manifest-tool-property-pages.md - name: Resources property pages @@ -1181,7 +1181,7 @@ items: href: ../build/reference/nmake-reference.md - name: NMAKE projects in Visual Studio href: ../build/reference/creating-a-makefile-project.md - - name: Running NMAKE + - name: Running NMAKE href: ../build/reference/running-nmake.md - name: Makefile contents and features href: ../build/reference/contents-of-a-makefile.md diff --git a/docs/c-language/toc.yml b/docs/c-language/toc.yml index cfd26f82ed..13334cd6b4 100644 --- a/docs/c-language/toc.yml +++ b/docs/c-language/toc.yml @@ -444,7 +444,7 @@ items: - name: Inline assembler (C) href: ../c-language/inline-assembler-c.md - name: _Noreturn (C) - href: ../c-language/noreturn.md + href: ../c-language/noreturn.md - name: DLL import and export functions items: - name: DLL import and export functions diff --git a/docs/c-runtime-library/toc.yml b/docs/c-runtime-library/toc.yml index 4eb9c708b3..926d9dd23f 100644 --- a/docs/c-runtime-library/toc.yml +++ b/docs/c-runtime-library/toc.yml @@ -75,7 +75,7 @@ items: - name: Global state in the CRT href: ../c-runtime-library/global-state.md - name: Type-generic math - href: ../c-runtime-library/tgmath.md + href: ../c-runtime-library/tgmath.md - name: C runtime (CRT) and C++ Standard Library (STL) .lib files href: ../c-runtime-library/crt-library-features.md - name: Universal C runtime routines by category diff --git a/docs/cpp/toc.yml b/docs/cpp/toc.yml index 35e1c6921a..1c9d0872d8 100644 --- a/docs/cpp/toc.yml +++ b/docs/cpp/toc.yml @@ -369,7 +369,7 @@ items: - name: Pimpl idiom for compile-time encapsulation href: ../cpp/pimpl-for-compile-time-encapsulation-modern-cpp.md - name: Portability at ABI boundaries - href: ../cpp/portability-at-abi-boundaries-modern-cpp.md + href: ../cpp/portability-at-abi-boundaries-modern-cpp.md - name: Constructors items: - name: Constructors diff --git a/docs/cross-platform/toc.yml b/docs/cross-platform/toc.yml index 4446b6541f..22771c639f 100644 --- a/docs/cross-platform/toc.yml +++ b/docs/cross-platform/toc.yml @@ -2,7 +2,7 @@ items: - name: Cross-platform mobile development with C++ href: ../cross-platform/index.yml - name: Overview - href: ../cross-platform/visual-cpp-for-cross-platform-mobile-development.md + href: ../cross-platform/visual-cpp-for-cross-platform-mobile-development.md - name: Get Started expanded: true items: diff --git a/docs/embedded/toc.yml b/docs/embedded/toc.yml index 01279ba35c..b948c79311 100644 --- a/docs/embedded/toc.yml +++ b/docs/embedded/toc.yml @@ -19,7 +19,7 @@ items: href: ./peripheral-view.md - name: RTOS View href: ./rtos-view.md - - name: Serial Monitor + - name: Serial Monitor href: ./serial-monitor.md - name: vcpkg artifacts href: https://devblogs.microsoft.com/cppblog/vcpkg-artifacts/ diff --git a/docs/error-messages/toc.yml b/docs/error-messages/toc.yml index ed8722eb60..acb65fcdd5 100644 --- a/docs/error-messages/toc.yml +++ b/docs/error-messages/toc.yml @@ -4437,7 +4437,7 @@ items: href: tool-errors/cvtres-fatal-error-cvt1105.md - name: CVTRES warning CVT4001 href: tool-errors/cvtres-warning-cvt4001.md -- name: Expression evaluator errors +- name: Expression evaluator errors expanded: false items: - name: Expression evaluator errors (CXXxxxx) diff --git a/docs/get-started/toc.yml b/docs/get-started/toc.yml index 224ea3f49a..49961e1320 100644 --- a/docs/get-started/toc.yml +++ b/docs/get-started/toc.yml @@ -25,7 +25,7 @@ items: items: - name: Create a console app href: tutorial-console-cpp.md - - name: Create a Universal Windows Platform app + - name: Create a Universal Windows Platform app href: /windows/uwp/cpp-and-winrt-apis/get-started - name: Create a Windows Desktop app href: /windows/desktop/learnwin32/learn-to-program-for-windows @@ -44,9 +44,9 @@ items: items: - name: Open code from a repo href: /visualstudio/get-started/tutorial-open-project-from-repo - - name: Write and edit code + - name: Write and edit code href: /visualstudio/get-started/tutorial-editor - - name: Compile and build + - name: Compile and build href: /visualstudio/ide/compiling-and-building-in-visual-studio - name: Debug your C++ code href: /visualstudio/debugger/quickstart-debug-with-cplusplus diff --git a/docs/ide/toc.yml b/docs/ide/toc.yml index c208f599e6..0b58b7607e 100644 --- a/docs/ide/toc.yml +++ b/docs/ide/toc.yml @@ -93,7 +93,7 @@ items: - name: Add a method href: ../ide/adding-a-method-visual-cpp.md - name: Add an IDL method - href: ../ide/add-interface-definition-library-method-wizard.md + href: ../ide/add-interface-definition-library-method-wizard.md - name: Add a property href: ../ide/adding-a-property-visual-cpp.md - name: Add an IDL property diff --git a/docs/intrinsics/toc.yml b/docs/intrinsics/toc.yml index eb04364ed4..0c9053c8c3 100644 --- a/docs/intrinsics/toc.yml +++ b/docs/intrinsics/toc.yml @@ -40,7 +40,7 @@ items: - name: _bittestandset, _bittestandset64 href: ../intrinsics/bittestandset-bittestandset64.md - name: __check_isa_support, __check_arch_support - href: ../intrinsics/check-isa-arch-support.md + href: ../intrinsics/check-isa-arch-support.md - name: __cpuid, __cpuidex href: ../intrinsics/cpuid-cpuidex.md - name: __debugbreak diff --git a/docs/mfc/toc.yml b/docs/mfc/toc.yml index eff745b744..691f07b181 100644 --- a/docs/mfc/toc.yml +++ b/docs/mfc/toc.yml @@ -2919,6 +2919,6 @@ items: - name: Add a method to an IDL interface in a MFC project href: reference/add-idl-mfc-method-wizard.md - name: Add a property to an IDL interface in a MFC project - href: reference/add-interface-definition-library-mfc-property-wizard.md + href: reference/add-interface-definition-library-mfc-property-wizard.md - name: MFC class wizard - href: reference/mfc-class-wizard.md \ No newline at end of file + href: reference/mfc-class-wizard.md \ No newline at end of file diff --git a/docs/preprocessor/toc.yml b/docs/preprocessor/toc.yml index a2121985ad..4535a25eb6 100644 --- a/docs/preprocessor/toc.yml +++ b/docs/preprocessor/toc.yml @@ -7,7 +7,7 @@ items: - name: Preprocessor href: ../preprocessor/preprocessor.md - name: New preprocessor overview - href: ../preprocessor/preprocessor-experimental-overview.md + href: ../preprocessor/preprocessor-experimental-overview.md - name: Phases of translation href: ../preprocessor/phases-of-translation.md - name: Preprocessor directives diff --git a/docs/standard-library/toc.yml b/docs/standard-library/toc.yml index da06070882..40f30f1268 100644 --- a/docs/standard-library/toc.yml +++ b/docs/standard-library/toc.yml @@ -169,9 +169,9 @@ items: href: gps-clock-class.md - name: hh_mm_ss class href: hhmmss-class.md - - name: high_resolution_clock struct + - name: high_resolution_clock struct href: high-resolution-clock-struct.md - - name: is_clock struct + - name: is_clock struct href: is-clock-struct.md - name: last_spec href: last-spec-struct.md From 068cb24921f656f37c1a8ab411f5955bec86a93a Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Fri, 25 Jul 2025 17:27:46 -0700 Subject: [PATCH 923/981] uuf fixes (#6021) --- docs/build/x64-calling-convention.md | 2 +- ...how-to-create-and-use-ccomptr-and-ccomqiptr-instances.md | 3 +-- docs/cpp/lvalues-and-rvalues-visual-cpp.md | 2 +- docs/parallel/openmp/reference/openmp-directives.md | 2 +- docs/preprocessor/optimize.md | 6 +++--- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/build/x64-calling-convention.md b/docs/build/x64-calling-convention.md index abb153a846..bf4a575b47 100644 --- a/docs/build/x64-calling-convention.md +++ b/docs/build/x64-calling-convention.md @@ -93,7 +93,7 @@ If parameters are passed via varargs (for example, ellipsis arguments), then the For functions not fully prototyped, the caller passes integer values as integers and floating-point values as double precision. For floating-point values only, both the integer register and the floating-point register contain the float value in case the callee expects the value in the integer registers. -```cpp +```c func1(); func2() { // RCX = 2, RDX = XMM1 = 1.0, and R8 = 7 func1(2, 1.0, 7); diff --git a/docs/cpp/how-to-create-and-use-ccomptr-and-ccomqiptr-instances.md b/docs/cpp/how-to-create-and-use-ccomptr-and-ccomqiptr-instances.md index 37f9edb380..a780106d81 100644 --- a/docs/cpp/how-to-create-and-use-ccomptr-and-ccomqiptr-instances.md +++ b/docs/cpp/how-to-create-and-use-ccomptr-and-ccomqiptr-instances.md @@ -3,7 +3,6 @@ description: "Learn more about: How to: Create and use CComPtr and CComQIPtr ins title: "How to: Create and use CComPtr and CComQIPtr instances" ms.custom: "how-to" ms.date: "11/19/2019" -ms.assetid: b0356cfb-12cc-4ee8-b988-8311ed1ab5e0 --- # How to: Create and use CComPtr and CComQIPtr instances @@ -19,7 +18,7 @@ The following example shows how to use `CComPtr` to instantiate a COM object and `CComPtr` and its relatives are part of the ATL and are defined in \. `_com_ptr_t` is declared in \. The compiler creates specializations of `_com_ptr_t` when it generates wrapper classes for type libraries. -## Example: CComQIPt +## Example: CComQIPtr ATL also provides `CComQIPtr`, which has a simpler syntax for querying a COM object to retrieve an additional interface. However, we recommend `CComPtr` because it does everything that `CComQIPtr` can do and is semantically more consistent with raw COM interface pointers. If you use a `CComPtr` to query for an interface, the new interface pointer is placed in an out parameter. If the call fails, an HRESULT is returned, which is the typical COM pattern. With `CComQIPtr`, the return value is the pointer itself, and if the call fails, the internal HRESULT return value cannot be accessed. The following two lines show how the error handling mechanisms in `CComPtr` and `CComQIPtr` differ. diff --git a/docs/cpp/lvalues-and-rvalues-visual-cpp.md b/docs/cpp/lvalues-and-rvalues-visual-cpp.md index 0fb47aa4e2..ad2e8ebae4 100644 --- a/docs/cpp/lvalues-and-rvalues-visual-cpp.md +++ b/docs/cpp/lvalues-and-rvalues-visual-cpp.md @@ -27,7 +27,7 @@ An lvalue has an address that your program can access. Examples of lvalue expres A prvalue expression has no address that is accessible by your program. Examples of prvalue expressions include literals, function calls that return a nonreference type, and temporary objects that are created during expression evaluation but accessible only by the compiler. -An xvalue expression has an address that no longer accessible by your program but can be used to initialize an rvalue reference, which provides access to the expression. Examples include function calls that return an rvalue reference, and the array subscript, member and pointer to member expressions where the array or object is an rvalue reference. +An xvalue expression has an address that is no longer accessible by your program but can be used to initialize an rvalue reference, which provides access to the expression. Examples include function calls that return an rvalue reference, and the array subscript, member and pointer to member expressions where the array or object is an rvalue reference. ## Example diff --git a/docs/parallel/openmp/reference/openmp-directives.md b/docs/parallel/openmp/reference/openmp-directives.md index 2e841d2138..ef1fd1944d 100644 --- a/docs/parallel/openmp/reference/openmp-directives.md +++ b/docs/parallel/openmp/reference/openmp-directives.md @@ -28,7 +28,7 @@ For main thread and synchronization: |[master](#master)|Specifies that only the main thread should execute a section of the program.| |[critical](#critical)|Specifies that code is only executed on one thread at a time.| |[barrier](#barrier)|Synchronizes all threads in a team; all threads pause at the barrier, until all threads execute the barrier.| -|[atomic](#atomic)|Specifies that a memory location that will be updated atomically.| +|[atomic](#atomic)|Specifies that a memory location will be updated atomically.| |[flush](#flush-openmp)|Specifies that all threads have the same view of memory for all shared objects.| |[ordered](#ordered-openmp-directives)|Specifies that code under a parallelized `for` loop should be executed like a sequential loop.| diff --git a/docs/preprocessor/optimize.md b/docs/preprocessor/optimize.md index ddcd04b833..f8dd4c9625 100644 --- a/docs/preprocessor/optimize.md +++ b/docs/preprocessor/optimize.md @@ -1,7 +1,7 @@ --- description: "Learn more about: optimize pragma" title: "optimize pragma" -ms.date: 01/22/2021 +ms.date: 07/25/2025 f1_keywords: ["vc-pragma.optimize", "optimize_CPP"] helpviewer_keywords: ["pragma, optimize", "optimize pragma"] no-loc: ["pragma"] @@ -25,8 +25,8 @@ The *optimization-list* can be zero or more of the parameters shown in the follo | Parameter(s) | Type of optimization | |--------------------|--------------------------| | **`g`** | Enable global optimizations. Deprecated. For more information, see [`/Og` (Global optimizations)](../build/reference/og-global-optimizations.md). | -| **`s`** or **`t`** | Specify short or fast sequences of machine code. | -| **`y`** | Generate frame pointers on the program stack. | +| **`s`** or **`t`** | Favor short or fast sequences of machine code. | +| **`y`** | Omit frame pointers on the program stack. | These parameters are the same letters used with the [`/O`](../build/reference/o-options-optimize-code.md) compiler options. For example, the following pragma is equivalent to the **`/Os`** compiler option: From 4d667eeef61d724201f26eb88272b8b28eac6ba1 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 29 Jul 2025 01:24:14 +0800 Subject: [PATCH 924/981] Elide parentheses around some "For more information..." --- docs/c-language/c-comments.md | 2 +- docs/c-language/initializing-scalar-types.md | 2 +- docs/c-language/l-value-and-r-value-expressions.md | 2 +- docs/c-language/parameters.md | 2 +- docs/c-language/scope-and-visibility.md | 2 +- docs/c-language/typedef-declarations.md | 2 +- docs/c-runtime-library/code-pages.md | 2 +- docs/c-runtime-library/reference/open-wopen.md | 4 ++-- docs/c-runtime-library/reference/sopen-s-wsopen-s.md | 2 +- docs/c-runtime-library/reference/sopen-wsopen.md | 2 +- .../reference/strftime-wcsftime-strftime-l-wcsftime-l.md | 2 +- docs/cpp/anonymous-class-types.md | 2 +- docs/cpp/fundamental-types-cpp.md | 6 +++--- docs/cpp/multiple-base-classes.md | 2 +- docs/cpp/pointers-to-members.md | 2 +- docs/cpp/postfix-expressions.md | 2 +- ...ement-and-decrement-operators-increment-and-decrement.md | 2 +- ...ement-and-decrement-operators-increment-and-decrement.md | 2 +- docs/cpp/standard-conversions.md | 4 ++-- docs/cpp/virtual-functions.md | 2 +- docs/cppcx/wrl/weakref-class.md | 2 +- docs/dotnet/how-to-migrate-to-clr.md | 4 ++-- docs/mfc/exception-handling-in-mfc.md | 2 +- docs/mfc/reference/cbasepane-class.md | 4 ++-- docs/mfc/reference/cfont-class.md | 2 +- 25 files changed, 31 insertions(+), 31 deletions(-) diff --git a/docs/c-language/c-comments.md b/docs/c-language/c-comments.md index aaa1c15a1e..f4cb0ff24b 100644 --- a/docs/c-language/c-comments.md +++ b/docs/c-language/c-comments.md @@ -57,7 +57,7 @@ The Microsoft compiler also supports single-line comments preceded by two forwar // This is a valid comment ``` -Comments beginning with two forward slashes (**`//`**) are terminated by the next newline character that isn't preceded by an escape character. In the next example, the newline character is preceded by a backslash (**`\`**), creating an "escape sequence." This escape sequence causes the compiler to treat the next line as part of the previous line. (For more information, see [Escape Sequences](../c-language/escape-sequences.md).) +Comments beginning with two forward slashes (**`//`**) are terminated by the next newline character that isn't preceded by an escape character. In the next example, the newline character is preceded by a backslash (**`\`**), creating an "escape sequence." This escape sequence causes the compiler to treat the next line as part of the previous line. For more information, see [Escape Sequences](../c-language/escape-sequences.md). ```C // my comment \ diff --git a/docs/c-language/initializing-scalar-types.md b/docs/c-language/initializing-scalar-types.md index 77c5673825..8f19545516 100644 --- a/docs/c-language/initializing-scalar-types.md +++ b/docs/c-language/initializing-scalar-types.md @@ -38,7 +38,7 @@ You can initialize variables of any type, as long as you obey the following rule - Variables declared with the **`auto`** or **`register`** storage-class specifier are initialized each time execution control passes to the block in which they're declared. If you omit an initializer from the declaration of an **`auto`** or **`register`** variable, the initial value of the variable is undefined. For automatic and register values, the initializer isn't restricted to being a constant; it can be any expression involving previously defined values, even function calls. -- The initial values for external variable declarations and for all **`static`** variables, whether external or internal, must be constant expressions. (For more information, see [Constant Expressions](../c-language/c-constant-expressions.md).) Since the address of any externally declared or static variable is constant, it can be used to initialize an internally declared **`static`** pointer variable. However, the address of an **`auto`** variable can't be used as a static initializer because it may be different for each execution of the block. You can use either constant or variable values to initialize **`auto`** and **`register`** variables. +- The initial values for external variable declarations and for all **`static`** variables, whether external or internal, must be constant expressions. For more information, see [Constant Expressions](../c-language/c-constant-expressions.md). Since the address of any externally declared or static variable is constant, it can be used to initialize an internally declared **`static`** pointer variable. However, the address of an **`auto`** variable can't be used as a static initializer because it may be different for each execution of the block. You can use either constant or variable values to initialize **`auto`** and **`register`** variables. - If the declaration of an identifier has block scope, and the identifier has external linkage, the declaration can't have an initialization. diff --git a/docs/c-language/l-value-and-r-value-expressions.md b/docs/c-language/l-value-and-r-value-expressions.md index cca7a68bf2..423efc65b3 100644 --- a/docs/c-language/l-value-and-r-value-expressions.md +++ b/docs/c-language/l-value-and-r-value-expressions.md @@ -31,7 +31,7 @@ The term "r-value" is sometimes used to describe the value of an expression and **Microsoft Specific** -Microsoft C includes an extension to the ANSI C standard that allows casts of l-values to be used as l-values, as long as the size of the object isn't lengthened through the cast. (For more information, see [Type-Cast Conversions](../c-language/type-cast-conversions.md).) The following example illustrates this feature: +Microsoft C includes an extension to the ANSI C standard that allows casts of l-values to be used as l-values, as long as the size of the object isn't lengthened through the cast. For more information, see [Type-Cast Conversions](../c-language/type-cast-conversions.md). The following example illustrates this feature: ``` char *p ; diff --git a/docs/c-language/parameters.md b/docs/c-language/parameters.md index cc504bb490..1cf21be284 100644 --- a/docs/c-language/parameters.md +++ b/docs/c-language/parameters.md @@ -50,7 +50,7 @@ void new( double x, double y, double z ) } ``` -If at least one parameter occurs in the parameter list, the list can end with a comma followed by three periods (**`, ...`**). This construction, called the "ellipsis notation," indicates a variable number of arguments to the function. (For more information, see [Calls with a Variable Number of Arguments](../c-language/calls-with-a-variable-number-of-arguments.md).) However, a call to the function must have at least as many arguments as there are parameters before the last comma. +If at least one parameter occurs in the parameter list, the list can end with a comma followed by three periods (**`, ...`**). This construction, called the "ellipsis notation," indicates a variable number of arguments to the function. For more information, see [Calls with a Variable Number of Arguments](../c-language/calls-with-a-variable-number-of-arguments.md). However, a call to the function must have at least as many arguments as there are parameters before the last comma. If no arguments are to be passed to the function, the list of parameters is replaced by the keyword **`void`**. This use of **`void`** is distinct from its use as a type specifier. diff --git a/docs/c-language/scope-and-visibility.md b/docs/c-language/scope-and-visibility.md index 72e07ffd0f..74b22dfcf9 100644 --- a/docs/c-language/scope-and-visibility.md +++ b/docs/c-language/scope-and-visibility.md @@ -15,7 +15,7 @@ All identifiers except labels have their scope determined by the level at which The declarator or type specifier for an identifier with file scope appears outside any block or list of parameters and is accessible from any place in the translation unit after its declaration. Identifier names with file scope are often called "global" or "external." The scope of a global identifier begins at the point of its definition or declaration and terminates at the end of the translation unit. **Function scope**\ -A label is the only kind of identifier that has function scope. A label is declared implicitly by its use in a statement. Label names must be unique within a function. (For more information about labels and label names, see [The goto and Labeled Statements](../c-language/goto-and-labeled-statements-c.md).) +A label is the only kind of identifier that has function scope. A label is declared implicitly by its use in a statement. Label names must be unique within a function. For more information about labels and label names, see [The goto and Labeled Statements](../c-language/goto-and-labeled-statements-c.md). **Block scope**\ The declarator or type specifier for an identifier with block scope appears inside a block or within the list of formal parameter declarations in a function definition. It is visible only from the point of its declaration or definition to the end of the block containing its declaration or definition. Its scope is limited to that block and to any blocks nested in that block and ends at the curly brace that closes the associated block. Such identifiers are sometimes called "local variables." diff --git a/docs/c-language/typedef-declarations.md b/docs/c-language/typedef-declarations.md index 019f17fbdf..50750abc3c 100644 --- a/docs/c-language/typedef-declarations.md +++ b/docs/c-language/typedef-declarations.md @@ -43,7 +43,7 @@ A typedef declaration is interpreted in the same way as a variable or function d A typedef declaration doesn't create new types. It creates synonyms for existing types, or names for types that could be specified in other ways. When a typedef name is used as a type specifier, it can be combined with certain type specifiers, but not others. Acceptable modifiers include **`const`** and **`volatile`**. -Typedef names share the name space with ordinary identifiers. (For more information, see [Name Spaces](../c-language/name-spaces.md).) Therefore, a program can have a typedef name and a local-scope identifier by the same name. For example: +Typedef names share the name space with ordinary identifiers. For more information, see [Name Spaces](../c-language/name-spaces.md). Therefore, a program can have a typedef name and a local-scope identifier by the same name. For example: ```C typedef char FlagType; diff --git a/docs/c-runtime-library/code-pages.md b/docs/c-runtime-library/code-pages.md index f8700a2718..d38deedd40 100644 --- a/docs/c-runtime-library/code-pages.md +++ b/docs/c-runtime-library/code-pages.md @@ -22,7 +22,7 @@ The Microsoft runtime library uses the following types of code pages: also sets the locale to the system-default ANSI code page. -- Locale code page. The behavior of several run-time routines is dependent on the current locale setting, which includes the locale code page. (For more information, see [Locale](./locale.md).) By default, all locale-dependent routines in the Microsoft run-time library use the code page that corresponds to the "C" locale. At run time, you can change or query the locale code page in use with a call to [`setlocale`](./reference/setlocale-wsetlocale.md). +- Locale code page. The behavior of several run-time routines is dependent on the current locale setting, which includes the locale code page. For more information, see [Locale](./locale.md). By default, all locale-dependent routines in the Microsoft run-time library use the code page that corresponds to the "C" locale. At run time, you can change or query the locale code page in use with a call to [`setlocale`](./reference/setlocale-wsetlocale.md). - Multibyte code page. The behavior of most of the multibyte-character routines in the run-time library depends on the current multibyte code page setting. By default, these routines use the system-default ANSI code page. At run-time you can query and change the multibyte code page with [`_getmbcp`](./reference/getmbcp.md) and [`_setmbcp`](./reference/setmbcp.md), respectively. diff --git a/docs/c-runtime-library/reference/open-wopen.md b/docs/c-runtime-library/reference/open-wopen.md index 6b72d3b25f..eec84497e3 100644 --- a/docs/c-runtime-library/reference/open-wopen.md +++ b/docs/c-runtime-library/reference/open-wopen.md @@ -79,7 +79,7 @@ The **`_open`** function opens the file specified by *`filename`* and prepares i | `_O_RDONLY` | Opens a file for reading only. Can't be specified with `_O_RDWR` or `_O_WRONLY`. | | `_O_RDWR` | Opens a file for both reading and writing. Can't be specified with `_O_RDONLY` or `_O_WRONLY`. | | `_O_SEQUENTIAL` | Specifies that caching is optimized for, but not restricted to, sequential access from disk. | -| `_O_TEXT` | Opens a file in ANSI text (translated) mode. (For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md).) | +| `_O_TEXT` | Opens a file in ANSI text (translated) mode. For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md). | | `_O_TRUNC` | Opens a file and truncates it to zero length; the file must have write permission. Can't be specified with `_O_RDONLY`. `_O_TRUNC` used with `_O_CREAT` opens an existing file or creates a file. **Note:** The `_O_TRUNC` flag destroys the contents of the specified file. | | `_O_WRONLY` | Opens a file for writing only. Can't be specified with `_O_RDONLY` or `_O_RDWR`. | | `_O_U16TEXT` | Opens a file in Unicode UTF-16 mode. | @@ -96,7 +96,7 @@ If **`_open`** is called with **`_O_WRONLY | _O_APPEND`** (append mode) and `_O_ When two or more manifest constants are used to form the *`oflag`* argument, the constants are combined with the bitwise-OR operator ( **`|`** ). For a discussion of binary and text modes, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md). -The *`pmode`* argument is required only when `_O_CREAT` is specified. If the file already exists, *`pmode`* is ignored. Otherwise, *`pmode`* specifies the file permission settings, which are set when the new file is closed the first time. **`_open`** applies the current file-permission mask to *`pmode`* before the permissions are set. (For more information, see [`_umask`](umask.md).) *`pmode`* is an integer expression that contains one or both of the following manifest constants, which are defined in ``. +The *`pmode`* argument is required only when `_O_CREAT` is specified. If the file already exists, *`pmode`* is ignored. Otherwise, *`pmode`* specifies the file permission settings, which are set when the new file is closed the first time. **`_open`** applies the current file-permission mask to *`pmode`* before the permissions are set. For more information, see [`_umask`](umask.md). *`pmode`* is an integer expression that contains one or both of the following manifest constants, which are defined in ``. | *`pmode`* | Meaning | |--|--| diff --git a/docs/c-runtime-library/reference/sopen-s-wsopen-s.md b/docs/c-runtime-library/reference/sopen-s-wsopen-s.md index 04f2bd984a..9be97bd769 100644 --- a/docs/c-runtime-library/reference/sopen-s-wsopen-s.md +++ b/docs/c-runtime-library/reference/sopen-s-wsopen-s.md @@ -94,7 +94,7 @@ The integer expression *`oflag`* is formed by combining one or more manifest con | `_O_RDONLY` | Opens a file for reading only. Can't be specified with `_O_RDWR` or `_O_WRONLY`. | | `_O_RDWR` | Opens a file for both reading and writing. Can't be specified with `_O_RDONLY` or `_O_WRONLY`. | | `_O_SEQUENTIAL` | Specifies that caching is optimized for, but not restricted to, sequential access from disk. | -| `_O_TEXT` | Opens a file in ANSI text (translated) mode. (For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md).) | +| `_O_TEXT` | Opens a file in ANSI text (translated) mode. For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md). | | `_O_TRUNC` | Opens a file and truncates it to zero length; the file must have write permission. Can't be specified with `_O_RDONLY`. `_O_TRUNC` used with `_O_CREAT` opens an existing file or creates a file. **Note:** The `_O_TRUNC` flag destroys the contents of the specified file. | | `_O_WRONLY` | Opens a file for writing only. Can't be specified with `_O_RDONLY` or `_O_RDWR`. | | `_O_U16TEXT` | Opens a file in Unicode UTF-16 mode. | diff --git a/docs/c-runtime-library/reference/sopen-wsopen.md b/docs/c-runtime-library/reference/sopen-wsopen.md index c3e9b3a0aa..2ea72da9b5 100644 --- a/docs/c-runtime-library/reference/sopen-wsopen.md +++ b/docs/c-runtime-library/reference/sopen-wsopen.md @@ -88,7 +88,7 @@ The integer expression *`oflag`* is formed by combining one or more of the follo | `_O_RDONLY` | Opens a file for reading only. Can't be specified with `_O_RDWR` or `_O_WRONLY`. | | `_O_RDWR` | Opens a file for both reading and writing. Can't be specified with `_O_RDONLY` or `_O_WRONLY`. | | `_O_SEQUENTIAL` | Specifies that caching is optimized for, but not restricted to, sequential access from disk. | -| `_O_TEXT` | Opens a file in ANSI text (translated) mode. (For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md).) | +| `_O_TEXT` | Opens a file in ANSI text (translated) mode. For more information, see [Text and binary mode file I/O](../text-and-binary-mode-file-i-o.md) and [`fopen`](fopen-wfopen.md). | | `_O_TRUNC` | Opens a file and truncates it to zero length; the file must have write permission. Can't be specified with `_O_RDONLY`. `_O_TRUNC` used with `_O_CREAT` opens an existing file or creates a file. **Note:** The `_O_TRUNC` flag destroys the contents of the specified file. | | `_O_WRONLY` | Opens a file for writing only. Can't be specified with `_O_RDONLY` or `_O_RDWR`. | | `_O_U16TEXT` | Opens a file in Unicode UTF-16 mode. | diff --git a/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md b/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md index 9d253c5cf2..541b23cf3e 100644 --- a/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md +++ b/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md @@ -84,7 +84,7 @@ By default, this function's global state is scoped to the application. To change |---|---|---|---| | **`_tcsftime`** | **`strftime`** | **`strftime`** | **`wcsftime`** | -The *`format`* argument consists of one or more codes; as in **`printf`**, the formatting codes are preceded by a percent sign (**`%`**). Characters that don't begin with **`%`** are copied unchanged to *`strDest`*. The `LC_TIME` category of the current locale affects the output formatting of **`strftime`**. (For more information on `LC_TIME`, see [`setlocale`](setlocale-wsetlocale.md).) The **`strftime`** and **`wcsftime`** functions use the currently set locale. The **`_strftime_l`** and **`_wcsftime_l`** versions of these functions are identical except that they take the locale as a parameter and use that instead of the currently set locale. For more information, see [Locale](../locale.md). +The *`format`* argument consists of one or more codes; as in **`printf`**, the formatting codes are preceded by a percent sign (**`%`**). Characters that don't begin with **`%`** are copied unchanged to *`strDest`*. The `LC_TIME` category of the current locale affects the output formatting of **`strftime`**. For more information on `LC_TIME`, see [`setlocale`](setlocale-wsetlocale.md). The **`strftime`** and **`wcsftime`** functions use the currently set locale. The **`_strftime_l`** and **`_wcsftime_l`** versions of these functions are identical except that they take the locale as a parameter and use that instead of the currently set locale. For more information, see [Locale](../locale.md). The **`strftime`** functions support these formatting codes: diff --git a/docs/cpp/anonymous-class-types.md b/docs/cpp/anonymous-class-types.md index 591f849267..53d162606f 100644 --- a/docs/cpp/anonymous-class-types.md +++ b/docs/cpp/anonymous-class-types.md @@ -42,7 +42,7 @@ In the preceding code, `iValue` can be accessed using the object member-selectio int i = ptv.iValue; ``` -Anonymous classes are subject to certain restrictions. (For more information about anonymous unions, see [Unions](../cpp/unions.md).) Anonymous classes: +Anonymous classes are subject to certain restrictions. For more information about anonymous unions, see [Unions](../cpp/unions.md). Anonymous classes: - Cannot have a constructor or destructor. diff --git a/docs/cpp/fundamental-types-cpp.md b/docs/cpp/fundamental-types-cpp.md index 457e01bac4..1122ea1144 100644 --- a/docs/cpp/fundamental-types-cpp.md +++ b/docs/cpp/fundamental-types-cpp.md @@ -14,11 +14,11 @@ Built-in types (also called *fundamental types*) are specified by the C++ langua The [`void`](void-cpp.md) type describes an empty set of values. No variable of type **`void`** can be specified. The **`void`** type is used primarily to declare functions that return no values or to declare generic pointers to untyped or arbitrarily typed data. Any expression can be explicitly converted or cast to type **`void`**. However, such expressions are restricted to the following uses: -- An expression statement. (For more information, see [Expressions](expressions-cpp.md).) +- An expression statement. For more information, see [Expressions](expressions-cpp.md). -- The left operand of the comma operator. (For more information, see [Comma Operator](comma-operator.md).) +- The left operand of the comma operator. For more information, see [Comma Operator](comma-operator.md). -- The second or third operand of the conditional operator (`? :`). (For more information, see [Expressions with the Conditional Operator](conditional-operator-q.md).) +- The second or third operand of the conditional operator (`? :`). For more information, see [Expressions with the Conditional Operator](conditional-operator-q.md). ## std::nullptr_t diff --git a/docs/cpp/multiple-base-classes.md b/docs/cpp/multiple-base-classes.md index d792657cd2..b71004540e 100644 --- a/docs/cpp/multiple-base-classes.md +++ b/docs/cpp/multiple-base-classes.md @@ -142,7 +142,7 @@ The compiler detects ambiguities by performing tests in this order: 1. If overloaded functions are unambiguous, they're resolved. -1. If access to the name violates member-access permission, an error message is generated. (For more information, see [Member-Access Control](../cpp/member-access-control-cpp.md).) +1. If access to the name violates member-access permission, an error message is generated. For more information, see [Member-Access Control](../cpp/member-access-control-cpp.md). When an expression produces an ambiguity through inheritance, you can manually resolve it by qualifying the name in question with its class name. To make the preceding example compile properly with no ambiguities, use code such as: diff --git a/docs/cpp/pointers-to-members.md b/docs/cpp/pointers-to-members.md index 17e5da3112..f92ee99c25 100644 --- a/docs/cpp/pointers-to-members.md +++ b/docs/cpp/pointers-to-members.md @@ -121,7 +121,7 @@ The address of a static member isn't a pointer to a member. It's a regular point Invoking a virtual function through a pointer-to-member function works as if the function had been called directly. The correct function is looked up in the v-table and invoked. -The key to virtual functions working, as always, is invoking them through a pointer to a base class. (For more information about virtual functions, see [Virtual Functions](../cpp/virtual-functions.md).) +The key to virtual functions working, as always, is invoking them through a pointer to a base class. For more information about virtual functions, see [Virtual Functions](../cpp/virtual-functions.md). The following code shows how to invoke a virtual function through a pointer-to-member function: diff --git a/docs/cpp/postfix-expressions.md b/docs/cpp/postfix-expressions.md index 9ed1835bcf..635fddc23d 100644 --- a/docs/cpp/postfix-expressions.md +++ b/docs/cpp/postfix-expressions.md @@ -72,7 +72,7 @@ When a function is called, the following tasks are performed: Func( Temp_i ); ``` - Note that the initialization is performed as if using the equal-sign syntax instead of the parentheses syntax. A copy of `i` is made prior to passing the value to the function. (For more information, see [Initializers](../cpp/initializers.md) and [Conversions](../cpp/user-defined-type-conversions-cpp.md)). + Note that the initialization is performed as if using the equal-sign syntax instead of the parentheses syntax. A copy of `i` is made prior to passing the value to the function. For more information, see [Initializers](../cpp/initializers.md) and [Conversions](../cpp/user-defined-type-conversions-cpp.md). Therefore, if the function prototype (declaration) calls for an argument of type **`long`**, and if the calling program supplies an actual argument of type **`int`**, the actual argument is promoted using a standard type conversion to type **`long`** (see [Standard Conversions](../cpp/standard-conversions.md)). diff --git a/docs/cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md b/docs/cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md index 4d06719b10..9113738138 100644 --- a/docs/cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md +++ b/docs/cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md @@ -16,7 +16,7 @@ postfix-expression -- ## Remarks -C++ provides prefix and postfix increment and decrement operators; this section describes only the postfix increment and decrement operators. (For more information, see [Prefix Increment and Decrement Operators](../cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md).) The difference between the two is that in the postfix notation, the operator appears after *postfix-expression*, whereas in the prefix notation, the operator appears before *expression.* The following example shows a postfix-increment operator: +C++ provides prefix and postfix increment and decrement operators; this section describes only the postfix increment and decrement operators. For more information, see [Prefix Increment and Decrement Operators](../cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md). The difference between the two is that in the postfix notation, the operator appears after *postfix-expression*, whereas in the prefix notation, the operator appears before *expression.* The following example shows a postfix-increment operator: ```cpp i++; diff --git a/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md b/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md index 238ae3dfb0..f83cef3e6b 100644 --- a/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md +++ b/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md @@ -23,7 +23,7 @@ The prefix decrement operator (**`--`**) is analogous to the prefix increment op **Visual Studio 2017 version 15.3 and later** (available in [`/std:c++17`](../build/reference/std-specify-language-standard-version.md) mode and later): The operand of an increment or decrement operator may not be of type **`bool`**. -Both the prefix and postfix increment and decrement operators affect their operands. The key difference between them is the order in which the increment or decrement takes place in the evaluation of an expression. (For more information, see [Postfix Increment and Decrement Operators](../cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md).) In the prefix form, the increment or decrement takes place before the value is used in expression evaluation, so the value of the expression is different from the value of the operand. In the postfix form, the increment or decrement takes place after the value is used in expression evaluation, so the value of the expression is the same as the value of the operand. For example, the following program prints "`++i = 6`": +Both the prefix and postfix increment and decrement operators affect their operands. The key difference between them is the order in which the increment or decrement takes place in the evaluation of an expression. For more information, see [Postfix Increment and Decrement Operators](../cpp/postfix-increment-and-decrement-operators-increment-and-decrement.md). In the prefix form, the increment or decrement takes place before the value is used in expression evaluation, so the value of the expression is different from the value of the operand. In the postfix form, the increment or decrement takes place after the value is used in expression evaluation, so the value of the expression is the same as the value of the operand. For example, the following program prints "`++i = 6`": ```cpp // expre_Increment_and_Decrement_Operators.cpp diff --git a/docs/cpp/standard-conversions.md b/docs/cpp/standard-conversions.md index 083ac66a0f..51f3f37046 100644 --- a/docs/cpp/standard-conversions.md +++ b/docs/cpp/standard-conversions.md @@ -203,7 +203,7 @@ The second case in which a pointer to a class can be converted to a pointer to a The result of such a conversion is a pointer to the *subobject*, the portion of the object that is completely described by the base class. -The following code defines two classes, `A` and `B`, where `B` is derived from `A`. (For more information on inheritance, see [Derived Classes](../cpp/inheritance-cpp.md).) It then defines `bObject`, an object of type `B`, and two pointers (`pA` and `pB`) that point to the object. +The following code defines two classes, `A` and `B`, where `B` is derived from `A`. For more information on inheritance, see [Derived Classes](../cpp/inheritance-cpp.md). It then defines `bObject`, an object of type `B`, and two pointers (`pA` and `pB`) that point to the object. ```cpp // C2039 expected @@ -278,7 +278,7 @@ A reference to a class can be converted to a reference to a base class in these - The specified base class is accessible. -- The conversion is unambiguous. (For more information about ambiguous base-class references, see [Multiple base classes](../cpp/multiple-base-classes.md).) +- The conversion is unambiguous. For more information about ambiguous base-class references, see [Multiple base classes](../cpp/multiple-base-classes.md). The result of the conversion is a pointer to the subobject that represents the base class. diff --git a/docs/cpp/virtual-functions.md b/docs/cpp/virtual-functions.md index 665db8ecdf..0dda0b13f2 100644 --- a/docs/cpp/virtual-functions.md +++ b/docs/cpp/virtual-functions.md @@ -137,7 +137,7 @@ Because virtual functions are called only for objects of class types, you cannot The **`virtual`** keyword can be used when declaring overriding functions in a derived class, but it is unnecessary; overrides of virtual functions are always virtual. -Virtual functions in a base class must be defined unless they are declared using the *pure-specifier*. (For more information about pure virtual functions, see [Abstract Classes](../cpp/abstract-classes-cpp.md).) +Virtual functions in a base class must be defined unless they are declared using the *pure-specifier*. For more information about pure virtual functions, see [Abstract Classes](../cpp/abstract-classes-cpp.md). The virtual function-call mechanism can be suppressed by explicitly qualifying the function name using the scope-resolution operator (`::`). Consider the earlier example involving the `Account` class. To call `PrintBalance` in the base class, use code such as the following: diff --git a/docs/cppcx/wrl/weakref-class.md b/docs/cppcx/wrl/weakref-class.md index 227bdd1cf2..f927b0de41 100644 --- a/docs/cppcx/wrl/weakref-class.md +++ b/docs/cppcx/wrl/weakref-class.md @@ -193,7 +193,7 @@ When this operation completes, an object that represents parameter *`riid`*. - `S_OK` if this operation succeeds, but the current `WeakRef` object has already been released. Parameter *`ptr`* is set to **`nullptr`**. -- `S_OK` if this operation succeeds, but the current `WeakRef` object isn't derived from parameter *`riid`*. Parameter *`ptr`* is set to **`nullptr`**. (For more information, see Remarks.) +- `S_OK` if this operation succeeds, but the current `WeakRef` object isn't derived from parameter *`riid`*. Parameter *`ptr`* is set to **`nullptr`**. For more information, see Remarks. ### Remarks diff --git a/docs/dotnet/how-to-migrate-to-clr.md b/docs/dotnet/how-to-migrate-to-clr.md index f7b4922791..01756ffc80 100644 --- a/docs/dotnet/how-to-migrate-to-clr.md +++ b/docs/dotnet/how-to-migrate-to-clr.md @@ -9,7 +9,7 @@ ms.topic: upgrade-and-migration-article --- # How to: Migrate to `/clr` -This article discusses issues that arise when compiling native code with **`/clr`**. (For more information, see [/clr (Common Language Runtime Compilation)](../build/reference/clr-common-language-runtime-compilation.md).) **`/clr`** allows native C++ code to invoke and be invoked from .NET assemblies in addition to other native C++ code. For more information on the advantages of compiling with **`/clr`**, see [Mixed (Native and Managed) Assemblies](../dotnet/mixed-native-and-managed-assemblies.md) and [Native and .NET Interoperability](../dotnet/native-and-dotnet-interoperability.md). +This article discusses issues that arise when compiling native code with **`/clr`**. For more information, see [/clr (Common Language Runtime Compilation)](../build/reference/clr-common-language-runtime-compilation.md). **`/clr`** allows native C++ code to invoke and be invoked from .NET assemblies in addition to other native C++ code. For more information on the advantages of compiling with **`/clr`**, see [Mixed (Native and Managed) Assemblies](../dotnet/mixed-native-and-managed-assemblies.md) and [Native and .NET Interoperability](../dotnet/native-and-dotnet-interoperability.md). ## Known issues compiling library projects with `/clr` @@ -120,7 +120,7 @@ Native types are **`private`** by default. A **`private`** native type isn't vis ### Floating point and alignment issues -`__controlfp` isn't supported in the common language runtime. (For more information, see [`_control87`, `_controlfp`, `__control87_2`](../c-runtime-library/reference/control87-controlfp-control87-2.md).) The CLR also doesn't respect [`align`](../cpp/align-cpp.md). +`__controlfp` isn't supported in the common language runtime. For more information, see [`_control87`, `_controlfp`, `__control87_2`](../c-runtime-library/reference/control87-controlfp-control87-2.md). The CLR also doesn't respect [`align`](../cpp/align-cpp.md). ### COM initialization diff --git a/docs/mfc/exception-handling-in-mfc.md b/docs/mfc/exception-handling-in-mfc.md index 3d16c77f89..105a773e48 100644 --- a/docs/mfc/exception-handling-in-mfc.md +++ b/docs/mfc/exception-handling-in-mfc.md @@ -40,7 +40,7 @@ Three categories of outcomes can occur when a function is called during program - Erroneous execution - The caller makes some mistake in passing arguments to the function or calls the function in an inappropriate context. This situation causes an error, and it should be detected by an assertion during program development. (For more information on assertions, see [C/C++ Assertions](/visualstudio/debugger/c-cpp-assertions).) + The caller makes some mistake in passing arguments to the function or calls the function in an inappropriate context. This situation causes an error, and it should be detected by an assertion during program development. For more information on assertions, see [C/C++ Assertions](/visualstudio/debugger/c-cpp-assertions). - Abnormal execution diff --git a/docs/mfc/reference/cbasepane-class.md b/docs/mfc/reference/cbasepane-class.md index b535d8ccdd..de3b9ea594 100644 --- a/docs/mfc/reference/cbasepane-class.md +++ b/docs/mfc/reference/cbasepane-class.md @@ -565,8 +565,8 @@ The library adds several new styles for panes. The following table describes the |AFX_CBRS_RESIZE|The pane can be resized. **Important:** This style is not implemented.| |AFX_CBRS_CLOSE|The pane can be closed.| |AFX_CBRS_AUTO_ROLLUP|The pane can be rolled up when it floats.| -|AFX_CBRS_REGULAR_TABS|When one pane docks to another pane that has this style, a regular tabbed window is created. (For more information, see [CTabbedPane Class](../../mfc/reference/ctabbedpane-class.md).)| -|AFX_CBRS_OUTLOOK_TABS|When one pane docks to another pane that has this style, an Outlook-style tabbed window is created. (For more information, see [CMFCOutlookBar Class](../../mfc/reference/cmfcoutlookbar-class.md).)| +|AFX_CBRS_REGULAR_TABS|When one pane docks to another pane that has this style, a regular tabbed window is created. For more information, see [CTabbedPane Class](../../mfc/reference/ctabbedpane-class.md).| +|AFX_CBRS_OUTLOOK_TABS|When one pane docks to another pane that has this style, an Outlook-style tabbed window is created. For more information, see [CMFCOutlookBar Class](../../mfc/reference/cmfcoutlookbar-class.md).| To use the new styles, specify them in *dwControlBarStyle*. diff --git a/docs/mfc/reference/cfont-class.md b/docs/mfc/reference/cfont-class.md index 2b22401550..6a91e72bb9 100644 --- a/docs/mfc/reference/cfont-class.md +++ b/docs/mfc/reference/cfont-class.md @@ -141,7 +141,7 @@ Specifies the desired clipping precision. The clipping precision defines how to To use an embedded read-only font, an application must specify `CLIP_ENCAPSULATE`. -To achieve consistent rotation of device, TrueType, and vector fonts, an application can use the bitwise OR operator (`|`) to combine the `CLIP_LH_ANGLES` value with any of the other *`nClipPrecision`* values. If the `CLIP_LH_ANGLES` bit is set, the rotation for all fonts depends on whether the orientation of the coordinate system is left-handed or right-handed. (For more information about the orientation of coordinate systems, see the description of the *`nOrientation`* parameter.) If `CLIP_LH_ANGLES` is not set, device fonts always rotate counterclockwise, but the rotation of other fonts is dependent on the orientation of the coordinate system. +To achieve consistent rotation of device, TrueType, and vector fonts, an application can use the bitwise OR operator (`|`) to combine the `CLIP_LH_ANGLES` value with any of the other *`nClipPrecision`* values. If the `CLIP_LH_ANGLES` bit is set, the rotation for all fonts depends on whether the orientation of the coordinate system is left-handed or right-handed. For more information about the orientation of coordinate systems, see the description of the *`nOrientation`* parameter. If `CLIP_LH_ANGLES` is not set, device fonts always rotate counterclockwise, but the rotation of other fonts is dependent on the orientation of the coordinate system. *`nQuality`*
Specifies the font's output quality, which defines how carefully the GDI must attempt to match the logical-font attributes to those of an actual physical font. See the `lfQuality` member in the `LOGFONT` structure in the Windows SDK for a list of values. From c98d86ab0eb5545db0a5df91a367de517cf5ffb9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 29 Jul 2025 01:34:49 +0800 Subject: [PATCH 925/981] Update metadata in 21 topics --- docs/c-language/c-comments.md | 5 ++--- docs/c-language/initializing-scalar-types.md | 5 ++--- docs/c-language/l-value-and-r-value-expressions.md | 5 ++--- docs/c-language/parameters.md | 5 ++--- docs/c-language/scope-and-visibility.md | 5 ++--- docs/c-language/typedef-declarations.md | 5 ++--- docs/c-runtime-library/code-pages.md | 3 +-- docs/c-runtime-library/reference/open-wopen.md | 3 +-- docs/c-runtime-library/reference/sopen-wsopen.md | 3 +-- .../reference/strftime-wcsftime-strftime-l-wcsftime-l.md | 5 ++--- docs/cpp/anonymous-class-types.md | 5 ++--- docs/cpp/fundamental-types-cpp.md | 3 +-- docs/cpp/multiple-base-classes.md | 4 ++-- docs/cpp/pointers-to-members.md | 5 ++--- docs/cpp/postfix-expressions.md | 5 ++--- ...ment-and-decrement-operators-increment-and-decrement.md | 5 ++--- docs/cpp/standard-conversions.md | 4 ++-- docs/cpp/virtual-functions.md | 7 +++---- docs/cppcx/wrl/weakref-class.md | 2 +- docs/dotnet/how-to-migrate-to-clr.md | 7 +++---- docs/mfc/exception-handling-in-mfc.md | 5 ++--- 21 files changed, 39 insertions(+), 57 deletions(-) diff --git a/docs/c-language/c-comments.md b/docs/c-language/c-comments.md index f4cb0ff24b..bae1313137 100644 --- a/docs/c-language/c-comments.md +++ b/docs/c-language/c-comments.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: C Comments" title: "C Comments" -ms.date: "06/25/2018" +description: "Learn more about: C Comments" +ms.date: 06/25/2018 helpviewer_keywords: ["code comments, C code", "comments, documenting code", "comments, C code", "/* */ comment delimiters", "comments"] -ms.assetid: 0f5f2825-e673-49e7-8669-94e2f5294989 --- # C Comments diff --git a/docs/c-language/initializing-scalar-types.md b/docs/c-language/initializing-scalar-types.md index 8f19545516..bcd7ca93c1 100644 --- a/docs/c-language/initializing-scalar-types.md +++ b/docs/c-language/initializing-scalar-types.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Initializing Scalar Types" title: "Initializing Scalar Types" -ms.date: "11/04/2016" +description: "Learn more about: Initializing Scalar Types" +ms.date: 11/04/2016 helpviewer_keywords: ["initializing scalar types", "register variables", "initialization, scalar types", "initializing variables, scalar types", "scalar types", "static variables, initializing", "automatic storage class, initializing scalar types", "automatic storage class", "types [C], initializing"] -ms.assetid: 73c516f5-c3ad-4d56-ab3b-f2a82b621104 --- # Initializing Scalar Types diff --git a/docs/c-language/l-value-and-r-value-expressions.md b/docs/c-language/l-value-and-r-value-expressions.md index 423efc65b3..5a646ce54d 100644 --- a/docs/c-language/l-value-and-r-value-expressions.md +++ b/docs/c-language/l-value-and-r-value-expressions.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: L-Value and R-Value Expressions" title: "L-Value and R-Value Expressions" -ms.date: "11/04/2016" +description: "Learn more about: L-Value and R-Value Expressions" +ms.date: 11/04/2016 helpviewer_keywords: ["L-values", "member-selection expressions", "R-value expressions", "subscript expressions"] -ms.assetid: b790303e-ec6f-4d0d-bc55-df42da267172 --- # L-Value and R-Value Expressions diff --git a/docs/c-language/parameters.md b/docs/c-language/parameters.md index 1cf21be284..f2eb26888e 100644 --- a/docs/c-language/parameters.md +++ b/docs/c-language/parameters.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Parameters" title: "Parameters" -ms.date: "11/04/2016" +description: "Learn more about: Parameters" +ms.date: 11/04/2016 helpviewer_keywords: ["arguments [C++], function", "function parameters", "parameters [C++]", "function arguments, vs. parameters", "parameters [C++], function", "functions [C], parameters", "function parameters, syntax", "ellipsis (...), parameters", "... ellipsis"] -ms.assetid: 8f2b8026-78b5-4e21-86a3-bf0f91f05689 --- # Parameters diff --git a/docs/c-language/scope-and-visibility.md b/docs/c-language/scope-and-visibility.md index 74b22dfcf9..8f61550b6c 100644 --- a/docs/c-language/scope-and-visibility.md +++ b/docs/c-language/scope-and-visibility.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Scope and Visibility" title: "Scope and Visibility" -ms.date: "11/04/2016" +description: "Learn more about: Scope and Visibility" +ms.date: 11/04/2016 helpviewer_keywords: ["scope, levels", "visibility", "file scope [C++]"] -ms.assetid: a019eb7c-66ed-46a7-bc9f-89a963930a56 --- # Scope and Visibility diff --git a/docs/c-language/typedef-declarations.md b/docs/c-language/typedef-declarations.md index 50750abc3c..b503212b6c 100644 --- a/docs/c-language/typedef-declarations.md +++ b/docs/c-language/typedef-declarations.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Typedef Declarations" title: "Typedef Declarations" -ms.date: "11/04/2016" +description: "Learn more about: Typedef Declarations" +ms.date: 11/04/2016 helpviewer_keywords: ["declarations, typedef", "typedef declarations", "types [C], declarations"] -ms.assetid: e92a3b82-9269-4bc6-834a-6f431ccac83e --- # Typedef Declarations diff --git a/docs/c-runtime-library/code-pages.md b/docs/c-runtime-library/code-pages.md index d38deedd40..25a6e84f5d 100644 --- a/docs/c-runtime-library/code-pages.md +++ b/docs/c-runtime-library/code-pages.md @@ -1,10 +1,9 @@ --- title: "Code Pages" description: "A description of code page support in the Microsoft C runtime." +ms.date: 11/04/2016 ms.topic: "concept-article" -ms.date: "11/04/2016" helpviewer_keywords: ["character sets [C++], code pages", "ANSI [C++], code pages", "system-default code page", "multibyte code pages [C++]", "localization [C++], code pages", "code pages [C++], types of", "locale code pages [C++]"] -ms.assetid: 4a26fc42-185a-4add-98bf-a7b314ae6186 --- # Code pages diff --git a/docs/c-runtime-library/reference/open-wopen.md b/docs/c-runtime-library/reference/open-wopen.md index eec84497e3..13237079ca 100644 --- a/docs/c-runtime-library/reference/open-wopen.md +++ b/docs/c-runtime-library/reference/open-wopen.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _open, _wopen" title: "_open, _wopen" +description: "Learn more about: _open, _wopen" ms.date: 05/18/2022 api_name: ["_open", "_wopen"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-stdio-l1-1-0.dll"] @@ -8,7 +8,6 @@ api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["CORECRT_IO/_open", "CORECRT_WIO/_wopen", "TCHAR/_topen", "_open", "_wopen", "_topen"] helpviewer_keywords: ["opening files, for file I/O", "topen function", "_open function", "_topen function", "_wopen function", "files [C++], opening", "wopen function", "open function"] -ms.assetid: 13f6a0c3-d1aa-450d-a7aa-74abc91b163e --- # `_open`, `_wopen` diff --git a/docs/c-runtime-library/reference/sopen-wsopen.md b/docs/c-runtime-library/reference/sopen-wsopen.md index 2ea72da9b5..8d57455bb2 100644 --- a/docs/c-runtime-library/reference/sopen-wsopen.md +++ b/docs/c-runtime-library/reference/sopen-wsopen.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _sopen, _wsopen" title: "_sopen, _wsopen" +description: "Learn more about: _sopen, _wsopen" ms.date: 05/18/2022 api_name: ["_sopen", "_wsopen", "_o__sopen"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-stdio-l1-1-0.dll"] @@ -8,7 +8,6 @@ api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["CORECRT_IO/_sopen", "CORECRT_WIO/_wsopen", "TCHAR/_tsopen", "_sopen", "_wsopen", "_tsopen", "sopen", "wsopen"] helpviewer_keywords: ["sopen function", "sharing files", "opening files, for sharing", "_sopen function", "wsopen function", "files [C++], opening", "files [C++], sharing", "_wsopen function"] -ms.assetid: a9d4cccf-06e9-414d-96fa-453fca88cc1f --- # `_sopen`, `_wsopen` diff --git a/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md b/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md index 541b23cf3e..92cf4ff91e 100644 --- a/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md +++ b/docs/c-runtime-library/reference/strftime-wcsftime-strftime-l-wcsftime-l.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: strftime, wcsftime, _strftime_l, _wcsftime_l" title: "strftime, wcsftime, _strftime_l, _wcsftime_l" -ms.date: "4/2/2020" +description: "Learn more about: strftime, wcsftime, _strftime_l, _wcsftime_l" +ms.date: 4/2/2020 api_name: ["strftime", "_wcsftime_l", "_strftime_l", "wcsftime", "_o__strftime_l", "_o__wcsftime_l", "_o_strftime", "_o_wcsftime"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-time-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_tcsftime", "strftime", "wcsftime", "_strftime_l", "_wcsftime_l"] helpviewer_keywords: ["_strftime_l function", "strftime function", "tcsftime function", "_wcsftime_l function", "wcsftime function", "_tcsftime function", "time strings"] -ms.assetid: 6330ff20-4729-4c4a-82af-932915d893ea --- # `strftime`, `wcsftime`, `_strftime_l`, `_wcsftime_l` diff --git a/docs/cpp/anonymous-class-types.md b/docs/cpp/anonymous-class-types.md index 53d162606f..2e26ebc728 100644 --- a/docs/cpp/anonymous-class-types.md +++ b/docs/cpp/anonymous-class-types.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Anonymous Class Types" title: "Anonymous Class Types" -ms.date: "11/04/2016" +description: "Learn more about: Anonymous Class Types" +ms.date: 11/04/2016 helpviewer_keywords: ["class types [C++], anonymous", "anonymous class types"] -ms.assetid: 9ba667b2-8c2a-4c29-82a6-fa120b9233c8 --- # Anonymous Class Types diff --git a/docs/cpp/fundamental-types-cpp.md b/docs/cpp/fundamental-types-cpp.md index 1122ea1144..69c1c4ca01 100644 --- a/docs/cpp/fundamental-types-cpp.md +++ b/docs/cpp/fundamental-types-cpp.md @@ -1,10 +1,9 @@ --- +title: "Built-in types (C++)" description: "Learn more about: Built-in types (C++)" -title: "Built-in types (C++)" ms.date: 07/22/2020 f1_keywords: ["__int128_cpp", "__wchar_t_cpp", "char_cpp", "char8_t_cpp", "char16_t_cpp", "char32_t_cpp", "double_cpp", "float_cpp", "int_cpp", "long_cpp", "long_double_cpp", "short_cpp", "signed_cpp", "unsigned_cpp", "unsigned_int_cpp", "wchar_t_cpp"] helpviewer_keywords: ["specifiers [C++], type", "float keyword [C++]", "char keyword [C++]", "__wchar_t keyword [C++]", "signed types [C++], summary of data types", "Integer data type [C++], C++ data types", "arithmetic operations [C++], types", "int data type", "unsigned types [C++], summary of data types", "short data type [C++]", "double data type [C++], summary of types", "long long keyword [C++]", "long double keyword [C++]", "unsigned types [C++]", "signed types [C++]", "void keyword [C++]", "storage [C++], basic type", "integral types, C++", "wchar_t keyword [C++]", "floating-point numbers [C++], C++ data types", "long keyword [C++]", "type specifiers [C++]", "integral types", "long keyword [C++]", "storing types [C++]", "data types [C++], void"] -ms.assetid: 58b0106a-0406-4b74-a430-7cbd315c0f89 --- # Built-in types (C++) diff --git a/docs/cpp/multiple-base-classes.md b/docs/cpp/multiple-base-classes.md index b71004540e..2ed8923362 100644 --- a/docs/cpp/multiple-base-classes.md +++ b/docs/cpp/multiple-base-classes.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Multiple Base Classes" title: "Multiple Base Classes" -ms.date: "11/19/2018" +description: "Learn more about: Multiple Base Classes" +ms.date: 11/19/2018 helpviewer_keywords: ["base classes [C++], multiple", "derived classes [C++], multiple bases", "multiple inheritance, class declaration", "multiple base classes [C++]"] --- # Multiple Base Classes diff --git a/docs/cpp/pointers-to-members.md b/docs/cpp/pointers-to-members.md index f92ee99c25..9512ed71b3 100644 --- a/docs/cpp/pointers-to-members.md +++ b/docs/cpp/pointers-to-members.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Pointers to Members" title: "Pointers to Members" -ms.date: "11/04/2016" +description: "Learn more about: Pointers to Members" +ms.date: 11/04/2016 helpviewer_keywords: ["declarations, pointers", "class members [C++], pointers to", "pointers, to members", "members [C++], pointers to", "pointers, declarations"] -ms.assetid: f42ddb79-9721-4e39-95b1-c56b55591f68 --- # Pointers to Members diff --git a/docs/cpp/postfix-expressions.md b/docs/cpp/postfix-expressions.md index 635fddc23d..dbb3ab65dd 100644 --- a/docs/cpp/postfix-expressions.md +++ b/docs/cpp/postfix-expressions.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Postfix Expressions" title: "Postfix Expressions" -ms.date: "11/04/2016" +description: "Learn more about: Postfix Expressions" +ms.date: 11/04/2016 helpviewer_keywords: ["operators [C++], postfix", "postfix expressions", "expressions [C++], postfix"] -ms.assetid: 7ac62a57-06df-422f-b012-a75b37d7cb9b --- # Postfix Expressions diff --git a/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md b/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md index f83cef3e6b..0ca9c55341 100644 --- a/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md +++ b/docs/cpp/prefix-increment-and-decrement-operators-increment-and-decrement.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Prefix Increment and Decrement Operators: ++ and --" title: "Prefix Increment and Decrement Operators: ++ and --" -ms.date: "11/04/2016" +description: "Learn more about: Prefix Increment and Decrement Operators: ++ and --" +ms.date: 11/04/2016 f1_keywords: ["--", "++"] helpviewer_keywords: ["increment operators [C++], syntax", "++ operator [C++], prefix increment operators", "operators [C++], decrement", "-- operator [C++], prefix decrement operators [C++]", "operators [C++], increment", "decrement operators [C++], syntax", "decrement operators [C++]"] -ms.assetid: 45ea7fc7-f279-4be9-a216-1d9a0ef9eb7b --- # Prefix Increment and Decrement Operators: `++` and `--` diff --git a/docs/cpp/standard-conversions.md b/docs/cpp/standard-conversions.md index 51f3f37046..aabdc570be 100644 --- a/docs/cpp/standard-conversions.md +++ b/docs/cpp/standard-conversions.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Standard conversions" title: "Standard conversions" -ms.date: "10/02/2019" +description: "Learn more about: Standard conversions" +ms.date: 10/02/2019 helpviewer_keywords: ["standard conversions, categories of", "L-values [C++]", "conversions, standard"] --- # Standard conversions diff --git a/docs/cpp/virtual-functions.md b/docs/cpp/virtual-functions.md index 0dda0b13f2..308dcd2575 100644 --- a/docs/cpp/virtual-functions.md +++ b/docs/cpp/virtual-functions.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Virtual Functions" title: "Virtual Functions" -ms.date: "09/10/2019" -helpviewer_keywords: ["functions [C++], virtual functions", "derived classes [C++], virtual functions", "virtual functions"] -ms.assetid: b3e1ed88-2a90-4af8-960a-16f47deb3452 +description: "Learn more about: Virtual Functions" +ms.date: 09/10/2019 adobe-target: true +helpviewer_keywords: ["functions [C++], virtual functions", "derived classes [C++], virtual functions", "virtual functions"] --- # Virtual Functions diff --git a/docs/cppcx/wrl/weakref-class.md b/docs/cppcx/wrl/weakref-class.md index f927b0de41..66191b5c26 100644 --- a/docs/cppcx/wrl/weakref-class.md +++ b/docs/cppcx/wrl/weakref-class.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: WeakRef Class" title: "WeakRef Class" +description: "Learn more about: WeakRef Class" ms.date: 11/22/2021 ms.topic: "reference" f1_keywords: ["client/Microsoft::WRL::WeakRef", "client/Microsoft::WRL::WeakRef::~WeakRef", "client/Microsoft::WRL::WeakRef::As", "client/Microsoft::WRL::WeakRef::AsIID", "client/Microsoft::WRL::WeakRef::CopyTo", "client/Microsoft::WRL::WeakRef::operator&", "client/Microsoft::WRL::WeakRef::WeakRef"] diff --git a/docs/dotnet/how-to-migrate-to-clr.md b/docs/dotnet/how-to-migrate-to-clr.md index 01756ffc80..e05adbbaf9 100644 --- a/docs/dotnet/how-to-migrate-to-clr.md +++ b/docs/dotnet/how-to-migrate-to-clr.md @@ -1,11 +1,10 @@ --- -description: "Learn more about: How to: Migrate to /clr" title: "How to: Migrate to /clr" +description: "Learn more about: How to: Migrate to /clr" +ms.date: 09/18/2018 ms.custom: "get-started-article" -ms.date: "09/18/2018" -helpviewer_keywords: ["upgrading Visual C++ applications, /clr compiler option", "compiling native code [C++]", "interoperability [C++], /clr compiler option", "interop [C++], /clr compiler option", "migration [C++], /clr compiler option", "/clr compiler option [C++], porting to"] -ms.assetid: c9290b8b-436a-4510-8b56-eae51f4a9afc ms.topic: upgrade-and-migration-article +helpviewer_keywords: ["upgrading Visual C++ applications, /clr compiler option", "compiling native code [C++]", "interoperability [C++], /clr compiler option", "interop [C++], /clr compiler option", "migration [C++], /clr compiler option", "/clr compiler option [C++], porting to"] --- # How to: Migrate to `/clr` diff --git a/docs/mfc/exception-handling-in-mfc.md b/docs/mfc/exception-handling-in-mfc.md index 105a773e48..29b8e759bf 100644 --- a/docs/mfc/exception-handling-in-mfc.md +++ b/docs/mfc/exception-handling-in-mfc.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Exception Handling in MFC" title: "Exception Handling in MFC" -ms.date: "11/19/2019" +description: "Learn more about: Exception Handling in MFC" +ms.date: 11/19/2019 helpviewer_keywords: ["DAO [MFC], exceptions", "assertions [MFC], When to use exceptions", "exception handling [MFC], MFC", "resource allocation exception", "resources [MFC], allocating", "keywords [MFC], exception handling", "errors [MFC], detected by assertions", "ODBC exceptions [MFC]", "serialization [MFC], exceptions", "Automation [MFC], exceptions", "exception macros [MFC]", "predefined exceptions [MFC]", "C++ exception handling [MFC], enabling", "C++ exception handling [MFC], MFC applications", "requests for unsupported services [MFC]", "database exceptions [MFC]", "archive exceptions [MFC]", "MFC, exceptions", "C++ exception handling [MFC], types of", "macros [MFC], exception handling", "abnormal program execution [MFC]", "OLE exceptions [MFC], MFC exception handling", "error handling [MFC], exceptions and", "class libraries [MFC], exception support", "exceptions [MFC], MFC macros vs. C++ keywords", "memory [MFC], out-of-memory exceptions", "Windows [MFC], resource allocation exceptions", "macros [MFC], MFC exception macros", "function calls [MFC], results", "out-of-memory exceptions [MFC]"] -ms.assetid: 0926627d-2ba7-44a6-babe-d851a4a2517c --- # Exception Handling in MFC From 2de1428b311cad63d3a033fdf521fc5b2c2b1382 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 29 Jul 2025 13:59:11 -0700 Subject: [PATCH 926/981] Highlight the `/Oi` requirement for `memcpy-param-overlap` --- docs/sanitizers/error-memcpy-param-overlap.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/sanitizers/error-memcpy-param-overlap.md b/docs/sanitizers/error-memcpy-param-overlap.md index 49ded7146c..a01d23c484 100644 --- a/docs/sanitizers/error-memcpy-param-overlap.md +++ b/docs/sanitizers/error-memcpy-param-overlap.md @@ -9,6 +9,9 @@ helpviewer_keywords: ["memcpy-param-overlap error", "AddressSanitizer error memc > Address Sanitizer Error: memcpy-param-overlap +> [!NOTE] +> The `/Oi` flag is required to detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and `memmove` as intrinsic functions, which is necessary because some versions of the standard library implement `memcpy` and `memmove` as such. Since ASAN is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when`/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. + The CRT function [`memcpy`](../c-runtime-library/reference/memcpy-wmemcpy.md) **doesn't support** overlapping memory. The CRT provides an alternative to `memcpy` that does support overlapping memory: [`memmove`](../c-runtime-library/reference/memmove-wmemmove.md). A common error is to treat `memmove` as being semantically equivalent to `memcpy`. @@ -39,8 +42,6 @@ cl example1.cpp /fsanitize=address /Zi /Oi devenv /debugexe example1.exe ``` -The [/Oi flag](../build/reference/oi-generate-intrinsic-functions.md) tells the compiler to treat `memcpy` and `memmove` as intrinsic functions. This is necessary because some versions of the standard library implement `memcpy` and `memmove` in the same way. Because ASAN is a dynamic analysis tool, it only detects errors with an observable runtime effect. - ### Resulting error :::image type="content" source="media/memcpy-param-overlap-example-1.png" alt-text="Screenshot of debugger displaying memcpy-param-overlap error in example 1."::: From ffd7ba8d9c4508f286af664c6a226a9586c17b47 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 29 Jul 2025 14:03:13 -0700 Subject: [PATCH 927/981] Use sections to delineate x86-specific remarks --- .../reference/oi-generate-intrinsic-functions.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/build/reference/oi-generate-intrinsic-functions.md b/docs/build/reference/oi-generate-intrinsic-functions.md index 22b21114a4..80ee69c7bd 100644 --- a/docs/build/reference/oi-generate-intrinsic-functions.md +++ b/docs/build/reference/oi-generate-intrinsic-functions.md @@ -24,23 +24,21 @@ For more information about which functions have intrinsic forms, see [intrinsic] **/Oi** is only a request to the compiler to replace some function calls with intrinsics. The compiler may call the function (and not replace the function call with an intrinsic) if it results in better performance.\ **/Oi-** turns off this behavior, which may be useful if `/Oi` has been specified elsewhere and you want to override it. -**x86 Specific** +You also use [intrinsic](../../preprocessor/intrinsic.md) to create intrinsic functions, or [function (C/C++)](../../preprocessor/function-c-cpp.md) to explicitly force a function call. + +### x86-specific remarks The intrinsic floating-point functions don't perform any special checks on input values and so work in restricted ranges of input, and have different exception handling and boundary conditions than the library routines with the same name. Using the true intrinsic forms implies loss of IEEE exception handling, and loss of `_matherr` and `errno` functionality; the latter implies loss of ANSI conformance. However, the intrinsic forms can considerably speed up floating-point-intensive programs, and for many programs, the conformance issues are of little practical value. You can use the [`Za`](za-ze-disable-language-extensions.md) compiler option to override generation of true intrinsic floating-point options. In this case, the functions are generated as library routines that pass arguments directly to the floating-point chip instead of pushing them onto the program stack. -**END x86 Specific** - -You also use [intrinsic](../../preprocessor/intrinsic.md) to create intrinsic functions, or [function (C/C++)](../../preprocessor/function-c-cpp.md) to explicitly force a function call. - -### To set this compiler option in the Visual Studio development environment +## To set this compiler option in the Visual Studio development environment 1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md). 1. Select the **Configuration Properties** > **C/C++** > **Optimization** property page. 1. Modify the **Enable Intrinsic Functions** property. -### To set this compiler option programmatically +## To set this compiler option programmatically - See . From 4c112dbd280e5d56fcc2764be4f2432475df8a0a Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 29 Jul 2025 15:13:28 -0700 Subject: [PATCH 928/981] soften wording: make clear that `/Oi` is needed to _reliably_ detect errors, not to detect them entirely --- docs/sanitizers/error-memcpy-param-overlap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanitizers/error-memcpy-param-overlap.md b/docs/sanitizers/error-memcpy-param-overlap.md index a01d23c484..3da467b258 100644 --- a/docs/sanitizers/error-memcpy-param-overlap.md +++ b/docs/sanitizers/error-memcpy-param-overlap.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["memcpy-param-overlap error", "AddressSanitizer error memc > Address Sanitizer Error: memcpy-param-overlap > [!NOTE] -> The `/Oi` flag is required to detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and `memmove` as intrinsic functions, which is necessary because some versions of the standard library implement `memcpy` and `memmove` as such. Since ASAN is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when`/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. +> The `/Oi` flag is required to reliably detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and `memmove` as intrinsic functions, which is necessary because some versions of the standard library implement `memcpy` and `memmove` as such. Since ASAN is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when`/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. The CRT function [`memcpy`](../c-runtime-library/reference/memcpy-wmemcpy.md) **doesn't support** overlapping memory. The CRT provides an alternative to `memcpy` that does support overlapping memory: [`memmove`](../c-runtime-library/reference/memmove-wmemmove.md). From c31d707a1bf318e7df528b6e5cce0522d0619458 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 29 Jul 2025 16:09:31 -0700 Subject: [PATCH 929/981] Tidy up `/Oi` docs: say "you can use" instead of "you can also use" after re-arranging text. --- docs/build/reference/oi-generate-intrinsic-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/reference/oi-generate-intrinsic-functions.md b/docs/build/reference/oi-generate-intrinsic-functions.md index 80ee69c7bd..6903538cac 100644 --- a/docs/build/reference/oi-generate-intrinsic-functions.md +++ b/docs/build/reference/oi-generate-intrinsic-functions.md @@ -24,7 +24,7 @@ For more information about which functions have intrinsic forms, see [intrinsic] **/Oi** is only a request to the compiler to replace some function calls with intrinsics. The compiler may call the function (and not replace the function call with an intrinsic) if it results in better performance.\ **/Oi-** turns off this behavior, which may be useful if `/Oi` has been specified elsewhere and you want to override it. -You also use [intrinsic](../../preprocessor/intrinsic.md) to create intrinsic functions, or [function (C/C++)](../../preprocessor/function-c-cpp.md) to explicitly force a function call. +You can use [intrinsic](../../preprocessor/intrinsic.md) to create intrinsic functions, or [function (C/C++)](../../preprocessor/function-c-cpp.md) to explicitly force a function call. ### x86-specific remarks From 2d75c9a6959618b3af508bade830614ac4c60bf9 Mon Sep 17 00:00:00 2001 From: David Justo Date: Tue, 29 Jul 2025 16:21:09 -0700 Subject: [PATCH 930/981] incorporate feedback --- docs/sanitizers/error-memcpy-param-overlap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanitizers/error-memcpy-param-overlap.md b/docs/sanitizers/error-memcpy-param-overlap.md index 3da467b258..3686347b4f 100644 --- a/docs/sanitizers/error-memcpy-param-overlap.md +++ b/docs/sanitizers/error-memcpy-param-overlap.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["memcpy-param-overlap error", "AddressSanitizer error memc > Address Sanitizer Error: memcpy-param-overlap > [!NOTE] -> The `/Oi` flag is required to reliably detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and `memmove` as intrinsic functions, which is necessary because some versions of the standard library implement `memcpy` and `memmove` as such. Since ASAN is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when`/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. +> The `/Oi` flag is required to reliably detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and other functions as intrinsics, which is necessary because some versions of the standard library implement them as such. Since ASan is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when `/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. The CRT function [`memcpy`](../c-runtime-library/reference/memcpy-wmemcpy.md) **doesn't support** overlapping memory. The CRT provides an alternative to `memcpy` that does support overlapping memory: [`memmove`](../c-runtime-library/reference/memmove-wmemmove.md). From e8cfc6a54070c11d48770b084169b0d3c3c59cb1 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 30 Jul 2025 17:53:50 +0800 Subject: [PATCH 931/981] Clean up 2 stray backticks --- docs/mfc/reference/cdc-class.md | 2 +- docs/sanitizers/asan-known-issues.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mfc/reference/cdc-class.md b/docs/mfc/reference/cdc-class.md index 1c72d7d397..910c96cad2 100644 --- a/docs/mfc/reference/cdc-class.md +++ b/docs/mfc/reference/cdc-class.md @@ -4588,7 +4588,7 @@ BOOL Polyline( *`lpPoints`*\ Points to an array of `POINT` structures or `CPoint` objects to be connected. -*`nCount`*`\ +*`nCount`*\ Specifies the number of points in the array. This value must be at least 2. ### Return Value diff --git a/docs/sanitizers/asan-known-issues.md b/docs/sanitizers/asan-known-issues.md index f797f3006e..41d1292a40 100644 --- a/docs/sanitizers/asan-known-issues.md +++ b/docs/sanitizers/asan-known-issues.md @@ -23,7 +23,7 @@ The following options and functionality are incompatible with [`/fsanitize=addre - [C++ AMP](../parallel/amp/cpp-amp-overview.md) is unsupported, and should be disabled. - [Universal Windows Platform](../cppcx/universal-windows-apps-cpp.md) (UWP) applications are unsupported. - [Special case list](https://clang.llvm.org/docs/SanitizerSpecialCaseList.html) files are unsupported. -- [Precompiled headers built without `/fsanitize`address`](../build/creating-precompiled-header-files.md#consistency-rules-for-yc-and-yu) are unsupported. +- [Precompiled headers built without `/fsanitize=address`](../build/creating-precompiled-header-files.md#consistency-rules-for-yc-and-yu) are unsupported. ## Standard library support From cee9d1f561dfcad779dbe58f97d9862b2636a322 Mon Sep 17 00:00:00 2001 From: Dickson Mwendia <64727760+Dickson-Mwendia@users.noreply.github.com> Date: Wed, 30 Jul 2025 13:16:14 +0300 Subject: [PATCH 932/981] Add SFI ms.custom values --- docs/build/cmake-presets-vs.md | 1 + docs/build/cmake-projects-in-visual-studio.md | 1 + docs/build/get-started-linux-cmake.md | 1 + docs/build/vscpp-step-0-installation.md | 5 ++++- docs/build/vscpp-step-1-create.md | 4 +++- ...kthrough-creating-and-using-a-dynamic-link-library-cpp.md | 1 + .../build-an-opengl-es-application-on-android-and-ios.md | 1 + .../install-and-configure-tools-to-build-using-ios.md | 4 +++- docs/data/odbc/data-source-managing-connections-odbc.md | 1 + docs/data/oledb/crowsetimpl-class.md | 1 + docs/data/oledb/icommandpropertiesimpl-class.md | 1 + docs/data/oledb/irowsetcreatorimpl-class.md | 1 + docs/data/oledb/irowsetinfoimpl-class.md | 1 + docs/data/oledb/isessionpropertiesimpl-class.md | 1 + docs/data/oledb/ole-db-provider-templates-reference.md | 1 + docs/linux/configure-a-linux-project.md | 1 + docs/linux/connect-to-your-remote-linux-computer.md | 1 + docs/linux/deploy-run-and-debug-your-linux-project.md | 4 +++- .../set-up-fips-compliant-secure-remote-linux-development.md | 1 + docs/mfc/reference/cdaodatabase-class.md | 1 + docs/mfc/reference/cdaotabledef-class.md | 1 + docs/mfc/reference/cdaoworkspace-class.md | 1 + docs/mfc/reference/cdatabase-class.md | 1 + ...tn054-calling-dao-directly-while-using-mfc-dao-classes.md | 1 + docs/sanitizers/error-double-free.md | 1 + docs/windows/attributes/db-param.md | 1 + docs/windows/attributes/db-source.md | 1 + docs/windows/mfc-predefined-symbols.md | 1 + .../walkthrough-creating-windows-desktop-applications-cpp.md | 4 +++- 29 files changed, 40 insertions(+), 5 deletions(-) diff --git a/docs/build/cmake-presets-vs.md b/docs/build/cmake-presets-vs.md index d2d2f03f8a..87d3fd7146 100644 --- a/docs/build/cmake-presets-vs.md +++ b/docs/build/cmake-presets-vs.md @@ -3,6 +3,7 @@ title: Configure and build with CMake Presets description: "Reference for using CMake Presets to configure and build CMake projects." ms.date: 06/09/2023 ms.topic: reference +ms.custom: sfi-image-nochange --- # Configure and build with CMake Presets in Visual Studio diff --git a/docs/build/cmake-projects-in-visual-studio.md b/docs/build/cmake-projects-in-visual-studio.md index 69b1bc18ee..b56efcce7e 100644 --- a/docs/build/cmake-projects-in-visual-studio.md +++ b/docs/build/cmake-projects-in-visual-studio.md @@ -4,6 +4,7 @@ description: "Learn how to create and build C++ projects using CMake in Visual S ms.date: 03/18/2025 ms.topic: concept-article f1_keywords: ["VS.ToolsOptionsPages.CMake.General", "VS.ToolsOptionsPages.CMake.LanguageServices"] +ms.custom: sfi-image-nochange --- # CMake projects in Visual Studio diff --git a/docs/build/get-started-linux-cmake.md b/docs/build/get-started-linux-cmake.md index 1ffb0fb6d2..b2f59a7381 100644 --- a/docs/build/get-started-linux-cmake.md +++ b/docs/build/get-started-linux-cmake.md @@ -3,6 +3,7 @@ title: Create C++ cross-platform projects in Visual Studio description: "How to set up, compile, and debug a C++ open-source CMake project in Visual Studio that targets both Linux and Windows." ms.topic: tutorial ms.date: 02/07/2022 +ms.custom: sfi-image-nochange --- # Tutorial: Create C++ cross-platform projects in Visual Studio diff --git a/docs/build/vscpp-step-0-installation.md b/docs/build/vscpp-step-0-installation.md index f6e9b8cea0..5ce61195dc 100644 --- a/docs/build/vscpp-step-0-installation.md +++ b/docs/build/vscpp-step-0-installation.md @@ -1,10 +1,13 @@ --- title: Install C and C++ support in Visual Studio description: "Learn how to install Visual Studio with support for Microsoft C and C++ and related workloads." -ms.custom: vs-acquisition, intro-installation ms.date: 03/18/2025 ms.topic: tutorial ms.devlang: "cpp" +ms.custom: + - vs-acquisition + - intro-installation + - sfi-image-nochange --- # Install C and C++ support in Visual Studio diff --git a/docs/build/vscpp-step-1-create.md b/docs/build/vscpp-step-1-create.md index e4830eee92..1337c29d01 100644 --- a/docs/build/vscpp-step-1-create.md +++ b/docs/build/vscpp-step-1-create.md @@ -1,9 +1,11 @@ --- title: Create a C++ console app project description: "Create a Hello World console app using Microsoft C++ in Visual Studio." -ms.custom: "mvc" ms.date: 07/05/2023 ms.topic: "tutorial" +ms.custom: + - "mvc" + - sfi-image-nochange --- # Create a C++ console app project diff --git a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md index ad06919a0c..e777914ccd 100644 --- a/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md +++ b/docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md @@ -4,6 +4,7 @@ description: "Learn how to use C++ to create a Windows dynamic-link library (DLL ms.topic: tutorial ms.date: 03/17/2025 helpviewer_keywords: ["libraries [C++], DLLs", "DLLs [C++], walkthroughs"] +ms.custom: sfi-image-nochange --- # Walkthrough: Create and use your own dynamic-link library (C++) diff --git a/docs/cross-platform/build-an-opengl-es-application-on-android-and-ios.md b/docs/cross-platform/build-an-opengl-es-application-on-android-and-ios.md index 57ef6e6390..319b56d17d 100644 --- a/docs/cross-platform/build-an-opengl-es-application-on-android-and-ios.md +++ b/docs/cross-platform/build-an-opengl-es-application-on-android-and-ios.md @@ -3,6 +3,7 @@ description: "Learn more about: Build an OpenGL ES application on Android and iO title: "Build an OpenGL ES application on Android and iOS" ms.date: "06/09/2023" ms.topic: how-to +ms.custom: sfi-image-nochange --- # Build an OpenGL ES application on Android and iOS diff --git a/docs/cross-platform/install-and-configure-tools-to-build-using-ios.md b/docs/cross-platform/install-and-configure-tools-to-build-using-ios.md index 65b0c66fcd..4e7f878b3a 100644 --- a/docs/cross-platform/install-and-configure-tools-to-build-using-ios.md +++ b/docs/cross-platform/install-and-configure-tools-to-build-using-ios.md @@ -3,8 +3,10 @@ description: "Learn more about: Install and configure tools to build using iOS" title: "Install and configure tools to build using iOS" ms.date: 12/18/2022 ms.assetid: d0c311c9-9eb9-42c5-ba07-25604362cd28 -ms.custom: intro-installation ms.topic: install-set-up-deploy +ms.custom: + - intro-installation + - sfi-image-nochange --- # Install and configure tools to build using iOS diff --git a/docs/data/odbc/data-source-managing-connections-odbc.md b/docs/data/odbc/data-source-managing-connections-odbc.md index 3c08f7c6a1..8667ed4993 100644 --- a/docs/data/odbc/data-source-managing-connections-odbc.md +++ b/docs/data/odbc/data-source-managing-connections-odbc.md @@ -4,6 +4,7 @@ title: "Data Source: Managing Connections (ODBC)" ms.date: "11/04/2016" helpviewer_keywords: ["ODBC data sources [C++], multiuser environments", "generalizing connection strings", "ODBC [C++], disconnecting from data sources", "connection strings [C++], generalizing", "database connections [C++], creating", "GetDefaultConnect method", "connections [C++], data source", "ODBC connections [C++], configuring", "disconnecting from data sources", "databases [C++], connecting to", "ODBC connections [C++], disconnecting", "data sources [C++], connecting to", "ODBC connections [C++], connecting to data source", "ODBC data sources [C++], connections", "database connections [C++], MFC ODBC classes"] ms.assetid: c0adbcdd-c000-40c6-b199-09ffdc7b6ef2 +ms.custom: sfi-ropc-nochange --- # Data Source: Managing Connections (ODBC) diff --git a/docs/data/oledb/crowsetimpl-class.md b/docs/data/oledb/crowsetimpl-class.md index e83271fca5..ee3884e6da 100644 --- a/docs/data/oledb/crowsetimpl-class.md +++ b/docs/data/oledb/crowsetimpl-class.md @@ -5,6 +5,7 @@ ms.date: "11/04/2016" f1_keywords: ["CRowsetImpl", "ATL.CRowsetImpl", "ATL::CRowsetImpl", "CRowsetImpl.NameFromDBID", "CRowsetImpl::NameFromDBID", "CRowsetImpl.SetCommandText", "CRowsetImpl::SetCommandText", "CRowsetImpl.GetColumnInfo", "CRowsetImpl::GetColumnInfo", "CRowsetImpl::GetCommandFromID", "GetCommandFromID", "CRowsetImpl.GetCommandFromID", "CRowsetImpl.ValidateCommandID", "CRowsetImpl::ValidateCommandID", "CRowsetImpl.m_rgRowData", "CRowsetImpl::m_rgRowData", "CRowsetImpl::m_strCommandText", "CRowsetImpl.m_strCommandText", "CRowsetImpl::m_strIndexText", "CRowsetImpl.m_strIndexText"] helpviewer_keywords: ["CRowsetImpl class", "NameFromDBID method", "SetCommandText method", "GetColumnInfo method", "GetCommandFromID method", "ValidateCommandID method", "m_rgRowData", "m_strCommandText", "m_strIndexText"] ms.assetid: e97614b3-b11d-4806-a0d3-b9401331473f +ms.custom: sfi-ropc-nochange --- # CRowsetImpl Class diff --git a/docs/data/oledb/icommandpropertiesimpl-class.md b/docs/data/oledb/icommandpropertiesimpl-class.md index 3d50ed3c85..2b1694ea7c 100644 --- a/docs/data/oledb/icommandpropertiesimpl-class.md +++ b/docs/data/oledb/icommandpropertiesimpl-class.md @@ -5,6 +5,7 @@ ms.date: "11/04/2016" f1_keywords: ["ICommandPropertiesImpl", "ATL.ICommandPropertiesImpl", "ATL::ICommandPropertiesImpl", "ICommandPropertiesImpl::GetProperties", "ICommandPropertiesImpl.GetProperties", "ICommandPropertiesImpl.SetProperties", "ICommandPropertiesImpl::SetProperties"] helpviewer_keywords: ["ICommandPropertiesImpl class", "GetProperties method", "SetProperties method"] ms.assetid: b3cf6aea-527e-4f0d-96e0-669178b021a2 +ms.custom: sfi-ropc-nochange --- # ICommandPropertiesImpl Class diff --git a/docs/data/oledb/irowsetcreatorimpl-class.md b/docs/data/oledb/irowsetcreatorimpl-class.md index 542a3dffab..8fb9c33eab 100644 --- a/docs/data/oledb/irowsetcreatorimpl-class.md +++ b/docs/data/oledb/irowsetcreatorimpl-class.md @@ -5,6 +5,7 @@ ms.date: "11/04/2016" f1_keywords: ["ATL::IRowsetCreatorImpl", "ATL.IRowsetCreatorImpl", "ATL::IRowsetCreatorImpl", "ATL.IRowsetCreatorImpl", "IRowsetCreatorImpl", "IRowsetCreatorImpl.SetSite", "IRowsetCreatorImpl::SetSite", "IRowsetCreatorImpl::SetSite", "SetSite", "ATL.IRowsetCreatorImpl.SetSite", "ATL::IRowsetCreatorImpl::SetSite", "ATL::IRowsetCreatorImpl::SetSite", "ATL.IRowsetCreatorImpl.SetSite"] helpviewer_keywords: ["IRowsetCreatorImpl class", "SetSite method"] ms.assetid: 92cc950f-7978-4754-8d9a-defa63867d82 +ms.custom: sfi-ropc-nochange --- # IRowsetCreatorImpl Class diff --git a/docs/data/oledb/irowsetinfoimpl-class.md b/docs/data/oledb/irowsetinfoimpl-class.md index d05de7876d..d5f545e3bb 100644 --- a/docs/data/oledb/irowsetinfoimpl-class.md +++ b/docs/data/oledb/irowsetinfoimpl-class.md @@ -5,6 +5,7 @@ ms.date: "11/04/2016" f1_keywords: ["ATL.IRowsetInfoImpl", "IRowsetInfoImpl", "ATL::IRowsetInfoImpl", "ATL.IRowsetInfoImpl.GetProperties", "IRowsetInfoImpl.GetProperties", "ATL::IRowsetInfoImpl::GetProperties", "IRowsetInfoImpl::GetProperties", "ATL::IRowsetInfoImpl::GetReferencedRowset", "GetReferencedRowset", "ATL.IRowsetInfoImpl.GetReferencedRowset", "IRowsetInfoImpl.GetReferencedRowset", "IRowsetInfoImpl::GetReferencedRowset", "IRowsetInfoImpl::GetSpecification", "ATL.IRowsetInfoImpl.GetSpecification", "IRowsetInfoImpl.GetSpecification", "GetSpecification", "ATL::IRowsetInfoImpl::GetSpecification"] helpviewer_keywords: ["IRowsetInfoImpl class", "GetProperties method", "GetReferencedRowset method", "GetSpecification method"] ms.assetid: 9c654155-7727-464e-bd31-143e68391a47 +ms.custom: sfi-ropc-nochange --- # IRowsetInfoImpl Class diff --git a/docs/data/oledb/isessionpropertiesimpl-class.md b/docs/data/oledb/isessionpropertiesimpl-class.md index 8904350293..5818498c6e 100644 --- a/docs/data/oledb/isessionpropertiesimpl-class.md +++ b/docs/data/oledb/isessionpropertiesimpl-class.md @@ -5,6 +5,7 @@ ms.date: "11/04/2016" f1_keywords: ["ISessionPropertiesImpl", "ISessionPropertiesImpl::GetProperties", "ISessionPropertiesImpl.GetProperties", "ISessionPropertiesImpl.SetProperties", "ISessionPropertiesImpl::SetProperties"] helpviewer_keywords: ["ISessionPropertiesImpl class", "GetProperties method", "SetProperties method"] ms.assetid: ca0ba254-c7dc-4c52-abec-cf895a0c6a63 +ms.custom: sfi-ropc-nochange --- # ISessionPropertiesImpl Class diff --git a/docs/data/oledb/ole-db-provider-templates-reference.md b/docs/data/oledb/ole-db-provider-templates-reference.md index 8e4f8167f9..ba16a0f8a2 100644 --- a/docs/data/oledb/ole-db-provider-templates-reference.md +++ b/docs/data/oledb/ole-db-provider-templates-reference.md @@ -4,6 +4,7 @@ title: "OLE DB Provider Templates Reference" ms.date: "11/04/2016" helpviewer_keywords: ["OLE DB provider templates"] ms.assetid: 518358f0-bab1-4de9-bce9-4062cc87c11f +ms.custom: sfi-ropc-nochange --- # OLE DB Provider Templates Reference diff --git a/docs/linux/configure-a-linux-project.md b/docs/linux/configure-a-linux-project.md index 88ef152274..ac65f32b52 100644 --- a/docs/linux/configure-a-linux-project.md +++ b/docs/linux/configure-a-linux-project.md @@ -3,6 +3,7 @@ title: "Configure a Linux MSBuild C++ project in Visual Studio" ms.date: "10/16/2020" description: "Configure a MSBuild-based Linux project in Visual Studio so you can build it." ms.assetid: 4d7c6adf-54b9-4b23-bd23-5de0c825b768 +ms.custom: sfi-image-nochange --- # Configure a Linux MSBuild C++ project in Visual Studio diff --git a/docs/linux/connect-to-your-remote-linux-computer.md b/docs/linux/connect-to-your-remote-linux-computer.md index 5803f75c49..0ffc8a5aba 100644 --- a/docs/linux/connect-to-your-remote-linux-computer.md +++ b/docs/linux/connect-to-your-remote-linux-computer.md @@ -3,6 +3,7 @@ title: "Connect to a Target Linux System by Using Visual Studio" description: "Learn how to connect to a remote Linux machine or Windows Subsystem for Linux from inside a Visual Studio C++ project." ms.topic: tutorial ms.date: 03/21/2025 +ms.custom: sfi-image-nochange --- # Connect to your remote Linux system by using Visual Studio diff --git a/docs/linux/deploy-run-and-debug-your-linux-project.md b/docs/linux/deploy-run-and-debug-your-linux-project.md index e52bfcd132..999f3e19c0 100644 --- a/docs/linux/deploy-run-and-debug-your-linux-project.md +++ b/docs/linux/deploy-run-and-debug-your-linux-project.md @@ -2,7 +2,9 @@ title: "Deploy, run, and debug your Linux MSBuild C++ project in Visual Studio" description: "Describes how to compile, execute, and debug code on the remote target from inside a MSBuild-based Linux C++ project in Visual Studio." ms.date: 12/5/2024 -ms.custom: intro-deployment +ms.custom: + - intro-deployment + - sfi-image-nochange --- # Deploy, run, and debug your Linux MSBuild project diff --git a/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md b/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md index b358186376..0faf68ed87 100644 --- a/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md +++ b/docs/linux/set-up-fips-compliant-secure-remote-linux-development.md @@ -3,6 +3,7 @@ title: "Set up FIPS-compliant secure remote Linux development" description: "How to set up a FIPS-compliant cryptographic connection between Visual Studio and a Linux machine for remote development." ms.date: 07/06/2022 ms.topic: how-to +ms.custom: sfi-image-nochange --- # Set up FIPS-compliant secure remote Linux development diff --git a/docs/mfc/reference/cdaodatabase-class.md b/docs/mfc/reference/cdaodatabase-class.md index a59cea4963..f1b5b85af3 100644 --- a/docs/mfc/reference/cdaodatabase-class.md +++ b/docs/mfc/reference/cdaodatabase-class.md @@ -4,6 +4,7 @@ title: "CDaoDatabase Class" ms.date: "09/17/2019" f1_keywords: ["CDaoDatabase", "AFXDAO/CDaoDatabase", "AFXDAO/CDaoDatabase::CDaoDatabase", "AFXDAO/CDaoDatabase::CanTransact", "AFXDAO/CDaoDatabase::CanUpdate", "AFXDAO/CDaoDatabase::Close", "AFXDAO/CDaoDatabase::Create", "AFXDAO/CDaoDatabase::CreateRelation", "AFXDAO/CDaoDatabase::DeleteQueryDef", "AFXDAO/CDaoDatabase::DeleteRelation", "AFXDAO/CDaoDatabase::DeleteTableDef", "AFXDAO/CDaoDatabase::Execute", "AFXDAO/CDaoDatabase::GetConnect", "AFXDAO/CDaoDatabase::GetName", "AFXDAO/CDaoDatabase::GetQueryDefCount", "AFXDAO/CDaoDatabase::GetQueryDefInfo", "AFXDAO/CDaoDatabase::GetQueryTimeout", "AFXDAO/CDaoDatabase::GetRecordsAffected", "AFXDAO/CDaoDatabase::GetRelationCount", "AFXDAO/CDaoDatabase::GetRelationInfo", "AFXDAO/CDaoDatabase::GetTableDefCount", "AFXDAO/CDaoDatabase::GetTableDefInfo", "AFXDAO/CDaoDatabase::GetVersion", "AFXDAO/CDaoDatabase::IsOpen", "AFXDAO/CDaoDatabase::Open", "AFXDAO/CDaoDatabase::SetQueryTimeout", "AFXDAO/CDaoDatabase::m_pDAODatabase", "AFXDAO/CDaoDatabase::m_pWorkspace"] helpviewer_keywords: ["CDaoDatabase [MFC], CDaoDatabase", "CDaoDatabase [MFC], CanTransact", "CDaoDatabase [MFC], CanUpdate", "CDaoDatabase [MFC], Close", "CDaoDatabase [MFC], Create", "CDaoDatabase [MFC], CreateRelation", "CDaoDatabase [MFC], DeleteQueryDef", "CDaoDatabase [MFC], DeleteRelation", "CDaoDatabase [MFC], DeleteTableDef", "CDaoDatabase [MFC], Execute", "CDaoDatabase [MFC], GetConnect", "CDaoDatabase [MFC], GetName", "CDaoDatabase [MFC], GetQueryDefCount", "CDaoDatabase [MFC], GetQueryDefInfo", "CDaoDatabase [MFC], GetQueryTimeout", "CDaoDatabase [MFC], GetRecordsAffected", "CDaoDatabase [MFC], GetRelationCount", "CDaoDatabase [MFC], GetRelationInfo", "CDaoDatabase [MFC], GetTableDefCount", "CDaoDatabase [MFC], GetTableDefInfo", "CDaoDatabase [MFC], GetVersion", "CDaoDatabase [MFC], IsOpen", "CDaoDatabase [MFC], Open", "CDaoDatabase [MFC], SetQueryTimeout", "CDaoDatabase [MFC], m_pDAODatabase", "CDaoDatabase [MFC], m_pWorkspace"] +ms.custom: sfi-ropc-nochange --- # CDaoDatabase Class diff --git a/docs/mfc/reference/cdaotabledef-class.md b/docs/mfc/reference/cdaotabledef-class.md index 5ad89da173..8e9f63fcc5 100644 --- a/docs/mfc/reference/cdaotabledef-class.md +++ b/docs/mfc/reference/cdaotabledef-class.md @@ -4,6 +4,7 @@ title: "CDaoTableDef Class" ms.date: "11/04/2016" f1_keywords: ["CDaoTableDef", "AFXDAO/CDaoTableDef", "AFXDAO/CDaoTableDef::CDaoTableDef", "AFXDAO/CDaoTableDef::Append", "AFXDAO/CDaoTableDef::CanUpdate", "AFXDAO/CDaoTableDef::Close", "AFXDAO/CDaoTableDef::Create", "AFXDAO/CDaoTableDef::CreateField", "AFXDAO/CDaoTableDef::CreateIndex", "AFXDAO/CDaoTableDef::DeleteField", "AFXDAO/CDaoTableDef::DeleteIndex", "AFXDAO/CDaoTableDef::GetAttributes", "AFXDAO/CDaoTableDef::GetConnect", "AFXDAO/CDaoTableDef::GetDateCreated", "AFXDAO/CDaoTableDef::GetDateLastUpdated", "AFXDAO/CDaoTableDef::GetFieldCount", "AFXDAO/CDaoTableDef::GetFieldInfo", "AFXDAO/CDaoTableDef::GetIndexCount", "AFXDAO/CDaoTableDef::GetIndexInfo", "AFXDAO/CDaoTableDef::GetName", "AFXDAO/CDaoTableDef::GetRecordCount", "AFXDAO/CDaoTableDef::GetSourceTableName", "AFXDAO/CDaoTableDef::GetValidationRule", "AFXDAO/CDaoTableDef::GetValidationText", "AFXDAO/CDaoTableDef::IsOpen", "AFXDAO/CDaoTableDef::Open", "AFXDAO/CDaoTableDef::RefreshLink", "AFXDAO/CDaoTableDef::SetAttributes", "AFXDAO/CDaoTableDef::SetConnect", "AFXDAO/CDaoTableDef::SetName", "AFXDAO/CDaoTableDef::SetSourceTableName", "AFXDAO/CDaoTableDef::SetValidationRule", "AFXDAO/CDaoTableDef::SetValidationText", "AFXDAO/CDaoTableDef::m_pDAOTableDef", "AFXDAO/CDaoTableDef::m_pDatabase"] helpviewer_keywords: ["CDaoTableDef [MFC], CDaoTableDef", "CDaoTableDef [MFC], Append", "CDaoTableDef [MFC], CanUpdate", "CDaoTableDef [MFC], Close", "CDaoTableDef [MFC], Create", "CDaoTableDef [MFC], CreateField", "CDaoTableDef [MFC], CreateIndex", "CDaoTableDef [MFC], DeleteField", "CDaoTableDef [MFC], DeleteIndex", "CDaoTableDef [MFC], GetAttributes", "CDaoTableDef [MFC], GetConnect", "CDaoTableDef [MFC], GetDateCreated", "CDaoTableDef [MFC], GetDateLastUpdated", "CDaoTableDef [MFC], GetFieldCount", "CDaoTableDef [MFC], GetFieldInfo", "CDaoTableDef [MFC], GetIndexCount", "CDaoTableDef [MFC], GetIndexInfo", "CDaoTableDef [MFC], GetName", "CDaoTableDef [MFC], GetRecordCount", "CDaoTableDef [MFC], GetSourceTableName", "CDaoTableDef [MFC], GetValidationRule", "CDaoTableDef [MFC], GetValidationText", "CDaoTableDef [MFC], IsOpen", "CDaoTableDef [MFC], Open", "CDaoTableDef [MFC], RefreshLink", "CDaoTableDef [MFC], SetAttributes", "CDaoTableDef [MFC], SetConnect", "CDaoTableDef [MFC], SetName", "CDaoTableDef [MFC], SetSourceTableName", "CDaoTableDef [MFC], SetValidationRule", "CDaoTableDef [MFC], SetValidationText", "CDaoTableDef [MFC], m_pDAOTableDef", "CDaoTableDef [MFC], m_pDatabase"] +ms.custom: sfi-ropc-nochange --- # CDaoTableDef Class diff --git a/docs/mfc/reference/cdaoworkspace-class.md b/docs/mfc/reference/cdaoworkspace-class.md index 777678f429..0f1ddba2a6 100644 --- a/docs/mfc/reference/cdaoworkspace-class.md +++ b/docs/mfc/reference/cdaoworkspace-class.md @@ -4,6 +4,7 @@ title: "CDaoWorkspace Class" ms.date: "11/04/2016" f1_keywords: ["CDaoWorkspace", "AFXDAO/CDaoWorkspace", "AFXDAO/CDaoWorkspace::CDaoWorkspace", "AFXDAO/CDaoWorkspace::Append", "AFXDAO/CDaoWorkspace::BeginTrans", "AFXDAO/CDaoWorkspace::Close", "AFXDAO/CDaoWorkspace::CommitTrans", "AFXDAO/CDaoWorkspace::CompactDatabase", "AFXDAO/CDaoWorkspace::Create", "AFXDAO/CDaoWorkspace::GetDatabaseCount", "AFXDAO/CDaoWorkspace::GetDatabaseInfo", "AFXDAO/CDaoWorkspace::GetIniPath", "AFXDAO/CDaoWorkspace::GetIsolateODBCTrans", "AFXDAO/CDaoWorkspace::GetLoginTimeout", "AFXDAO/CDaoWorkspace::GetName", "AFXDAO/CDaoWorkspace::GetUserName", "AFXDAO/CDaoWorkspace::GetVersion", "AFXDAO/CDaoWorkspace::GetWorkspaceCount", "AFXDAO/CDaoWorkspace::GetWorkspaceInfo", "AFXDAO/CDaoWorkspace::Idle", "AFXDAO/CDaoWorkspace::IsOpen", "AFXDAO/CDaoWorkspace::Open", "AFXDAO/CDaoWorkspace::RepairDatabase", "AFXDAO/CDaoWorkspace::Rollback", "AFXDAO/CDaoWorkspace::SetDefaultPassword", "AFXDAO/CDaoWorkspace::SetDefaultUser", "AFXDAO/CDaoWorkspace::SetIniPath", "AFXDAO/CDaoWorkspace::SetIsolateODBCTrans", "AFXDAO/CDaoWorkspace::SetLoginTimeout", "AFXDAO/CDaoWorkspace::m_pDAOWorkspace"] helpviewer_keywords: ["CDaoWorkspace [MFC], CDaoWorkspace", "CDaoWorkspace [MFC], Append", "CDaoWorkspace [MFC], BeginTrans", "CDaoWorkspace [MFC], Close", "CDaoWorkspace [MFC], CommitTrans", "CDaoWorkspace [MFC], CompactDatabase", "CDaoWorkspace [MFC], Create", "CDaoWorkspace [MFC], GetDatabaseCount", "CDaoWorkspace [MFC], GetDatabaseInfo", "CDaoWorkspace [MFC], GetIniPath", "CDaoWorkspace [MFC], GetIsolateODBCTrans", "CDaoWorkspace [MFC], GetLoginTimeout", "CDaoWorkspace [MFC], GetName", "CDaoWorkspace [MFC], GetUserName", "CDaoWorkspace [MFC], GetVersion", "CDaoWorkspace [MFC], GetWorkspaceCount", "CDaoWorkspace [MFC], GetWorkspaceInfo", "CDaoWorkspace [MFC], Idle", "CDaoWorkspace [MFC], IsOpen", "CDaoWorkspace [MFC], Open", "CDaoWorkspace [MFC], RepairDatabase", "CDaoWorkspace [MFC], Rollback", "CDaoWorkspace [MFC], SetDefaultPassword", "CDaoWorkspace [MFC], SetDefaultUser", "CDaoWorkspace [MFC], SetIniPath", "CDaoWorkspace [MFC], SetIsolateODBCTrans", "CDaoWorkspace [MFC], SetLoginTimeout", "CDaoWorkspace [MFC], m_pDAOWorkspace"] +ms.custom: sfi-ropc-nochange --- # CDaoWorkspace Class diff --git a/docs/mfc/reference/cdatabase-class.md b/docs/mfc/reference/cdatabase-class.md index 77fb3fd71c..7258c18594 100644 --- a/docs/mfc/reference/cdatabase-class.md +++ b/docs/mfc/reference/cdatabase-class.md @@ -4,6 +4,7 @@ title: "CDatabase Class" ms.date: "11/04/2016" f1_keywords: ["CDatabase", "AFXDB/CDatabase", "AFXDB/CDatabase::CDatabase", "AFXDB/CDatabase::BeginTrans", "AFXDB/CDatabase::BindParameters", "AFXDB/CDatabase::Cancel", "AFXDB/CDatabase::CanTransact", "AFXDB/CDatabase::CanUpdate", "AFXDB/CDatabase::Close", "AFXDB/CDatabase::CommitTrans", "AFXDB/CDatabase::ExecuteSQL", "AFXDB/CDatabase::GetBookmarkPersistence", "AFXDB/CDatabase::GetConnect", "AFXDB/CDatabase::GetCursorCommitBehavior", "AFXDB/CDatabase::GetCursorRollbackBehavior", "AFXDB/CDatabase::GetDatabaseName", "AFXDB/CDatabase::IsOpen", "AFXDB/CDatabase::OnSetOptions", "AFXDB/CDatabase::Open", "AFXDB/CDatabase::OpenEx", "AFXDB/CDatabase::Rollback", "AFXDB/CDatabase::SetLoginTimeout", "AFXDB/CDatabase::SetQueryTimeout", "AFXDB/CDatabase::m_hdbc"] helpviewer_keywords: ["CDatabase [MFC], CDatabase", "CDatabase [MFC], BeginTrans", "CDatabase [MFC], BindParameters", "CDatabase [MFC], Cancel", "CDatabase [MFC], CanTransact", "CDatabase [MFC], CanUpdate", "CDatabase [MFC], Close", "CDatabase [MFC], CommitTrans", "CDatabase [MFC], ExecuteSQL", "CDatabase [MFC], GetBookmarkPersistence", "CDatabase [MFC], GetConnect", "CDatabase [MFC], GetCursorCommitBehavior", "CDatabase [MFC], GetCursorRollbackBehavior", "CDatabase [MFC], GetDatabaseName", "CDatabase [MFC], IsOpen", "CDatabase [MFC], OnSetOptions", "CDatabase [MFC], Open", "CDatabase [MFC], OpenEx", "CDatabase [MFC], Rollback", "CDatabase [MFC], SetLoginTimeout", "CDatabase [MFC], SetQueryTimeout", "CDatabase [MFC], m_hdbc"] +ms.custom: sfi-ropc-nochange --- # `CDatabase` Class diff --git a/docs/mfc/tn054-calling-dao-directly-while-using-mfc-dao-classes.md b/docs/mfc/tn054-calling-dao-directly-while-using-mfc-dao-classes.md index 02a2e7b506..c17812d54a 100644 --- a/docs/mfc/tn054-calling-dao-directly-while-using-mfc-dao-classes.md +++ b/docs/mfc/tn054-calling-dao-directly-while-using-mfc-dao-classes.md @@ -4,6 +4,7 @@ title: "TN054: Calling DAO Directly While Using MFC DAO Classes" ms.date: "09/17/2019" helpviewer_keywords: ["MFC, DAO and", "passwords [MFC], calling DAO", "security [MFC], DAO", "DAO (Data Access Objects), calling directly", "DAO (Data Access Objects), security", "security [MFC]", "TN054", "DAO (Data Access Objects), and MFC"] ms.assetid: f7de7d85-8d6c-4426-aa05-2e617c0da957 +ms.custom: sfi-ropc-nochange --- # TN054: Calling DAO Directly While Using MFC DAO Classes diff --git a/docs/sanitizers/error-double-free.md b/docs/sanitizers/error-double-free.md index 099c9706ec..84b4dd4274 100644 --- a/docs/sanitizers/error-double-free.md +++ b/docs/sanitizers/error-double-free.md @@ -4,6 +4,7 @@ description: "Learn about the double-free Address Sanitizer error." ms.date: 03/02/2021 f1_keywords: ["double-free"] helpviewer_keywords: ["double-free error", "AddressSanitizer error double-free"] +ms.custom: sfi-image-nochange --- # Error: `double-free` diff --git a/docs/windows/attributes/db-param.md b/docs/windows/attributes/db-param.md index 51538ad0a2..cebb586d5d 100644 --- a/docs/windows/attributes/db-param.md +++ b/docs/windows/attributes/db-param.md @@ -5,6 +5,7 @@ ms.date: "10/02/2018" f1_keywords: ["vc-attr.db_param"] helpviewer_keywords: ["db_param attribute"] ms.assetid: a28315f5-4722-459e-92ef-32e83c0b205a +ms.custom: sfi-ropc-nochange --- # db_param diff --git a/docs/windows/attributes/db-source.md b/docs/windows/attributes/db-source.md index 4b5d1ff5a7..d54e30f8a4 100644 --- a/docs/windows/attributes/db-source.md +++ b/docs/windows/attributes/db-source.md @@ -5,6 +5,7 @@ ms.date: "10/02/2018" f1_keywords: ["vc-attr.db_source"] helpviewer_keywords: ["db_source attribute"] ms.assetid: 0ec8bbf7-ade2-4899-bf4c-8608b92779bc +ms.custom: sfi-ropc-nochange --- # db_source diff --git a/docs/windows/mfc-predefined-symbols.md b/docs/windows/mfc-predefined-symbols.md index e245d89aa4..17de2a0e82 100644 --- a/docs/windows/mfc-predefined-symbols.md +++ b/docs/windows/mfc-predefined-symbols.md @@ -4,6 +4,7 @@ title: "MFC Predefined Symbols" ms.date: "02/14/2019" helpviewer_keywords: ["MFC symbols", "symbols [C++], MFC", "MFC database programming symbols", "symbols [C++], MFC", "databases [C++], MFC programming model", "Windows programming MFC symbols [C++]"] ms.assetid: c1e689c4-45d7-40a3-8ee9-f47676cc3bbb +ms.custom: sfi-ropc-nochange --- # MFC Predefined Symbols diff --git a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md index a3b89d0b50..e156b5e7b4 100644 --- a/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md +++ b/docs/windows/walkthrough-creating-windows-desktop-applications-cpp.md @@ -1,10 +1,12 @@ --- title: "Create a Traditional Windows Desktop Application (C++)" description: "Learn how to create a minimal, traditional Windows desktop application using Visual Studio, C++, and the Win32 API." -ms.custom: "get-started-article" ms.topic: tutorial ms.date: 03/17/2025 helpviewer_keywords: ["Windows applications [C++], Win32", "Windows Desktop applications [C++]", "Windows API [C++]"] +ms.custom: + - "get-started-article" + - sfi-image-nochange --- # Walkthrough: Create a traditional Windows desktop application (C++) From 2cd6fb5630276abcc18ec440e55181a50be2a544 Mon Sep 17 00:00:00 2001 From: Dennis Rea Date: Wed, 30 Jul 2025 09:39:11 -0700 Subject: [PATCH 933/981] Attempt to raise Acrolinx score to passing --- docs/sanitizers/error-memcpy-param-overlap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanitizers/error-memcpy-param-overlap.md b/docs/sanitizers/error-memcpy-param-overlap.md index 3686347b4f..5c5c46173d 100644 --- a/docs/sanitizers/error-memcpy-param-overlap.md +++ b/docs/sanitizers/error-memcpy-param-overlap.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["memcpy-param-overlap error", "AddressSanitizer error memc > Address Sanitizer Error: memcpy-param-overlap > [!NOTE] -> The `/Oi` flag is required to reliably detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and other functions as intrinsics, which is necessary because some versions of the standard library implement them as such. Since ASan is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Please note that when `/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions is not guaranteed to be used. See the [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md) for more information. +> The `/Oi` flag is required to reliably detect `memcpy-param-overlap` errors. This flag tells the compiler to treat `memcpy` and other functions as intrinsics, which is necessary because some versions of the standard library implement them as such. Since ASan is a dynamic analysis tool, it can only detect errors with an observable runtime effect. Note that when `/O2` is also set, ASan may not be able to reliably detect `memcpy-param-overlap` errors because the intrinsic variant of these functions isn't guaranteed to be used. For more information, see [`/Oi` docs](../build/reference/oi-generate-intrinsic-functions.md). The CRT function [`memcpy`](../c-runtime-library/reference/memcpy-wmemcpy.md) **doesn't support** overlapping memory. The CRT provides an alternative to `memcpy` that does support overlapping memory: [`memmove`](../c-runtime-library/reference/memmove-wmemmove.md). From d95ce3e135aa25f862927cd9e3be97a1fd7f9939 Mon Sep 17 00:00:00 2001 From: Mark Rotteveel Date: Fri, 1 Aug 2025 10:28:08 +0200 Subject: [PATCH 934/981] Fix URLs to C++ Core Guidelines Replace repo-url with published site URL. The ids used are not valid on the GitHub repository (https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md), but are valid on the published site (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). --- docs/code-quality/c26400.md | 2 +- docs/code-quality/c26401.md | 2 +- docs/code-quality/c26402.md | 2 +- docs/code-quality/c26403.md | 2 +- docs/code-quality/c26405.md | 2 +- docs/code-quality/c26406.md | 2 +- docs/code-quality/c26407.md | 2 +- docs/code-quality/c26408.md | 2 +- docs/code-quality/c26410.md | 4 +- docs/code-quality/c26411.md | 2 +- docs/code-quality/c26415.md | 2 +- docs/code-quality/c26416.md | 2 +- docs/code-quality/c26417.md | 2 +- docs/code-quality/c26418.md | 2 +- docs/code-quality/c26426.md | 2 +- docs/code-quality/c26427.md | 2 +- docs/code-quality/c26429.md | 2 +- docs/code-quality/c26430.md | 2 +- docs/code-quality/c26431.md | 2 +- docs/code-quality/c26433.md | 4 +- docs/code-quality/c26434.md | 2 +- docs/code-quality/c26435.md | 4 +- docs/code-quality/c26436.md | 2 +- docs/code-quality/c26438.md | 2 +- docs/code-quality/c26440.md | 2 +- docs/code-quality/c26443.md | 4 +- docs/code-quality/c26445.md | 2 +- docs/code-quality/c26446.md | 2 +- docs/code-quality/c26447.md | 2 +- docs/code-quality/c26448.md | 2 +- docs/code-quality/c26451.md | 2 +- docs/code-quality/c26456.md | 2 +- docs/code-quality/c26457.md | 2 +- docs/code-quality/c26460.md | 2 +- docs/code-quality/c26461.md | 2 +- docs/code-quality/c26462.md | 2 +- docs/code-quality/c26463.md | 2 +- docs/code-quality/c26464.md | 2 +- docs/code-quality/c26465.md | 2 +- docs/code-quality/c26466.md | 2 +- docs/code-quality/c26471.md | 2 +- docs/code-quality/c26472.md | 2 +- docs/code-quality/c26473.md | 2 +- docs/code-quality/c26474.md | 2 +- docs/code-quality/c26475.md | 2 +- docs/code-quality/c26476.md | 2 +- docs/code-quality/c26477.md | 2 +- docs/code-quality/c26481.md | 4 +- docs/code-quality/c26482.md | 2 +- docs/code-quality/c26483.md | 2 +- docs/code-quality/c26485.md | 4 +- docs/code-quality/c26490.md | 2 +- docs/code-quality/c26491.md | 2 +- docs/code-quality/c26492.md | 2 +- docs/code-quality/c26493.md | 2 +- docs/code-quality/c26495.md | 2 +- docs/code-quality/c26496.md | 2 +- docs/code-quality/c26497.md | 2 +- docs/code-quality/c26812.md | 2 +- docs/code-quality/c26814.md | 2 +- docs/code-quality/c26818.md | 2 +- .../code-analysis-for-c-cpp-overview.md | 2 +- .../code-analysis-for-cpp-corecheck.md | 146 +++++++++--------- .../quick-start-code-analysis-for-c-cpp.md | 36 ++--- .../using-the-cpp-core-guidelines-checkers.md | 36 ++--- docs/cpp/void-cpp.md | 2 +- docs/overview/overview-of-cpp-development.md | 2 +- 67 files changed, 179 insertions(+), 179 deletions(-) diff --git a/docs/code-quality/c26400.md b/docs/code-quality/c26400.md index ccdd3a65e3..99711c0b89 100644 --- a/docs/code-quality/c26400.md +++ b/docs/code-quality/c26400.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26400"] ## Remarks -This check helps to enforce the *rule I.11: Never transfer ownership by a raw pointer (T\*), which is a subset of the rule *R.3: A raw pointer (a T\*) is non-owning*. Specifically, it warns on any call to `operator new`, which saves its result in a variable of raw pointer type. It also warns on calls to functions that return `gsl::owner` if their results are assigned to raw pointers. The idea is that you should clearly state ownership of memory resources. For more information, see the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). +This check helps to enforce the *rule I.11: Never transfer ownership by a raw pointer (T\*), which is a subset of the rule *R.3: A raw pointer (a T\*) is non-owning*. Specifically, it warns on any call to `operator new`, which saves its result in a variable of raw pointer type. It also warns on calls to functions that return `gsl::owner` if their results are assigned to raw pointers. The idea is that you should clearly state ownership of memory resources. For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). The easiest way to fix this warning is to use **`auto`** declaration if the resource is assigned immediately at the variable declaration. If this fix isn't possible, then we suggest that you use the type `gsl::owner`. The **`auto`** declarations initialized with operator **`new`** are "owners" because we assume that the result of any allocation is implicitly an owner pointer. We transfer this assumption to the **`auto`** variable and treat it as `owner`. diff --git a/docs/code-quality/c26401.md b/docs/code-quality/c26401.md index 023338c378..c8b4c50b84 100644 --- a/docs/code-quality/c26401.md +++ b/docs/code-quality/c26401.md @@ -20,7 +20,7 @@ Code analysis name: `DONT_DELETE_NON_OWNER` ## See also -[C++ Core Guidelines I.11](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i11-never-transfer-ownership-by-a-raw-pointer-t-or-reference-t) +[C++ Core Guidelines I.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i11-never-transfer-ownership-by-a-raw-pointer-t-or-reference-t) ## Examples diff --git a/docs/code-quality/c26402.md b/docs/code-quality/c26402.md index b79483f914..16f0f248d2 100644 --- a/docs/code-quality/c26402.md +++ b/docs/code-quality/c26402.md @@ -12,7 +12,7 @@ ms.assetid: b9d3d398-697a-4a5d-8bfe-9c667dffb90b ## Remarks -To avoid confusion about whether a pointer owns an object, a function that returns a movable object should allocate it on the stack. It should then return the object by value instead of returning a heap-allocated object. If pointer semantics are required, return a smart pointer instead of a raw pointer. For more information, see [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr): *Warn if a function returns an object that was allocated within the function but has a move constructor. Suggest considering returning it by value instead.* +To avoid confusion about whether a pointer owns an object, a function that returns a movable object should allocate it on the stack. It should then return the object by value instead of returning a heap-allocated object. If pointer semantics are required, return a smart pointer instead of a raw pointer. For more information, see [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr): *Warn if a function returns an object that was allocated within the function but has a move constructor. Suggest considering returning it by value instead.* ## Example diff --git a/docs/code-quality/c26403.md b/docs/code-quality/c26403.md index 2501899487..70f1e92ac5 100644 --- a/docs/code-quality/c26403.md +++ b/docs/code-quality/c26403.md @@ -12,7 +12,7 @@ ms.assetid: 7e14868d-df86-4df3-98d3-71b1e80ba14e Owner pointers are like unique pointers: they own a resource exclusively, and manage release of the resource, or its transfers to other owners. This check validates that a local owner pointer properly maintains its resource through all execution paths in a function. If the resource wasn't transferred to another owner, or wasn't explicitly release, the checker warns, and points to the declaration of the pointer variable. -For more information, see the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). +For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). ## Remarks diff --git a/docs/code-quality/c26405.md b/docs/code-quality/c26405.md index cf14b63ea6..4384443ba2 100644 --- a/docs/code-quality/c26405.md +++ b/docs/code-quality/c26405.md @@ -12,7 +12,7 @@ ms.assetid: 2034d961-3ec5-4184-bbef-aa792e4c03c0 ## Remarks -If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn't release resources). For more information, see the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r3-a-raw-pointer-a-t-is-non-owning). +If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn't release resources). For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r3-a-raw-pointer-a-t-is-non-owning). Code analysis name: `DONT_ASSIGN_TO_VALID` diff --git a/docs/code-quality/c26406.md b/docs/code-quality/c26406.md index 1dc0b113bf..0e4688cdc2 100644 --- a/docs/code-quality/c26406.md +++ b/docs/code-quality/c26406.md @@ -10,7 +10,7 @@ ms.assetid: 02fb8e23-1989-4e24-a5a5-e30f71d00325 > Do not assign a raw pointer to an `owner` (r.3) -This warning enforces R.3 from the C++ Core Guidelines. For more information, see [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r3-a-raw-pointer-a-t-is-non-owning). +This warning enforces R.3 from the C++ Core Guidelines. For more information, see [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r3-a-raw-pointer-a-t-is-non-owning). ## Remarks diff --git a/docs/code-quality/c26407.md b/docs/code-quality/c26407.md index d082e56681..0a5af3152a 100644 --- a/docs/code-quality/c26407.md +++ b/docs/code-quality/c26407.md @@ -10,7 +10,7 @@ ms.assetid: 5539907a-bfa0-40db-82a6-b860c97209e1 > Prefer scoped objects, don't heap-allocate unnecessarily (r.5) -To avoid unnecessary use of pointers, we try to detect common patterns of local allocations. For example, we detect when the result of a call to operator **`new`** is stored in a local variable and later explicitly deleted. This check supports the [C++ Core Guidelines rule R.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r5-prefer-scoped-objects-dont-heap-allocate-unnecessarily): *Prefer scoped objects, don't heap-allocate unnecessarily*. To fix the issue, use an RAII type instead of a raw pointer, and allow it to deal with resources. Obviously, it isn't necessary to create a wrapper type to allocate a single object. Instead, a local variable of the object's type would work better. +To avoid unnecessary use of pointers, we try to detect common patterns of local allocations. For example, we detect when the result of a call to operator **`new`** is stored in a local variable and later explicitly deleted. This check supports the [C++ Core Guidelines rule R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r5-prefer-scoped-objects-dont-heap-allocate-unnecessarily): *Prefer scoped objects, don't heap-allocate unnecessarily*. To fix the issue, use an RAII type instead of a raw pointer, and allow it to deal with resources. Obviously, it isn't necessary to create a wrapper type to allocate a single object. Instead, a local variable of the object's type would work better. ## Remarks diff --git a/docs/code-quality/c26408.md b/docs/code-quality/c26408.md index 159c8cbfb0..c426b63f2a 100644 --- a/docs/code-quality/c26408.md +++ b/docs/code-quality/c26408.md @@ -22,7 +22,7 @@ Code analysis name: `NO_MALLOC_FREE` ## See also -[C++ Core Guidelines R.10](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r10-avoid-malloc-and-free) +[C++ Core Guidelines R.10](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r10-avoid-malloc-and-free) ## Example diff --git a/docs/code-quality/c26410.md b/docs/code-quality/c26410.md index ea77c9e0df..57e0b75a4c 100644 --- a/docs/code-quality/c26410.md +++ b/docs/code-quality/c26410.md @@ -10,11 +10,11 @@ ms.assetid: d1547faf-96c6-48da-90f5-841154d0e878 > The parameter '*parameter*' is a reference to const unique pointer, use `const T*` or `const T&` instead (r.32) -Generally, references to const unique pointer are meaningless. They can safely be replaced by a raw reference or a pointer. This warning enforces [C++ Core Guidelines rule R.32](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r32-take-a-unique_ptrwidget-parameter-to-express-that-a-function-assumes-ownership-of-a-widget). +Generally, references to const unique pointer are meaningless. They can safely be replaced by a raw reference or a pointer. This warning enforces [C++ Core Guidelines rule R.32](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r32-take-a-unique_ptrwidget-parameter-to-express-that-a-function-assumes-ownership-of-a-widget). ## Remarks -- Unique pointer checks have rather broad criteria to identify smart pointers. The [C++ Core Guidelines rule R.31](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r31-if-you-have-non-std-smart-pointers-follow-the-basic-pattern-from-std): *If you have non-std smart pointers, follow the basic pattern from std describes the unique pointer and shared pointer concepts*. The heuristic is simple, but may lead to surprises: a smart pointer type is any type that defines either `operator->` or `operator*`. A copy-able type (shared pointer) must have either a public copy constructor or an overloaded assignment operator that deals with a non-Rvalue reference parameter. +- Unique pointer checks have rather broad criteria to identify smart pointers. The [C++ Core Guidelines rule R.31](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r31-if-you-have-non-std-smart-pointers-follow-the-basic-pattern-from-std): *If you have non-std smart pointers, follow the basic pattern from std describes the unique pointer and shared pointer concepts*. The heuristic is simple, but may lead to surprises: a smart pointer type is any type that defines either `operator->` or `operator*`. A copy-able type (shared pointer) must have either a public copy constructor or an overloaded assignment operator that deals with a non-Rvalue reference parameter. - Template code may produce noisy warnings. Keep in mind that templates can be instantiated with various type parameters with different levels of indirection, including references. Some warnings may not be obvious and fixes may require some rework of templates (for example, explicit removal of reference indirection). If template code is intentionally generic, the warning can be suppressed. diff --git a/docs/code-quality/c26411.md b/docs/code-quality/c26411.md index d0ff131460..e4dd895932 100644 --- a/docs/code-quality/c26411.md +++ b/docs/code-quality/c26411.md @@ -10,7 +10,7 @@ ms.assetid: 5134e51e-8b92-4ee7-94c3-022e318a0e24 > The parameter '*parameter*' is a reference to unique pointer and it is never reassigned or reset, use `T*` or `T&` instead (r.33) -When you pass a unique pointer to a function by reference, it implies that its resource may be released or transferred inside the function. If the function uses its parameter only to access the resource, it's safe to pass a raw pointer or a reference. For more information, see [C++ Core Guidelines rule R.33](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r33-take-a-unique_ptrwidget-parameter-to-express-that-a-function-reseats-thewidget): *Take a unique_ptr\& parameter to express that a function reseats the widget*. +When you pass a unique pointer to a function by reference, it implies that its resource may be released or transferred inside the function. If the function uses its parameter only to access the resource, it's safe to pass a raw pointer or a reference. For more information, see [C++ Core Guidelines rule R.33](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r33-take-a-unique_ptrwidget-parameter-to-express-that-a-function-reseats-thewidget): *Take a unique_ptr\& parameter to express that a function reseats the widget*. ## Remarks diff --git a/docs/code-quality/c26415.md b/docs/code-quality/c26415.md index 8dfc40ae41..5438faa1eb 100644 --- a/docs/code-quality/c26415.md +++ b/docs/code-quality/c26415.md @@ -11,7 +11,7 @@ ms.assetid: 4165f70a-78ae-4a03-b256-c4bd74b02d09 > Smart pointer parameter is used only to access contained pointer. Use T* or T& instead. **C++ Core Guidelines**: -[R.30](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r30-take-smart-pointers-as-parameters-only-to-explicitly-express-lifetime-semantics): Take smart pointers as parameters only to explicitly express lifetime semantics +[R.30](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r30-take-smart-pointers-as-parameters-only-to-explicitly-express-lifetime-semantics): Take smart pointers as parameters only to explicitly express lifetime semantics Using a smart pointer type to pass data to a function indicates that the target function needs to manage the lifetime of the contained object. However, say the function only uses the smart pointer to access the contained object and never actually calls any code that may lead to its deallocation (that is, never affects its lifetime). Then there's usually no need to complicate the interface with smart pointers. A plain pointer or reference to the contained object is preferred. diff --git a/docs/code-quality/c26416.md b/docs/code-quality/c26416.md index 1bd6192adc..658adfea02 100644 --- a/docs/code-quality/c26416.md +++ b/docs/code-quality/c26416.md @@ -11,7 +11,7 @@ ms.assetid: f158207b-45cf-44cf-8e4b-b5b75b56ea0e > Shared pointer parameter is passed by rvalue reference. Pass by value instead. **C++ Core Guidelines**: -[R.34](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r34-take-a-shared_ptrwidget-parameter-to-express-that-a-function-is-part-owner): Take a shared_ptr\ parameter to express that a function is part owner +[R.34](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r34-take-a-shared_ptrwidget-parameter-to-express-that-a-function-is-part-owner): Take a shared_ptr\ parameter to express that a function is part owner Passing a shared pointer by rvalue reference is rarely necessary. Unless it's an implementation of move semantics for a shared pointer type itself, shared pointer objects can be safely passed by value. Using rvalue reference may be also an indication that unique pointer is more appropriate since it clearly transfers unique ownership from caller to callee. diff --git a/docs/code-quality/c26417.md b/docs/code-quality/c26417.md index 7659d01250..3ab549beac 100644 --- a/docs/code-quality/c26417.md +++ b/docs/code-quality/c26417.md @@ -11,7 +11,7 @@ ms.assetid: 0e09fcc6-f9eb-4404-b51e-5815705c6afb > Shared pointer parameter is passed by reference and not reset or reassigned. Use T* or T& instead. **C++ Core Guidelines**: -[R.35](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r35-take-a-shared_ptrwidget-parameter-to-express-that-a-function-might-reseat-the-shared-pointer): Take a shared_ptr\& parameter to express that a function might reseat the shared pointer +[R.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r35-take-a-shared_ptrwidget-parameter-to-express-that-a-function-might-reseat-the-shared-pointer): Take a shared_ptr\& parameter to express that a function might reseat the shared pointer Passing shared pointers by reference may be useful in scenarios where called code updates the target of the smart pointer object, and its caller expects to see such updates. Using a reference solely to reduce costs of passing a shared pointer is questionable. If called code only accesses the target object and never manages its lifetime, it's safer to pass a raw pointer or reference, rather than to expose resource management details. diff --git a/docs/code-quality/c26418.md b/docs/code-quality/c26418.md index d1a07d1b8d..30c44cf0d1 100644 --- a/docs/code-quality/c26418.md +++ b/docs/code-quality/c26418.md @@ -11,7 +11,7 @@ ms.assetid: d2c84a40-8a5d-4018-92c2-6498cdd9b541 > Shared pointer parameter is not copied or moved. Use T* or T& instead. **C++ Core Guidelines**: -[R.36](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r36-take-a-const-shared_ptrwidget-parameter-to-express-that-it-might-retain-a-reference-count-to-the-object-): Take a const shared_ptr\& parameter to express that it might retain a reference count to the object +[R.36](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r36-take-a-const-shared_ptrwidget-parameter-to-express-that-it-might-retain-a-reference-count-to-the-object-): Take a const shared_ptr\& parameter to express that it might retain a reference count to the object If a shared pointer parameter is passed by value or by reference to a constant object, the function is expected to take control of the target object's lifetime without affecting the caller. The code should either copy or move the shared pointer parameter to another shared pointer object, or pass it along to other code by invoking functions that accept shared pointers. Otherwise, a plain pointer or reference may be feasible. diff --git a/docs/code-quality/c26426.md b/docs/code-quality/c26426.md index 818d76d22d..d889960eee 100644 --- a/docs/code-quality/c26426.md +++ b/docs/code-quality/c26426.md @@ -12,7 +12,7 @@ ms.assetid: 6fb5f6d2-b097-47f8-8b49-f2fd4e9bef0e ## C++ Core Guidelines -[I.22](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects +[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects The order of execution of initializers for global objects may be inconsistent or undefined, which can lead to issues that are hard to reproduce and investigate. To avoid such problems, global initializers shouldn't depend on external code that's executed at run time, and that may depend on data that's not yet initialized. This rule flags cases where global objects call functions to obtain their initial values. diff --git a/docs/code-quality/c26427.md b/docs/code-quality/c26427.md index 556e26de75..e71f09e956 100644 --- a/docs/code-quality/c26427.md +++ b/docs/code-quality/c26427.md @@ -11,7 +11,7 @@ ms.assetid: 8fb95a44-8704-45b1-bc55-eccd59b1db2f > Global initializer accesses extern object '*symbol*' (i.22) **C++ Core Guidelines**: -[I.22](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects +[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects Global objects may be initialized in an inconsistent or undefined order, which means that interdependency between them is risky and should be avoided. This guideline is applicable when initializers refer to another object that's considered to be **`extern`**. diff --git a/docs/code-quality/c26429.md b/docs/code-quality/c26429.md index 9543595243..96726440aa 100644 --- a/docs/code-quality/c26429.md +++ b/docs/code-quality/c26429.md @@ -11,7 +11,7 @@ ms.assetid: 4e1c74d5-7307-436c-927b-f74ae863282c > Symbol is never tested for nullness, it can be marked as `gsl::not_null`. **C++ Core Guidelines**: -[F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a `not_null` to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a `not_null` to indicate that "null" isn't a valid value It's a common practice to use asserts to enforce assumptions about the validity of pointer values. The problem is, asserts don't expose assumptions through the interface (such as in return types or parameters). Asserts are also harder to maintain and keep in sync with other code changes. The recommendation is to use `gsl::not_null` from the Guidelines Support Library to mark resources that should never have a null value. The rule `USE_NOTNULL` helps to identify places that omit checks for null and hence can be updated to use `gsl::not_null`. diff --git a/docs/code-quality/c26430.md b/docs/code-quality/c26430.md index 230352b2e9..d417983a03 100644 --- a/docs/code-quality/c26430.md +++ b/docs/code-quality/c26430.md @@ -11,7 +11,7 @@ ms.assetid: 3dca2626-8102-4eed-8ff3-73eb3d5c328c > Symbol is not tested for nullness on all paths. **C++ Core Guidelines**: -[F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value If code ever checks pointer variables for null, it should do so consistently and validate pointers on all paths. Sometimes overaggressive checking for null is still better than the possibility of a hard crash in one of the complicated branches. Ideally, such code should be refactored to be less complex (by splitting it into multiple functions), and to rely on markers like `gsl::not_null`. These markers allow the code to isolate parts of the algorithm that can make safe assumptions about valid pointer values. The rule `TEST_ON_ALL_PATHS` helps to find places where null checks are inconsistent (meaning assumptions may require review). Or, it finds actual bugs where a potential null value can bypass null checks in some of the code paths. diff --git a/docs/code-quality/c26431.md b/docs/code-quality/c26431.md index 4b78314a6d..ded200ef16 100644 --- a/docs/code-quality/c26431.md +++ b/docs/code-quality/c26431.md @@ -11,7 +11,7 @@ ms.assetid: 40be6032-c8de-49ab-8e43-e8eedc0ca0ba > The type of expression '*expr*' is already `gsl::not_null`. Do not test it for nullness (f.23) **C++ Core Guidelines**: -[F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value The marker type `gsl::not_null` from the Guidelines Support Library is used to clearly indicate values that are never null pointers. It causes a hard failure if the assumption doesn't hold at run time. So, obviously, there's no need to check for null if an expression evaluates to a result of type `gsl::not_null`. diff --git a/docs/code-quality/c26433.md b/docs/code-quality/c26433.md index f78b894e0a..31a482a974 100644 --- a/docs/code-quality/c26433.md +++ b/docs/code-quality/c26433.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26433"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) It's not required by the compiler to clearly state that a virtual function overrides its base. Not specifying `override` can cause subtle issues during maintenance if the virtual specification ever changes in the class hierarchy. It also lowers readability and makes an interface's polymorphic behavior less obvious. If a function is clearly marked as `override`, the compiler can check the consistency of the interface, and help to spot issues before they manifest themselves at run time. @@ -44,4 +44,4 @@ public: ## See also -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) diff --git a/docs/code-quality/c26434.md b/docs/code-quality/c26434.md index 0bdfe9d173..03e26c7b2f 100644 --- a/docs/code-quality/c26434.md +++ b/docs/code-quality/c26434.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26434"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) ## Remarks diff --git a/docs/code-quality/c26435.md b/docs/code-quality/c26435.md index ab4ec78c93..ec4fd01356 100644 --- a/docs/code-quality/c26435.md +++ b/docs/code-quality/c26435.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26435"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) To improve readability, the kind of virtual behavior should be stated clearly and without unnecessary redundancy. Even though multiple virtual specifiers can be used simultaneously, it's better to specify one at a time to emphasize the most important aspect of virtual behavior. The following order of importance is apparent: @@ -49,4 +49,4 @@ public: ## See also -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) diff --git a/docs/code-quality/c26436.md b/docs/code-quality/c26436.md index 222d58fb20..ef07743865 100644 --- a/docs/code-quality/c26436.md +++ b/docs/code-quality/c26436.md @@ -10,7 +10,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines C.35 > The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor (c.35) -[**C++ Core Guidelines**: C.35](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-non-virtual): A base class destructor should be either public and virtual, or protected and nonvirtual +[**C++ Core Guidelines**: C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-non-virtual): A base class destructor should be either public and virtual, or protected and nonvirtual If a class defines a virtual function it becomes polymorphic, which implies that derived classes can change its behavior including resource management and destruction logic. Because client code may call polymorphic types via pointers to base classes, there's no way a client can explicitly choose which behavior is appropriate without downcasting. To make sure that resources are managed consistently and destruction occurs according to the actual type's rules, you should define a public virtual destructor. If the type hierarchy is designed to disallow client code to destroy objects directly, destructors should be defined as protected non-virtual. diff --git a/docs/code-quality/c26438.md b/docs/code-quality/c26438.md index e6c696ca31..2317d81513 100644 --- a/docs/code-quality/c26438.md +++ b/docs/code-quality/c26438.md @@ -11,7 +11,7 @@ ms.assetid: c7b3f59c-fb2f-4816-bda4-0fad23c80d83 > Avoid `goto` (es.76) **C++ Core Guidelines**:\ -[ES.76](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es76-avoid-goto): Avoid goto +[ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es76-avoid-goto): Avoid goto The use of **`goto`** is widely considered a dangerous and error-prone practice. It's acceptable only in generated code, such as in a parser generated from a grammar. With modern C++ features and utilities provided by the Guidelines Support Library, it should be easy to avoid **`goto`** altogether. diff --git a/docs/code-quality/c26440.md b/docs/code-quality/c26440.md index edeb1db827..bf4207b1f0 100644 --- a/docs/code-quality/c26440.md +++ b/docs/code-quality/c26440.md @@ -10,7 +10,7 @@ description: CppCoreCheck rule C26440 that enforces C++ Core Guidelines F.6 > Function can be declared 'noexcept'. -[**C++ Core Guidelines** F.6](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f6-if-your-function-may-not-throw-declare-it-noexcept): If your function may not throw, declare it `noexcept` +[**C++ Core Guidelines** F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept): If your function may not throw, declare it `noexcept` If code isn't supposed to cause any exceptions, it should be marked by using the `noexcept` specifier. This annotation helps to simplify error handling on the client code side, and enables the compiler to do more optimizations. diff --git a/docs/code-quality/c26443.md b/docs/code-quality/c26443.md index 090995ebda..5b9b55f44b 100644 --- a/docs/code-quality/c26443.md +++ b/docs/code-quality/c26443.md @@ -13,7 +13,7 @@ This warning was removed in Visual Studio 16.8 to reflect [changes to C.128 in t ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md). +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). The current consensus on the Core Guidelines is to exclude destructors from the 'override explicitly' recommendation. @@ -44,4 +44,4 @@ public: ## See also -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) diff --git a/docs/code-quality/c26445.md b/docs/code-quality/c26445.md index 2602c8bfa5..e81beeba28 100644 --- a/docs/code-quality/c26445.md +++ b/docs/code-quality/c26445.md @@ -13,7 +13,7 @@ A reference to `gsl::span` or `std::string_view` may be an indication of a lifet ## C++ Core Guidelines -[GSL.view: Views](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslview-views) +[GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views) This rule catches subtle lifetime issues that may occur in code migrated from standard containers to new span and view types. Such types can be considered as "references to buffers." Using a reference to a span or view creates an extra layer of indirection. Such indirection is often unnecessary and can be confusing for maintainers. Spans are cheap to copy and can be returned by value from function calls. Obviously, such call results should never be referenced. diff --git a/docs/code-quality/c26446.md b/docs/code-quality/c26446.md index 39091ddfde..c63bb166bf 100644 --- a/docs/code-quality/c26446.md +++ b/docs/code-quality/c26446.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26446"] > Prefer to use gsl::at() instead of unchecked subscript operator (bounds.4). -C++ Core Guidelines: [Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#probounds-bounds-safety-profile). +C++ Core Guidelines: [Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). ## Remarks diff --git a/docs/code-quality/c26447.md b/docs/code-quality/c26447.md index 8c4c2ef820..daf04cf103 100644 --- a/docs/code-quality/c26447.md +++ b/docs/code-quality/c26447.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["C26447"] > The function is declared `noexcept` but calls function *function_name* that may throw exceptions (f.6). C++ Core Guidelines:\ -[F.6: If your function may not throw, declare it noexcept](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f6-if-your-function-may-not-throw-declare-it-noexcept). +[F.6: If your function may not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). ## Remarks diff --git a/docs/code-quality/c26448.md b/docs/code-quality/c26448.md index 6173ec82b5..3da19b9eca 100644 --- a/docs/code-quality/c26448.md +++ b/docs/code-quality/c26448.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26448"] > Consider using `gsl::finally` if final action is intended (gsl.util) -C++ Core Guidelines: [GSL.util: Utilities](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-utilities) +C++ Core Guidelines: [GSL.util: Utilities](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-utilities) The Guidelines Support Library provides a convenient utility to implement the *final action* concept. Since the C++ language doesn't support **try-finally** constructs, it became common to implement custom cleanup types that would invoke arbitrary actions on destruction. The `gsl::finally` utility is implemented in this way and provides a more uniform way to perform final actions across a code base. diff --git a/docs/code-quality/c26451.md b/docs/code-quality/c26451.md index 0067e42718..3a2246a977 100644 --- a/docs/code-quality/c26451.md +++ b/docs/code-quality/c26451.md @@ -49,4 +49,4 @@ void leftshift(int i) noexcept [C26452](c26452.md)\ [C26453](c26453.md)\ [C26454](c26454.md)\ -[ES.103: Don't overflow](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-overflow) +[ES.103: Don't overflow](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-overflow) diff --git a/docs/code-quality/c26456.md b/docs/code-quality/c26456.md index 0abedce51b..d027fb7be1 100644 --- a/docs/code-quality/c26456.md +++ b/docs/code-quality/c26456.md @@ -21,4 +21,4 @@ Code analysis name: `DONT_HIDE_OPERATORS` ## See also -[C++ Core Guideline c.128](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final) +[C++ Core Guideline c.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final) diff --git a/docs/code-quality/c26457.md b/docs/code-quality/c26457.md index e1a5560feb..4502798370 100644 --- a/docs/code-quality/c26457.md +++ b/docs/code-quality/c26457.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26457"] ## Remarks -Excerpt from the [C++ Core Guideline ES.48](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es48-avoid-casts): +Excerpt from the [C++ Core Guideline ES.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es48-avoid-casts): > Never cast to `(void)` to ignore a `[[nodiscard]]` return value. If you deliberately want to discard such a result, first think hard about whether that is really a good idea (there is usually a good reason the author of the function or of the return type used `[[nodiscard]]` in the first place). If you still think it's appropriate and your code reviewer agrees, use `std::ignore =` to turn off the warning which is simple, portable, and easy to grep. diff --git a/docs/code-quality/c26460.md b/docs/code-quality/c26460.md index 2307b0d592..008786d1a0 100644 --- a/docs/code-quality/c26460.md +++ b/docs/code-quality/c26460.md @@ -39,4 +39,4 @@ void Function2(MyStruct& myStruct) ## See also -[C++ Core Guidelines con.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-ref). +[C++ Core Guidelines con.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-ref). diff --git a/docs/code-quality/c26461.md b/docs/code-quality/c26461.md index 85cd180b56..eb18934fd4 100644 --- a/docs/code-quality/c26461.md +++ b/docs/code-quality/c26461.md @@ -45,4 +45,4 @@ void Function2(MyStruct* myStruct) ## See also -[C++ Core Guidelines con.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-ref). +[C++ Core Guidelines con.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-ref). diff --git a/docs/code-quality/c26462.md b/docs/code-quality/c26462.md index f39a230769..376f861615 100644 --- a/docs/code-quality/c26462.md +++ b/docs/code-quality/c26462.md @@ -31,4 +31,4 @@ void function1(int* ptr) ## See also -[C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). diff --git a/docs/code-quality/c26463.md b/docs/code-quality/c26463.md index a23cd9d028..432d73548e 100644 --- a/docs/code-quality/c26463.md +++ b/docs/code-quality/c26463.md @@ -17,4 +17,4 @@ Code analysis name: `USE_CONST_FOR_ELEMENTS` ## See also -[C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). diff --git a/docs/code-quality/c26464.md b/docs/code-quality/c26464.md index c96634aba1..f380a3b654 100644 --- a/docs/code-quality/c26464.md +++ b/docs/code-quality/c26464.md @@ -17,4 +17,4 @@ Code analysis name: `USE_CONST_POINTER_FOR_ELEMENTS` ## See also -[C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). diff --git a/docs/code-quality/c26465.md b/docs/code-quality/c26465.md index d6b7fa8316..1ca3fee5d1 100644 --- a/docs/code-quality/c26465.md +++ b/docs/code-quality/c26465.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26465 that enforces C++ Core Guidelines Type.3 ## See also -[C++ Core Guidelines Type.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-constcast) +[C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-constcast) ## Example diff --git a/docs/code-quality/c26466.md b/docs/code-quality/c26466.md index 13c4d70db4..786d95159b 100644 --- a/docs/code-quality/c26466.md +++ b/docs/code-quality/c26466.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines Type.2 ## See also -[C++ Core Guidelines Type.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-downcast) +[C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-downcast) ## Example diff --git a/docs/code-quality/c26471.md b/docs/code-quality/c26471.md index e525394288..f44d8335af 100644 --- a/docs/code-quality/c26471.md +++ b/docs/code-quality/c26471.md @@ -29,4 +29,4 @@ void function(void* pValue) ## See also -[C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-reinterpretcast) +[C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast) diff --git a/docs/code-quality/c26472.md b/docs/code-quality/c26472.md index 3a18f09f0e..814fae7c91 100644 --- a/docs/code-quality/c26472.md +++ b/docs/code-quality/c26472.md @@ -11,7 +11,7 @@ ms.assetid: 51e215a7-0e0a-4e6c-bff1-805bf5b1af29 > Don't use a static_cast for arithmetic conversions. Use brace initialization, `gsl::narrow_cast`, or `gsl::narrow`. **C++ Core Guidelines**: -[Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts This rule helps to find places where static casts are used to convert between integral types. These casts are unsafe because the compiler wouldn't warn if any data loss occurs. Brace initializers are better for the cases where constants are used, and a compiler error is desired. There are also utilities from the Guidelines Support Library that help to describe intentions clearly: diff --git a/docs/code-quality/c26473.md b/docs/code-quality/c26473.md index 6ff7913be8..6cd55d5897 100644 --- a/docs/code-quality/c26473.md +++ b/docs/code-quality/c26473.md @@ -11,7 +11,7 @@ ms.assetid: d88aaa57-0003-421f-8377-4e6a5c27f2df > Don't cast between pointer types where the source type and the target type are the same. **C++ Core Guidelines**: -[Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts This rule helps to remove unnecessary or suspicious casts. Obviously, when a type is converted to itself, such a conversion is ineffective. Yet the fact that the cast is used may indicate a subtle design issue or a potential for regression if types change in future. It's always safer to use as few casts as possible. diff --git a/docs/code-quality/c26474.md b/docs/code-quality/c26474.md index 30fbf70bef..ca1e986741 100644 --- a/docs/code-quality/c26474.md +++ b/docs/code-quality/c26474.md @@ -11,7 +11,7 @@ ms.assetid: 1e23a8e6-97fa-47f5-a279-b52aa2efafa4 > Don't cast between pointer types when the conversion could be implicit. **C++ Core Guidelines**:\ -[Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts In some cases, implicit casts between pointer types are safe and don't require you to write a specific cast expression. This rule finds instances of unnecessary casts you can safely remove. diff --git a/docs/code-quality/c26475.md b/docs/code-quality/c26475.md index b3856c661f..da0daf01af 100644 --- a/docs/code-quality/c26475.md +++ b/docs/code-quality/c26475.md @@ -11,7 +11,7 @@ ms.assetid: 4ed71cf8-f155-4961-b4fe-77feb3b880c3 > Do not use function style C-casts. **C++ Core Guidelines**: -[ES.49](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es49-if-you-must-use-a-cast-use-a-named-cast): If you must use a cast, use a named cast +[ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es49-if-you-must-use-a-cast-use-a-named-cast): If you must use a cast, use a named cast Function-style casts (for example, `int(1.1)`) are another form of C-style casts (like `(int)1.1`), which have questionable safety. Specifically, the compiler doesn't try to check if any data loss can occur either in C-casts or in function casts. In both cases, it's better either to avoid casting or to use a braced initializer if possible. If neither works, static casts may be suitable, but it's still better to use utilities from the Guidelines Support Library: diff --git a/docs/code-quality/c26476.md b/docs/code-quality/c26476.md index d942009432..b07cb80eea 100644 --- a/docs/code-quality/c26476.md +++ b/docs/code-quality/c26476.md @@ -21,4 +21,4 @@ Code analysis name: `USE_VARIANT` ## See also -[C++ Core Guideline C.181](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Ru-naked) +[C++ Core Guideline C.181](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ru-naked) diff --git a/docs/code-quality/c26477.md b/docs/code-quality/c26477.md index fe713f5618..7da0611abf 100644 --- a/docs/code-quality/c26477.md +++ b/docs/code-quality/c26477.md @@ -21,4 +21,4 @@ Code analysis name: `USE_NULLPTR_NOT_CONSTANT` ## See also -[C++ Core Guideline ES.47](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-nullptr) +[C++ Core Guideline ES.47](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nullptr) diff --git a/docs/code-quality/c26481.md b/docs/code-quality/c26481.md index 051b2c96ee..31249a98f1 100644 --- a/docs/code-quality/c26481.md +++ b/docs/code-quality/c26481.md @@ -12,11 +12,11 @@ ms.assetid: 4fd8694d-b45b-4163-b2d5-88c4889d00ed ## Remarks -This check supports the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) rule [I.13](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Ri-array): *Do not pass an array as a single pointer*. Whenever raw pointers are used in arithmetic operations they should be replaced with safer kinds of buffers, such as `span` or `vector`. +This check supports the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) rule [I.13](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-array): *Do not pass an array as a single pointer*. Whenever raw pointers are used in arithmetic operations they should be replaced with safer kinds of buffers, such as `span` or `vector`. This check is more restrictive than I.13: it doesn't skip `zstring` or `czstring` types. -C26481 and [C26485](c26485.md) come from the [Bounds Safety Profile](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) rules. These rules were implemented in the first release of the C++ Core Guidelines Checker. They're applicable to the raw pointers category since they help to avoid unsafe use of raw pointers. +C26481 and [C26485](c26485.md) come from the [Bounds Safety Profile](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) rules. These rules were implemented in the first release of the C++ Core Guidelines Checker. They're applicable to the raw pointers category since they help to avoid unsafe use of raw pointers. ## Example diff --git a/docs/code-quality/c26482.md b/docs/code-quality/c26482.md index e360a51d10..5f278d8008 100644 --- a/docs/code-quality/c26482.md +++ b/docs/code-quality/c26482.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26482 that enforces C++ Core Guidelines Bounds.2 ## See also -[C++ Core Guidelines Bounds.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) ## Example diff --git a/docs/code-quality/c26483.md b/docs/code-quality/c26483.md index 5e031b2448..73a447ebd4 100644 --- a/docs/code-quality/c26483.md +++ b/docs/code-quality/c26483.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26483"] ## See also -[C++ Core Guidelines Bounds.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) ## Example diff --git a/docs/code-quality/c26485.md b/docs/code-quality/c26485.md index e0aa010236..ef77b05790 100644 --- a/docs/code-quality/c26485.md +++ b/docs/code-quality/c26485.md @@ -12,9 +12,9 @@ ms.assetid: 8915ad2d-7fd6-4bbc-abe4-0b3292ea2170 ## Remarks -Like [C26481](c26481.md), this check helps to enforce the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) rule [I.13](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Ri-array): *Do not pass an array as a single pointer*. The rule detects places where static array type information is lost from decay to a raw pointer. The `zstring` and `czstring` types aren't excluded. +Like [C26481](c26481.md), this check helps to enforce the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) rule [I.13](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-array): *Do not pass an array as a single pointer*. The rule detects places where static array type information is lost from decay to a raw pointer. The `zstring` and `czstring` types aren't excluded. -C26481 and C26485 come from the [Bounds Safety Profile](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) rules. These rules were implemented in the first release of the C++ Core Guidelines Checker. They're applicable to the raw pointers category since they help to avoid unsafe use of raw pointers. +C26481 and C26485 come from the [Bounds Safety Profile](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) rules. These rules were implemented in the first release of the C++ Core Guidelines Checker. They're applicable to the raw pointers category since they help to avoid unsafe use of raw pointers. ## Example diff --git a/docs/code-quality/c26490.md b/docs/code-quality/c26490.md index 48e766138e..0a74626fc4 100644 --- a/docs/code-quality/c26490.md +++ b/docs/code-quality/c26490.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26490 that enforces C++ Core Guidelines Type.1 ## See also -[C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +[C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). ## Example diff --git a/docs/code-quality/c26491.md b/docs/code-quality/c26491.md index b55c5b0f32..760762e2bf 100644 --- a/docs/code-quality/c26491.md +++ b/docs/code-quality/c26491.md @@ -7,4 +7,4 @@ helpviewer_keywords: ["C26491"] --- # Warning C26491 -> Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +> Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). diff --git a/docs/code-quality/c26492.md b/docs/code-quality/c26492.md index 2e6ede538f..f59114cba8 100644 --- a/docs/code-quality/c26492.md +++ b/docs/code-quality/c26492.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26492 that enforces C++ Core Guidelines Type.3 ## See also -[C++ Core Guidelines Type.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +[C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). ## Example diff --git a/docs/code-quality/c26493.md b/docs/code-quality/c26493.md index 34d7225070..8f93b4f497 100644 --- a/docs/code-quality/c26493.md +++ b/docs/code-quality/c26493.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines Type.4 ## See also -[C++ Core Guidelines Type.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +[C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). ## Example diff --git a/docs/code-quality/c26495.md b/docs/code-quality/c26495.md index f99e5697b8..e318171fe7 100644 --- a/docs/code-quality/c26495.md +++ b/docs/code-quality/c26495.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26495"] ## Remarks -A member variable isn't initialized by a constructor or by an initializer. Make sure all variables are initialized by the end of construction. For more information, see C++ Core Guidelines [Type.6](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type) and [C.48](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c48-prefer-in-class-initializers-to-member-initializers-in-constructors-for-constant-initializers). +A member variable isn't initialized by a constructor or by an initializer. Make sure all variables are initialized by the end of construction. For more information, see C++ Core Guidelines [Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type) and [C.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c48-prefer-in-class-initializers-to-member-initializers-in-constructors-for-constant-initializers). This check is intra-procedural. Whenever there's a function call to a nonconst member function, the check assumes that this member function initializes all of the members. This heuristic can result in missed errors and is in place to avoid false positive results. Moreover, when a member is passed by nonconst reference to a function, the check assumes that the function initializes the member. diff --git a/docs/code-quality/c26496.md b/docs/code-quality/c26496.md index b5ad576328..91c0d1f88b 100644 --- a/docs/code-quality/c26496.md +++ b/docs/code-quality/c26496.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26496 that enforces C++ Core Guidelines Con.4 ## See also -[C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). ## Example diff --git a/docs/code-quality/c26497.md b/docs/code-quality/c26497.md index 7a7cd3fc6c..36b52d3bfe 100644 --- a/docs/code-quality/c26497.md +++ b/docs/code-quality/c26497.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines F.4 ## See also -[C++ Core Guidelines F.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rf-constexpr). +[C++ Core Guidelines F.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-constexpr). ## Example diff --git a/docs/code-quality/c26812.md b/docs/code-quality/c26812.md index f5b54e1086..434ffe7fb3 100644 --- a/docs/code-quality/c26812.md +++ b/docs/code-quality/c26812.md @@ -47,4 +47,4 @@ Print_color(Product_info::Red); // Error: cannot convert Product_info to int. ## See also -[Enum.3 Prefer enum class over enum](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#enum3-prefer-class-enums-over-plain-enums) +[Enum.3 Prefer enum class over enum](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#enum3-prefer-class-enums-over-plain-enums) diff --git a/docs/code-quality/c26814.md b/docs/code-quality/c26814.md index 0727406c7d..f446f2644b 100644 --- a/docs/code-quality/c26814.md +++ b/docs/code-quality/c26814.md @@ -33,4 +33,4 @@ void bar() ## See also -[Con.5 Use constexpr for all variables that can be computed at compile time](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-constexpr) +[Con.5 Use constexpr for all variables that can be computed at compile time](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-constexpr) diff --git a/docs/code-quality/c26818.md b/docs/code-quality/c26818.md index aed557b6ad..db6965b105 100644 --- a/docs/code-quality/c26818.md +++ b/docs/code-quality/c26818.md @@ -14,7 +14,7 @@ no-loc: [ default, int, char ] This check covers the missing **`default`** label in switch statements that switch over a non-enumeration type, such as **`int`**, **`char`**, and so on. -For more information, see [ES.79: Use default to handle common cases (only)](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es79-use-default-to-handle-common-cases-only) in the C++ Core Guidelines. +For more information, see [ES.79: Use default to handle common cases (only)](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es79-use-default-to-handle-common-cases-only) in the C++ Core Guidelines. ## Example diff --git a/docs/code-quality/code-analysis-for-c-cpp-overview.md b/docs/code-quality/code-analysis-for-c-cpp-overview.md index 2bde55b76a..33c4a8e91e 100644 --- a/docs/code-quality/code-analysis-for-c-cpp-overview.md +++ b/docs/code-quality/code-analysis-for-c-cpp-overview.md @@ -20,7 +20,7 @@ ms.assetid: 81f0c9e8-f471-4de5-aac4-99db336a8809 --- # Code analysis for C/C++ overview -The C/C++ Code Analysis tool provides information about possible defects in your C/C++ source code. Common coding errors reported by the tool include buffer overruns, uninitialized memory, null pointer dereferences, and memory and resource leaks. The tool can also run checks against the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md). +The C/C++ Code Analysis tool provides information about possible defects in your C/C++ source code. Common coding errors reported by the tool include buffer overruns, uninitialized memory, null pointer dereferences, and memory and resource leaks. The tool can also run checks against the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). ## IDE (integrated development environment) integration diff --git a/docs/code-quality/code-analysis-for-cpp-corecheck.md b/docs/code-quality/code-analysis-for-cpp-corecheck.md index ecae8ba0d0..63877154ba 100644 --- a/docs/code-quality/code-analysis-for-cpp-corecheck.md +++ b/docs/code-quality/code-analysis-for-cpp-corecheck.md @@ -17,250 +17,250 @@ This section lists C++ Core Guidelines Checker warnings. For information about C ## OWNER_POINTER Group [C26402 DONT_HEAP_ALLOCATE_MOVABLE_RESULT](C26402.md)\ -Return a scoped object instead of a heap-allocated if it has a move constructor. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Return a scoped object instead of a heap-allocated if it has a move constructor. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26403 RESET_OR_DELETE_OWNER](C26403.md)\ -Reset or explicitly delete an owner\ pointer '*variable*'. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Reset or explicitly delete an owner\ pointer '*variable*'. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26404 DONT_DELETE_INVALID](C26404.md)\ -Do not delete an owner\ that may be in invalid state. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Do not delete an owner\ that may be in invalid state. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26405 DONT_ASSIGN_TO_VALID](C26405.md)\ -Do not assign to an owner\ that may be in valid state. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Do not assign to an owner\ that may be in valid state. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26406 DONT_ASSIGN_RAW_TO_OWNER](C26406.md)\ -Do not assign a raw pointer to an owner\. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Do not assign a raw pointer to an owner\. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26407 DONT_HEAP_ALLOCATE_UNNECESSARILY](C26407.md)\ -Prefer scoped objects, don't heap-allocate unnecessarily. See [C++ Core Guidelines R.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-scoped). +Prefer scoped objects, don't heap-allocate unnecessarily. See [C++ Core Guidelines R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped). [C26429 USE_NOTNULL](C26429.md)\ -Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). [C26430 TEST_ON_ALL_PATHS](C26430.md)\ -Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). [C26431 DONT_TEST_NOTNULL](C26431.md)\ -The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). ## RAW_POINTER Group [C26400 NO_RAW_POINTER_ASSIGNMENT](c26400.md)\ -Do not assign the result of an allocation or a function call with an owner\ return value to a raw pointer; use owner\ instead. See [C++ Core Guidelines I.11](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Ri-raw). +Do not assign the result of an allocation or a function call with an owner\ return value to a raw pointer; use owner\ instead. See [C++ Core Guidelines I.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-raw). [C26401 DONT_DELETE_NON_OWNER](c26401.md)\ -Do not delete a raw pointer that is not an owner\. See [C++ Core Guidelines I.11](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Ri-raw). +Do not delete a raw pointer that is not an owner\. See [C++ Core Guidelines I.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-raw). [C26402 DONT_HEAP_ALLOCATE_MOVABLE_RESULT](C26402.md)\ -Return a scoped object instead of a heap-allocated if it has a move constructor. See [C++ Core Guidelines R.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-ptr). +Return a scoped object instead of a heap-allocated if it has a move constructor. See [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). [C26408 NO_MALLOC_FREE](C26408.md)\ -Avoid malloc() and free(), prefer the nothrow version of new with delete. See [C++ Core Guidelines R.10](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-mallocfree). +Avoid malloc() and free(), prefer the nothrow version of new with delete. See [C++ Core Guidelines R.10](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-mallocfree). [C26409 NO_NEW_DELETE](C26409.md)\ -Avoid calling new and delete explicitly, use std::make_unique\ instead. See [C++ Core Guidelines R.11](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-newdelete). +Avoid calling new and delete explicitly, use std::make_unique\ instead. See [C++ Core Guidelines R.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-newdelete). [C26429 USE_NOTNULL](C26429.md)\ -Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). [C26430 TEST_ON_ALL_PATHS](C26430.md)\ -Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). [C26431 DONT_TEST_NOTNULL](C26431.md)\ -The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). [C26481 NO_POINTER_ARITHMETIC](C26481.md)\ -Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds). +Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds). [C26485 NO_ARRAY_TO_POINTER_DECAY](C26485.md)\ -Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds). +Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds). ## UNIQUE_POINTER Group [C26410 NO_REF_TO_CONST_UNIQUE_PTR](C26410.md)\ -The parameter '*parameter*' is a reference to `const` unique pointer, use const T* or const T& instead. See [C++ Core Guidelines R.32](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-uniqueptrparam). +The parameter '*parameter*' is a reference to `const` unique pointer, use const T* or const T& instead. See [C++ Core Guidelines R.32](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-uniqueptrparam). [C26411 NO_REF_TO_UNIQUE_PTR](C26411.md)\ -The parameter '*parameter*' is a reference to unique pointer and it is never reassigned or reset, use T* or T& instead. See [C++ Core Guidelines R.33](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-reseat). +The parameter '*parameter*' is a reference to unique pointer and it is never reassigned or reset, use T* or T& instead. See [C++ Core Guidelines R.33](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-reseat). [C26414 RESET_LOCAL_SMART_PTR](C26414.md)\ -Move, copy, reassign, or reset a local smart pointer '*symbol*'. See [C++ Core Guidelines R.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-scoped). +Move, copy, reassign, or reset a local smart pointer '*symbol*'. See [C++ Core Guidelines R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped). [C26415 SMART_PTR_NOT_NEEDED](C26415.md)\ -Smart pointer parameter '*symbol*' is used only to access contained pointer. Use T* or T& instead. See [C++ Core Guidelines R.30](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-smartptrparam). +Smart pointer parameter '*symbol*' is used only to access contained pointer. Use T* or T& instead. See [C++ Core Guidelines R.30](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-smartptrparam). ## SHARED_POINTER Group [C26414 RESET_LOCAL_SMART_PTR](C26414.md)\ -Move, copy, reassign, or reset a local smart pointer '*symbol*'. See [C++ Core Guidelines R.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-scoped). +Move, copy, reassign, or reset a local smart pointer '*symbol*'. See [C++ Core Guidelines R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped). [C26415 SMART_PTR_NOT_NEEDED](C26415.md)\ -Smart pointer parameter '*symbol*' is used only to access contained pointer. Use T* or T& instead. See [C++ Core Guidelines R.30](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-smartptrparam). +Smart pointer parameter '*symbol*' is used only to access contained pointer. Use T* or T& instead. See [C++ Core Guidelines R.30](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-smartptrparam). [C26416 NO_RVALUE_REF_SHARED_PTR](C26416.md)\ -Shared pointer parameter '*symbol*' is passed by rvalue reference. Pass by value instead. See [C++ Core Guidelines R.34](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-sharedptrparam-owner). +Shared pointer parameter '*symbol*' is passed by rvalue reference. Pass by value instead. See [C++ Core Guidelines R.34](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam-owner). [C26417 NO_LVALUE_REF_SHARED_PTR](C26417.md)\ -Shared pointer parameter '*symbol*' is passed by reference and not reset or reassigned. Use T* or T& instead. See [C++ Core Guidelines R.35](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-sharedptrparam). +Shared pointer parameter '*symbol*' is passed by reference and not reset or reassigned. Use T* or T& instead. See [C++ Core Guidelines R.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam). [C26418 NO_VALUE_OR_CONST_REF_SHARED_PTR](C26418.md)\ -Shared pointer parameter '*symbol*' is not copied or moved. Use T* or T& instead. See [C++ Core Guidelines R.36](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-sharedptrparam-const). +Shared pointer parameter '*symbol*' is not copied or moved. Use T* or T& instead. See [C++ Core Guidelines R.36](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam-const). ## DECLARATION Group [C26426 NO_GLOBAL_INIT_CALLS](C26426.md)\ -Global initializer calls a non-constexpr function '*symbol*'. See [C++ Core Guidelines I.22](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i22-avoid-complex-initialization-of-global-objects). +Global initializer calls a non-constexpr function '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects). [C26427 NO_GLOBAL_INIT_EXTERNS](C26427.md)\ -Global initializer accesses extern object '*symbol*'. See [C++ Core Guidelines I.22](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i22-avoid-complex-initialization-of-global-objects). +Global initializer accesses extern object '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects). [C26444 NO_UNNAMED_RAII_OBJECTS](c26444.md)\ -Avoid unnamed objects with custom construction and destruction. See [ES.84: Don't (try to) declare a local variable with no name](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md). +Avoid unnamed objects with custom construction and destruction. See [ES.84: Don't (try to) declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). ## CLASS Group [C26432 DEFINE_OR_DELETE_SPECIAL_OPS](C26432.md)\ -If you define or delete any default operation in the type '*symbol*', define or delete them all. See [C++ Core Guidelines C.21](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c21-if-you-define-or-delete-any-default-operation-define-or-delete-them-all). +If you define or delete any default operation in the type '*symbol*', define or delete them all. See [C++ Core Guidelines C.21](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c21-if-you-define-or-delete-any-default-operation-define-or-delete-them-all). [C26433 OVERRIDE_EXPLICITLY](c26433.md)\ -Function '*symbol*' should be marked with 'override'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). +Function '*symbol*' should be marked with 'override'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). [C26434 DONT_HIDE_METHODS](C26434.md)\ -Function '*symbol_1*' hides a non-virtual function '*symbol_2*'. See [C++ Core Guidelines C.128](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). +Function '*symbol_1*' hides a non-virtual function '*symbol_2*'. See [C++ Core Guidelines C.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). [C26435 SINGLE_VIRTUAL_SPECIFICATION](c26435.md)\ -Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md). +Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). [C26436 NEED_VIRTUAL_DTOR](C26436.md)\ -The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor. See [C++ Core Guidelines C.35](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-nonvirtual). +The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor. See [C++ Core Guidelines C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-nonvirtual). [C26443 NO_EXPLICIT_DTOR_OVERRIDE](c26443.md)\ -Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md). +Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). ## STYLE Group [C26438 NO_GOTO](C26438.md)\ -Avoid `goto`. See [C++ Core Guidelines ES.76](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es76-avoid-goto). +Avoid `goto`. See [C++ Core Guidelines ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es76-avoid-goto). ## FUNCTION Group [C26439 SPECIAL_NOEXCEPT](C26439.md)\ -This kind of function may not throw. Declare it **`noexcept`**. See [C++ Core Guidelines F.6](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f6-if-your-function-may-not-throw-declare-it-noexcept). +This kind of function may not throw. Declare it **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). [C26440 DECLARE_NOEXCEPT](C26440.md)\ -Function '*symbol*' can be declared **`noexcept`**. See [C++ Core Guidelines F.6](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f6-if-your-function-may-not-throw-declare-it-noexcept). +Function '*symbol*' can be declared **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). [C26447 DONT_THROW_IN_NOEXCEPT](c26447.md)\ The function is declared **`noexcept`** but calls a function which may throw exceptions. -See [C++ Core Guidelines: F.6: If your function may not throw, declare it noexcept](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f6-if-your-function-may-not-throw-declare-it-noexcept). +See [C++ Core Guidelines: F.6: If your function may not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). ## CONCURRENCY Group [C26441 NO_UNNAMED_GUARDS](C26441.md)\ -Guard objects must be named. See [C++ Core Guidelines cp.44](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#cp44-remember-to-name-your-lock_guards-and-unique_locks). +Guard objects must be named. See [C++ Core Guidelines cp.44](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cp44-remember-to-name-your-lock_guards-and-unique_locks). ## CONST Group [C26460 USE_CONST_REFERENCE_ARGUMENTS](c26460.md)\ -The reference argument '*argument*' for function '*function*' can be marked as `const`. See [C++ Core Guidelines con.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-ref). +The reference argument '*argument*' for function '*function*' can be marked as `const`. See [C++ Core Guidelines con.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-ref). [C26461 USE_CONST_POINTER_ARGUMENTS](c26461.md):\ -The pointer argument '*argument*' for function '*function*' can be marked as a pointer to `const`. See [C++ Core Guidelines con.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-ref). +The pointer argument '*argument*' for function '*function*' can be marked as a pointer to `const`. See [C++ Core Guidelines con.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-ref). [C26462 USE_CONST_POINTER_FOR_VARIABLE](c26462.md)\ -The value pointed to by '*variable*' is assigned only once, mark it as a pointer to `const`. See [C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The value pointed to by '*variable*' is assigned only once, mark it as a pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). [C26463 USE_CONST_FOR_ELEMENTS](c26463.md)\ -The elements of array '*array*' are assigned only once, mark elements `const`. See [C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The elements of array '*array*' are assigned only once, mark elements `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). [C26464 USE_CONST_POINTER_FOR_ELEMENTS](c26464.md)\ -The values pointed to by elements of array '*array*' are assigned only once, mark elements as pointer to `const`. See [C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The values pointed to by elements of array '*array*' are assigned only once, mark elements as pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). [C26496 USE_CONST_FOR_VARIABLE](c26496.md)\ -The variable '*variable*' is assigned only once, mark it as `const`. See [C++ Core Guidelines con.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The variable '*variable*' is assigned only once, mark it as `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). [C26497 USE_CONSTEXPR_FOR_FUNCTION](c26497.md)\ -This function *function* could be marked `constexpr` if compile-time evaluation is desired. See [C++ Core Guidelines F.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rf-constexpr). +This function *function* could be marked `constexpr` if compile-time evaluation is desired. See [C++ Core Guidelines F.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-constexpr). [C26498 USE_CONSTEXPR_FOR_FUNCTIONCALL](c26498.md)\ -This function call *function* can use `constexpr` if compile-time evaluation is desired. See [C++ Core Guidelines con.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rconst-constexpr). +This function call *function* can use `constexpr` if compile-time evaluation is desired. See [C++ Core Guidelines con.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-constexpr). ## TYPE Group [C26437 DONT_SLICE](C26437.md)\ -Do not slice. See [C++ Core Guidelines ES.63](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es63-dont-slice). +Do not slice. See [C++ Core Guidelines ES.63](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es63-dont-slice). [C26465 NO_CONST_CAST_UNNECESSARY](c26465.md)\ -Don't use `const_cast` to cast away `const`. `const_cast` is not required; constness or volatility is not being removed by this conversion. See [C++ Core Guidelines Type.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-constcast). +Don't use `const_cast` to cast away `const`. `const_cast` is not required; constness or volatility is not being removed by this conversion. See [C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-constcast). [C26466 NO_STATIC_DOWNCAST_POLYMORPHIC](c26466.md)\ -Don't use `static_cast` downcasts. A cast from a polymorphic type should use dynamic_cast. See [C++ Core Guidelines Type.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-downcast). +Don't use `static_cast` downcasts. A cast from a polymorphic type should use dynamic_cast. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-downcast). [C26471 NO_REINTERPRET_CAST_FROM_VOID_PTR](c26471.md)\ -Don't use `reinterpret_cast`. A cast from void* can use `static_cast`. See [C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-reinterpretcast). +Don't use `reinterpret_cast`. A cast from void* can use `static_cast`. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26472 NO_CASTS_FOR_ARITHMETIC_CONVERSION](C26472.md)\ -Don't use a `static_cast` for arithmetic conversions. Use brace initialization, gsl::narrow_cast, or gsl::narrow. See [C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-reinterpretcast). +Don't use a `static_cast` for arithmetic conversions. Use brace initialization, gsl::narrow_cast, or gsl::narrow. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26473 NO_IDENTITY_CAST](C26473.md)\ -Don't cast between pointer types where the source type and the target type are the same. See [C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-reinterpretcast). +Don't cast between pointer types where the source type and the target type are the same. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26474 NO_IMPLICIT_CAST](C26474.md)\ -Don't cast between pointer types when the conversion could be implicit. See [C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Pro-type-reinterpretcast). +Don't cast between pointer types when the conversion could be implicit. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26475 NO_FUNCTION_STYLE_CASTS](C26475.md)\ -Do not use function style C-casts. See [C++ Core Guidelines ES.49](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es49-if-you-must-use-a-cast-use-a-named-cast). +Do not use function style C-casts. See [C++ Core Guidelines ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es49-if-you-must-use-a-cast-use-a-named-cast). [C26490 NO_REINTERPRET_CAST](c26490.md)\ -Don't use `reinterpret_cast`. See [C++ Core Guidelines Type.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Don't use `reinterpret_cast`. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). [C26491 NO_STATIC_DOWNCAST](c26490.md)\ -Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). [C26492 NO_CONST_CAST](c26492.md)\ -Don't use `const_cast` to cast away `const`. See [C++ Core Guidelines Type.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Don't use `const_cast` to cast away `const`. See [C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). [C26493 NO_CSTYLE_CAST](c26493.md)\ -Don't use C-style casts. See [C++ Core Guidelines Type.4](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Don't use C-style casts. See [C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). [C26494 VAR_USE_BEFORE_INIT](c26494.md)\ -Variable '*variable*' is uninitialized. Always initialize an object. See [C++ Core Guidelines Type.5](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Variable '*variable*' is uninitialized. Always initialize an object. See [C++ Core Guidelines Type.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). [C26495 MEMBER_UNINIT](c26495.md)\ -Variable '*variable*' is uninitialized. Always initialize a member variable. See [C++ Core Guidelines Type.6](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-type). +Variable '*variable*' is uninitialized. Always initialize a member variable. See [C++ Core Guidelines Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). ## BOUNDS Group [C26446 USE_GSL_AT](c26446.md)\ -Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#probounds-bounds-safety-profile). +Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). [C26481 NO_POINTER_ARITHMETIC](C26481.md)\ -Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) [C26482 NO_DYNAMIC_ARRAY_INDEXING](c26482.md)\ -Only index into arrays using constant expressions. See [C++ Core Guidelines Bounds.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +Only index into arrays using constant expressions. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) [C26483 STATIC_INDEX_OUT_OF_RANGE](c26483.md)\ -Value *value* is outside the bounds (0, *bound*) of variable '*variable*'. Only index into arrays using constant expressions that are within bounds of the array. See [C++ Core Guidelines Bounds.2](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +Value *value* is outside the bounds (0, *bound*) of variable '*variable*'. Only index into arrays using constant expressions that are within bounds of the array. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) [C26485 NO_ARRAY_TO_POINTER_DECAY](C26485.md)\ -Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-bounds) +Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) ## GSL Group [C26445 NO_SPAN_REF](c26445.md)\ A reference to `gsl::span` or `std::string_view` may be an indication of a lifetime issue. -See [C++ Core Guidelines GSL.view: Views](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslview-views) +See [C++ Core Guidelines GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views) [C26446 USE_GSL_AT](c26446.md)\ -Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#probounds-bounds-safety-profile). +Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). [C26448 USE_GSL_FINALLY](c26448.md)\ -Consider using `gsl::finally` if final action is intended. See [C++ Core Guidelines: GSL.util: Utilities](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#SS-utilities). +Consider using `gsl::finally` if final action is intended. See [C++ Core Guidelines: GSL.util: Utilities](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-utilities). [C26449 NO_SPAN_FROM_TEMPORARY](c26449.md)\ `gsl::span` or `std::string_view` created from a temporary will be invalid when the temporary is invalidated. See -[C++ Core Guidelines: GSL.view: Views](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#gslview-views). +[C++ Core Guidelines: GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views). ## Deprecated Warnings diff --git a/docs/code-quality/quick-start-code-analysis-for-c-cpp.md b/docs/code-quality/quick-start-code-analysis-for-c-cpp.md index 39c416ac32..7c2a7c05f3 100644 --- a/docs/code-quality/quick-start-code-analysis-for-c-cpp.md +++ b/docs/code-quality/quick-start-code-analysis-for-c-cpp.md @@ -27,25 +27,25 @@ Visual Studio includes these standard sets of rules for native code: | Rule Set | Description | |--|--| -| **C++ Core Check Arithmetic Rules** | These rules enforce checks related to [arithmetic operations from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es-expressions-and-statements). | -| **C++ Core Check Bounds Rules** | These rules enforce the [Bounds profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#probounds-bounds-safety-profile). | -| **C++ Core Check Class Rules** | These rules enforce checks related to [classes from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c-classes-and-class-hierarchies). | -| **C++ Core Check Concurrency Rules** | These rules enforce checks related to [concurrency from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#cpcon-concurrency). | -| **C++ Core Check Const Rules** | These rules enforce [const-related checks from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con-constants-and-immutability). | -| **C++ Core Check Declaration Rules** | These rules enforce checks related to [declarations from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#i-interfaces). | -| **C++ Core Check Enum Rules** | These rules enforce [enum-related checks from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-enum). | +| **C++ Core Check Arithmetic Rules** | These rules enforce checks related to [arithmetic operations from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es-expressions-and-statements). | +| **C++ Core Check Bounds Rules** | These rules enforce the [Bounds profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). | +| **C++ Core Check Class Rules** | These rules enforce checks related to [classes from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c-classes-and-class-hierarchies). | +| **C++ Core Check Concurrency Rules** | These rules enforce checks related to [concurrency from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cpcon-concurrency). | +| **C++ Core Check Const Rules** | These rules enforce [const-related checks from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con-constants-and-immutability). | +| **C++ Core Check Declaration Rules** | These rules enforce checks related to [declarations from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i-interfaces). | +| **C++ Core Check Enum Rules** | These rules enforce [enum-related checks from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-enum). | | **C++ Core Check Experimental Rules** | These rules collect some experimental checks. Eventually, we expect these checks to be moved to other rulesets or removed completely. | -| **C++ Core Check Function Rules** | These rules enforce checks related to [functions from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f-functions). | -| **C++ Core Check GSL Rules** | These rules enforce checks related to the [Guidelines Support Library from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-gsl). | -| **C++ Core Check Lifetime Rules** | These rules enforce the [Lifetime profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prolifetime-lifetime-safety-profile). | -| **C++ Core Check Owner Pointer Rules** | These rules enforce resource-management checks related to [`owner` from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). | -| **C++ Core Check Raw Pointer Rules** | These rules enforce resource-management checks related to [raw pointers from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). | -| **C++ Core Check Rules** | These rules enforce a subset of the checks from the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c-core-guidelines). Use this ruleset to include all of the C++ Core Check rules except the Enum and Experimental rulesets. | -| **C++ Core Check Shared Pointer Rules** | These rules enforce resource-management checks related to [types with shared pointer semantics from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). | -| **C++ Core Check STL Rules** | These rules enforce checks related to the [C++ Standard Library from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-stdlib). | -| **C++ Core Check Style Rules** | These rules enforce checks related to use of [expressions and statements from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es-expressions-and-statements). | -| **C++ Core Check Type Rules** | These rules enforce the [Type profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile). | -| **C++ Core Check Unique Pointer Rules** | These rules enforce resource-management checks related to types with [unique pointer semantics from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). | +| **C++ Core Check Function Rules** | These rules enforce checks related to [functions from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f-functions). | +| **C++ Core Check GSL Rules** | These rules enforce checks related to the [Guidelines Support Library from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-gsl). | +| **C++ Core Check Lifetime Rules** | These rules enforce the [Lifetime profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prolifetime-lifetime-safety-profile). | +| **C++ Core Check Owner Pointer Rules** | These rules enforce resource-management checks related to [`owner` from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). | +| **C++ Core Check Raw Pointer Rules** | These rules enforce resource-management checks related to [raw pointers from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). | +| **C++ Core Check Rules** | These rules enforce a subset of the checks from the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c-core-guidelines). Use this ruleset to include all of the C++ Core Check rules except the Enum and Experimental rulesets. | +| **C++ Core Check Shared Pointer Rules** | These rules enforce resource-management checks related to [types with shared pointer semantics from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). | +| **C++ Core Check STL Rules** | These rules enforce checks related to the [C++ Standard Library from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-stdlib). | +| **C++ Core Check Style Rules** | These rules enforce checks related to use of [expressions and statements from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es-expressions-and-statements). | +| **C++ Core Check Type Rules** | These rules enforce the [Type profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile). | +| **C++ Core Check Unique Pointer Rules** | These rules enforce resource-management checks related to types with [unique pointer semantics from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). | | **Concurrency Check Rules** | These rules enforce a set of Win32 concurrency pattern checks in C++. | | **Concurrency Rules** | Adds concurrency rules from C++ Core Guidelines to **Concurrency Check Rules**. | | **Microsoft Native Minimum Rules** | These rules focus on the most critical problems in your native code, including potential security holes and application crashes. We recommend you include this rule set in any custom rule set you create for your native projects. | diff --git a/docs/code-quality/using-the-cpp-core-guidelines-checkers.md b/docs/code-quality/using-the-cpp-core-guidelines-checkers.md index 5b242bc21f..0010cfda98 100644 --- a/docs/code-quality/using-the-cpp-core-guidelines-checkers.md +++ b/docs/code-quality/using-the-cpp-core-guidelines-checkers.md @@ -111,43 +111,43 @@ The C++ Core Guidelines are there to help you write better and safer code. Howev As new rules are added to the C++ Core Guidelines Checker, the number of warnings that are produced for pre-existing code might increase. You can use predefined rule sets to filter which kinds of rules to enable. You'll find reference articles for most rules under [Visual Studio C++ Core Check Reference](code-analysis-for-cpp-corecheck.md). -- **Arithmetic Rules**: Rules to detect arithmetic [overflow](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-overflow), [signed-unsigned operations](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-unsigned), and [bit manipulation](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-nonnegative).15.6 +- **Arithmetic Rules**: Rules to detect arithmetic [overflow](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-overflow), [signed-unsigned operations](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-unsigned), and [bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nonnegative).15.6 -- **Bounds Rules**: Enforce the [Bounds profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#probounds-bounds-safety-profile).15.3 +- **Bounds Rules**: Enforce the [Bounds profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile).15.3 -- **Class Rules**: A few rules that focus on proper use of special member functions and virtual specifications. They're a subset of the checks recommended for [classes and class hierarchies](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-class).15.5 +- **Class Rules**: A few rules that focus on proper use of special member functions and virtual specifications. They're a subset of the checks recommended for [classes and class hierarchies](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-class).15.5 -- **Concurrency Rules**: A single rule, which catches bad guard object declarations. For more information, see [guidelines related to concurrency](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-concurrency).15.5 +- **Concurrency Rules**: A single rule, which catches bad guard object declarations. For more information, see [guidelines related to concurrency](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-concurrency).15.5 -- **Const Rules**: Enforce [const-related checks from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#con-constants-and-immutability).15.3 +- **Const Rules**: Enforce [const-related checks from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con-constants-and-immutability).15.3 -- **Declaration Rules**: A couple of rules from the [interfaces guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-interfaces) that focus on how global variables are declared.15.5 +- **Declaration Rules**: A couple of rules from the [interfaces guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-interfaces) that focus on how global variables are declared.15.5 -- **Enum Rules**: These rules enforce [enum-related checks from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-enum).16.3 +- **Enum Rules**: These rules enforce [enum-related checks from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-enum).16.3 - **Experimental Rules** These are experimental C++ Core Check rules that are useful but not ready for everyday use. Try them out and [provide feedback](https://aka.ms/feedback/suggest?space=62).16.0 -- **Function Rules**: Two checks that help with adoption of the **`noexcept`** specifier. They're part of the guidelines for [clear function design and implementation](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-functions).15.5 +- **Function Rules**: Two checks that help with adoption of the **`noexcept`** specifier. They're part of the guidelines for [clear function design and implementation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-functions).15.5 -- **GSL Rules**: These rules enforce checks related to the [Guidelines Support Library from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-gsl).15.7 +- **GSL Rules**: These rules enforce checks related to the [Guidelines Support Library from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-gsl).15.7 -- **Lifetime Rules**: These rules enforce the [Lifetime profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prolifetime-lifetime-safety-profile).15.7 +- **Lifetime Rules**: These rules enforce the [Lifetime profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prolifetime-lifetime-safety-profile).15.7 -- **Owner Pointer Rules**: Enforce [resource-management checks related to owner\ from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management).15.3 +- **Owner Pointer Rules**: Enforce [resource-management checks related to owner\ from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management).15.3 -- **Raw Pointer Rules**: Enforce [resource-management checks related to raw pointers from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management).15.3 +- **Raw Pointer Rules**: Enforce [resource-management checks related to raw pointers from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management).15.3 -- **Shared pointer Rules**: It's part of [resource management](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-resource) guidelines enforcement.15.5 We added a few rules specific to how shared pointers are passed into functions or used locally. +- **Shared pointer Rules**: It's part of [resource management](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-resource) guidelines enforcement.15.5 We added a few rules specific to how shared pointers are passed into functions or used locally. -- **STL Rules**: These rules enforce checks related to the [C++ Standard Library (STL) from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-stdlib).15.7 +- **STL Rules**: These rules enforce checks related to the [C++ Standard Library (STL) from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-stdlib).15.7 -- **Style Rules**: One simple but important check, which bans use of [goto](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-goto).15.5 It's the first step to improve your coding style and use of expressions and statements in C++. +- **Style Rules**: One simple but important check, which bans use of [goto](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-goto).15.5 It's the first step to improve your coding style and use of expressions and statements in C++. -- **Type Rules**: Enforce the [Type profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prosafety-type-safety-profile).15.3 +- **Type Rules**: Enforce the [Type profile of the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile).15.3 -- **Unique Pointer Rules**: Enforce [resource-management checks related to types with unique pointer semantics from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management).15.3 +- **Unique Pointer Rules**: Enforce [resource-management checks related to types with unique pointer semantics from the C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management).15.3 -- **C++ Core Check Rules**: This rule set contains all the currently implemented checks from the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c-core-guidelines), except for the Experimental rules. +- **C++ Core Check Rules**: This rule set contains all the currently implemented checks from the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c-core-guidelines), except for the Experimental rules. 15.3 These rules first appeared in Visual Studio 2017 version 15.3\ 15.5 These rules first appeared in Visual Studio 2017 version 15.5\ diff --git a/docs/cpp/void-cpp.md b/docs/cpp/void-cpp.md index 09444a7cc0..b53334fff2 100644 --- a/docs/cpp/void-cpp.md +++ b/docs/cpp/void-cpp.md @@ -16,7 +16,7 @@ In C++, a **`void`** pointer can point to a free function (a function that's not You can't declare a variable of type **`void`**. -As a matter of style, the C++ Core Guidelines recommend you don't use **`void`** to specify an empty formal parameter list. For more information, see [C++ Core Guidelines NL.25: Don't use `void` as an argument type](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#nl25-dont-use-void-as-an-argument-type). +As a matter of style, the C++ Core Guidelines recommend you don't use **`void`** to specify an empty formal parameter list. For more information, see [C++ Core Guidelines NL.25: Don't use `void` as an argument type](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#nl25-dont-use-void-as-an-argument-type). ## Example diff --git a/docs/overview/overview-of-cpp-development.md b/docs/overview/overview-of-cpp-development.md index 3c29ebebb8..ca4cb394b9 100644 --- a/docs/overview/overview-of-cpp-development.md +++ b/docs/overview/overview-of-cpp-development.md @@ -110,7 +110,7 @@ For more information, see [Verifying Code by Using Unit Tests](/visualstudio/tes ## Analyze -Visual Studio includes static code analysis tools that can detect potential problems in your source code. These tools include an implementation of the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md) rules checkers. For more information, see [Code analysis for C/C++ overview](../code-quality/code-analysis-for-c-cpp-overview.md). +Visual Studio includes static code analysis tools that can detect potential problems in your source code. These tools include an implementation of the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) rules checkers. For more information, see [Code analysis for C/C++ overview](../code-quality/code-analysis-for-c-cpp-overview.md). ## Deploy completed applications From 049e07ec7c9318208eb6521789ccf0c94842e51b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 1 Aug 2025 18:12:38 +0800 Subject: [PATCH 935/981] Add blockquotes for error messages in range [C2581, C2610] --- docs/error-messages/compiler-errors-2/compiler-error-c2581.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2582.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2584.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2585.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2586.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2587.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2588.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2589.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2592.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2593.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2594.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2597.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2598.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2599.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2600.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2602.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2605.md | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md index c6e7b9a608..18e774904d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md @@ -8,7 +8,7 @@ ms.assetid: 24a4e4c1-24d3-4e42-b760-7dcaf9740b16 --- # Compiler Error C2581 -'type' : static 'operator =' function is illegal +> 'type' : static 'operator =' function is illegal The assignment (`=`) operator is incorrectly declared as **`static`**. Assignment operators cannot be **`static`**. For more information, see [User-Defined Operators (C++/CLI)](../../dotnet/user-defined-operators-cpp-cli.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md index 82484c7c1a..adf0764e41 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md @@ -8,7 +8,7 @@ ms.assetid: ee1b9378-8bcd-4792-b87e-6d7a466d29ed --- # Compiler Error C2582 -'function' function is unavailable in 'type' +> 'function' function is unavailable in 'type' An attempt was made to assign to an object that does not have an assignment operator. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md index e63ec9e054..49251f08bf 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md @@ -8,7 +8,7 @@ ms.assetid: 836e2c0a-86c0-4742-b432-beb0191ad20e --- # Compiler Error C2584 -'Class' : direct base 'Base2' is inaccessible; already a base of 'Base1' +> 'Class' : direct base 'Base2' is inaccessible; already a base of 'Base1' `Class` already derives directly from `Base1`. `Base2` also derives from `Base1`. `Class` cannot derive from `Base2` because that would mean inheriting (indirectly) from `Base1` again, which is not legal because `Base1` is already a direct base class. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md index 7ced014cea..58f4a8a551 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md @@ -8,7 +8,7 @@ ms.assetid: 05bb1a9c-28fb-4a88-a1b5-aea85ebdee1c --- # Compiler Error C2585 -explicit conversion to 'type' is ambiguous +> explicit conversion to 'type' is ambiguous The type conversion can produce more than one result. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md index a5767ea958..5316ceef8c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md @@ -8,7 +8,7 @@ ms.assetid: dae703c7-5c38-4db6-8411-4d1b22713eb5 --- # Compiler Error C2586 -incorrect user-defined conversion syntax : illegal indirections +> incorrect user-defined conversion syntax : illegal indirections Indirection of a conversion operator is not allowed. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md index dd0b86bde4..bdc62e9435 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md @@ -8,7 +8,7 @@ ms.assetid: 7637a2c7-35d4-4b5a-a8f2-515a7bda98fd --- # Compiler Error C2587 -'identifier' : illegal use of local variable as default parameter +> 'identifier' : illegal use of local variable as default parameter Local variables are not allowed as default parameters. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md index 97560fa93c..3e6351e475 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md @@ -8,7 +8,7 @@ ms.assetid: 19a0cabd-ca13-44a5-9be3-ee676abf9bc4 --- # Compiler Error C2588 -'::~identifier' : illegal global destructor +> '::~identifier' : illegal global destructor The destructor is defined for something other than a class, structure, or union. This is not allowed. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md index e712be3b26..104f1ef0e2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md @@ -8,7 +8,7 @@ ms.assetid: 1d7942c7-8a81-4bb4-b272-76a0019e8513 --- # Compiler Error C2589 -'identifier' : illegal token on right side of '::' +> 'identifier' : illegal token on right side of '::' If a class, structure, or union name appears to the left of the scope-resolution operator (double colons), the token on the right must be a class, structure, or union member. Otherwise, any global identifier can appear on the right. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md index 637edee978..c0e8112dc7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md @@ -8,6 +8,6 @@ ms.assetid: 833a4d7b-66ef-4d4c-ae83-a533c2b0eb07 --- # Compiler Error C2592 -'class': 'base_class_2' is inherited from 'base_class_1' and cannot be re-specified +> 'class': 'base_class_2' is inherited from 'base_class_1' and cannot be re-specified You can only specify base classes that do not inherit from other base classes. In this case, only `base_class_1` is needed in the specification of **`class`** because `base_class_1` already inherits `base_class_2`. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md index b12f1563fd..69bdbd3a6b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md @@ -8,7 +8,7 @@ ms.assetid: 4a0fe9bb-2163-447d-91f6-1890ed8250f6 --- # Compiler Error C2593 -'operator identifier' is ambiguous +> 'operator identifier' is ambiguous More than one possible operator is defined for an overloaded operator. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md index a68fd0ce54..82733c55eb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md @@ -8,7 +8,7 @@ ms.assetid: 68cd708f-266e-44b0-a211-3e3ab63b11bf --- # Compiler Error C2594 -'operator' : ambiguous conversions from 'type1' to 'type2' +> 'operator' : ambiguous conversions from 'type1' to 'type2' No conversion from *type1* to *type2* was more direct than any other. We suggest two possible solutions to converting from *type1* to *type2*. The first option is to define a direct conversion from *type1* to *type2*, and the second option is to specify a sequence of conversions from *type1* to *type2*. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md index 1c77cfc600..68b6986a65 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md @@ -8,7 +8,7 @@ ms.assetid: 2e48127d-e3ff-4a40-8156-2863e45b1a38 --- # Compiler Error C2597 -illegal reference to non-static member 'identifier' +> illegal reference to non-static member 'identifier' Possible causes: diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md index 017757d46f..24d581910a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md @@ -8,7 +8,7 @@ ms.assetid: 40777c62-39ba-441e-b081-f49f94b43547 --- # Compiler Error C2598 -linkage specification must be at global scope +> linkage specification must be at global scope The linkage specifier is declared at local scope. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md index 4d8490f277..e2a970b0c4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md @@ -8,7 +8,7 @@ ms.assetid: 88515f36-7589-47e2-862e-0de8b18d6668 --- # Compiler Error C2599 -'enum' : forward declaration of enum type is not allowed +> 'enum' : forward declaration of enum type is not allowed The compiler no longer supports forward declaration of a managed enumeration. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md index 75038e37b8..e57b37e3c4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md @@ -8,7 +8,7 @@ ms.assetid: cce11943-ea01-4bee-a7b0-b67d24ec6493 --- # Compiler Error C2600 -'function' : cannot define a compiler-generated special member function (must be declared in the class first) +> 'function' : cannot define a compiler-generated special member function (must be declared in the class first) Before member functions such as constructors or destructors can be defined for a class, they must be declared in the class. The compiler can generate default constructors and destructors (called special member functions) if none are declared in the class. However, if you define one of these functions without a matching declaration in the class, the compiler detects a conflict. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md index dabc0048be..ebf89c4a8d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md @@ -8,7 +8,7 @@ ms.assetid: 6c07a40e-537e-4954-b5c5-1e0e58fe1952 --- # Compiler Error C2602 -'class::Identifier' is not a member of a base class of 'class' +> 'class::Identifier' is not a member of a base class of 'class' `Identifier` cannot be accessed because it is not a member inherited from any base class. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md index a11f99a7a3..9ce7c9cf13 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md @@ -8,7 +8,7 @@ ms.assetid: a0e6f132-5acf-4e19-b277-ddf196d182bf --- # Compiler Error C2605 -'name' : this method is reserved within a managed or WinRT class +> 'name' : this method is reserved within a managed or WinRT class Certain names are reserved by the compiler for internal functions. For more information, see [Destructors and finalizers](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Destructors_and_finalizers). From 1fcc773c753e164667a3a40e2463afee8ea71cb9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 1 Aug 2025 18:20:03 +0800 Subject: [PATCH 936/981] Add "Remarks" and "Example" headings for error references in range [C2581, C2610] --- docs/error-messages/compiler-errors-2/compiler-error-c2581.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2582.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2584.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2585.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2586.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2587.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2588.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2589.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2592.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2593.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2594.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2597.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2598.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2599.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2600.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2602.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2603.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2605.md | 2 ++ 18 files changed, 60 insertions(+) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md index 18e774904d..8ba2753809 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md @@ -10,6 +10,8 @@ ms.assetid: 24a4e4c1-24d3-4e42-b760-7dcaf9740b16 > 'type' : static 'operator =' function is illegal +## Remarks + The assignment (`=`) operator is incorrectly declared as **`static`**. Assignment operators cannot be **`static`**. For more information, see [User-Defined Operators (C++/CLI)](../../dotnet/user-defined-operators-cpp-cli.md). ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md index adf0764e41..5c6c69f0b1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md @@ -10,8 +10,12 @@ ms.assetid: ee1b9378-8bcd-4792-b87e-6d7a466d29ed > 'function' function is unavailable in 'type' +## Remarks + An attempt was made to assign to an object that does not have an assignment operator. +## Example + The following sample generates C2582: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md index 49251f08bf..e17ad5bb8e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md @@ -10,6 +10,8 @@ ms.assetid: 836e2c0a-86c0-4742-b432-beb0191ad20e > 'Class' : direct base 'Base2' is inaccessible; already a base of 'Base1' +## Remarks + `Class` already derives directly from `Base1`. `Base2` also derives from `Base1`. `Class` cannot derive from `Base2` because that would mean inheriting (indirectly) from `Base1` again, which is not legal because `Base1` is already a direct base class. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md index 58f4a8a551..d9924073e8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md @@ -10,6 +10,8 @@ ms.assetid: 05bb1a9c-28fb-4a88-a1b5-aea85ebdee1c > explicit conversion to 'type' is ambiguous +## Remarks + The type conversion can produce more than one result. ### To fix by checking the following possible causes diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md index 5316ceef8c..1fc9cf28c7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md @@ -10,8 +10,12 @@ ms.assetid: dae703c7-5c38-4db6-8411-4d1b22713eb5 > incorrect user-defined conversion syntax : illegal indirections +## Remarks + Indirection of a conversion operator is not allowed. +## Example + The following sample generates C2586: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md index bdc62e9435..92d214cc1a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md @@ -10,8 +10,12 @@ ms.assetid: 7637a2c7-35d4-4b5a-a8f2-515a7bda98fd > 'identifier' : illegal use of local variable as default parameter +## Remarks + Local variables are not allowed as default parameters. +## Example + The following sample generates C2587: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md index 3e6351e475..ca7c81a230 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md @@ -10,10 +10,14 @@ ms.assetid: 19a0cabd-ca13-44a5-9be3-ee676abf9bc4 > '::~identifier' : illegal global destructor +## Remarks + The destructor is defined for something other than a class, structure, or union. This is not allowed. This error can be caused by a missing class, structure, or union name on the left side of the scope resolution (`::`) operator. +## Example + The following sample generates C2588: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md index 104f1ef0e2..e2e291b566 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md @@ -10,10 +10,14 @@ ms.assetid: 1d7942c7-8a81-4bb4-b272-76a0019e8513 > 'identifier' : illegal token on right side of '::' +## Remarks + If a class, structure, or union name appears to the left of the scope-resolution operator (double colons), the token on the right must be a class, structure, or union member. Otherwise, any global identifier can appear on the right. The scope-resolution operator cannot be overloaded. +## Example + The following sample generates C2589: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md index c0e8112dc7..2f168e2886 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md @@ -10,4 +10,6 @@ ms.assetid: 833a4d7b-66ef-4d4c-ae83-a533c2b0eb07 > 'class': 'base_class_2' is inherited from 'base_class_1' and cannot be re-specified +## Remarks + You can only specify base classes that do not inherit from other base classes. In this case, only `base_class_1` is needed in the specification of **`class`** because `base_class_1` already inherits `base_class_2`. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md index 69bdbd3a6b..1c6b265ad9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md @@ -10,10 +10,14 @@ ms.assetid: 4a0fe9bb-2163-447d-91f6-1890ed8250f6 > 'operator identifier' is ambiguous +## Remarks + More than one possible operator is defined for an overloaded operator. This error may be fixed if you use an explicit cast on one or more actual parameters. +## Examples + The following sample generates C2593: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md index 82733c55eb..1e218bf85d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md @@ -10,8 +10,12 @@ ms.assetid: 68cd708f-266e-44b0-a211-3e3ab63b11bf > 'operator' : ambiguous conversions from 'type1' to 'type2' +## Remarks + No conversion from *type1* to *type2* was more direct than any other. We suggest two possible solutions to converting from *type1* to *type2*. The first option is to define a direct conversion from *type1* to *type2*, and the second option is to specify a sequence of conversions from *type1* to *type2*. +## Example + The following sample generates C2594. The suggested resolution to the error is a sequence of conversions: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md index 68b6986a65..f87638db0c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md @@ -10,6 +10,8 @@ ms.assetid: 2e48127d-e3ff-4a40-8156-2863e45b1a38 > illegal reference to non-static member 'identifier' +## Remarks + Possible causes: 1. A nonstatic member is specified in a static member function. To access the nonstatic member, you must pass in or create a local instance of the class and use a member-access operator (`.` or `->`). @@ -18,6 +20,8 @@ Possible causes: 1. A member access operator refers to a nonmember function. +## Example + 1. The following sample generates C2597 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md index 24d581910a..032e9ee4dc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md @@ -10,8 +10,12 @@ ms.assetid: 40777c62-39ba-441e-b081-f49f94b43547 > linkage specification must be at global scope +## Remarks + The linkage specifier is declared at local scope. +## Example + The following sample generates C2598: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md index e2a970b0c4..71a706d08d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md @@ -10,10 +10,14 @@ ms.assetid: 88515f36-7589-47e2-862e-0de8b18d6668 > 'enum' : forward declaration of enum type is not allowed +## Remarks + The compiler no longer supports forward declaration of a managed enumeration. Forward declaration of an enum type is not allowed under [/Za](../../build/reference/za-ze-disable-language-extensions.md). +## Example + The following sample generates C2599: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md index e57b37e3c4..2377173869 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md @@ -10,10 +10,14 @@ ms.assetid: cce11943-ea01-4bee-a7b0-b67d24ec6493 > 'function' : cannot define a compiler-generated special member function (must be declared in the class first) +## Remarks + Before member functions such as constructors or destructors can be defined for a class, they must be declared in the class. The compiler can generate default constructors and destructors (called special member functions) if none are declared in the class. However, if you define one of these functions without a matching declaration in the class, the compiler detects a conflict. To fix this error, in the class declaration, declare each member function that you define outside the class declaration. +## Example + The following sample generates C2600: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md index ebf89c4a8d..9d31fc7a1e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md @@ -10,8 +10,12 @@ ms.assetid: 6c07a40e-537e-4954-b5c5-1e0e58fe1952 > 'class::Identifier' is not a member of a base class of 'class' +## Remarks + `Identifier` cannot be accessed because it is not a member inherited from any base class. +## Example + The following sample generates C2602: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2603.md b/docs/error-messages/compiler-errors-2/compiler-error-c2603.md index c66a5ff3e1..81a653f3a7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2603.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2603.md @@ -10,6 +10,8 @@ ms.assetid: 9ca520d0-f082-4b65-933d-17c3bcf8b02c > '*function*' : Too many block scope static objects with constructor/destructors in function +## Remarks + In versions of the Microsoft C++ compiler before Visual Studio 2015, or when the [/Zc:threadSafeInit-](../../build/reference/zc-threadsafeinit-thread-safe-local-static-initialization.md) compiler option is specified, there is a limit of 31 on the number of static objects you can have in an externally visible inline function. To resolve this issue, we recommend you adopt more recent version of the Microsoft C++ compiler toolset, or if possible, remove the /Zc:threadSafeInit- compiler option. If this is not possible, consider combining your static objects. If the objects are of the same type, consider use of a single static array of that type, and reference individual members as required. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md index 9ce7c9cf13..635e018ec3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md @@ -10,6 +10,8 @@ ms.assetid: a0e6f132-5acf-4e19-b277-ddf196d182bf > 'name' : this method is reserved within a managed or WinRT class +## Remarks + Certain names are reserved by the compiler for internal functions. For more information, see [Destructors and finalizers](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Destructors_and_finalizers). ## Example From 812dbe0b8af0b1e07b5ef4b2cd717705ed66ad02 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 1 Aug 2025 18:23:25 +0800 Subject: [PATCH 937/981] Replace term "sample" with "example" for error references in range [C2581, C2610] --- docs/error-messages/compiler-errors-2/compiler-error-c2581.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2582.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2584.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2586.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2587.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2588.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2589.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2593.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2594.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2597.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2598.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2599.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2600.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2602.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2605.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md index 8ba2753809..752ff03597 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md @@ -16,7 +16,7 @@ The assignment (`=`) operator is incorrectly declared as **`static`**. Assignmen ## Example -The following sample generates C2581. +The following example generates C2581. ```cpp // C2581.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md index 5c6c69f0b1..6c656c04c2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md @@ -16,7 +16,7 @@ An attempt was made to assign to an object that does not have an assignment oper ## Example -The following sample generates C2582: +The following example generates C2582: ```cpp // C2582.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md index e17ad5bb8e..91e968e338 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md @@ -16,7 +16,7 @@ ms.assetid: 836e2c0a-86c0-4742-b432-beb0191ad20e ## Example -The following sample generates C2584. +The following example generates C2584. ```cpp // C2584.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md index 1fc9cf28c7..70c18f83de 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md @@ -16,7 +16,7 @@ Indirection of a conversion operator is not allowed. ## Example -The following sample generates C2586: +The following example generates C2586: ```cpp // c2586.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md index 92d214cc1a..a70bbab981 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md @@ -16,7 +16,7 @@ Local variables are not allowed as default parameters. ## Example -The following sample generates C2587: +The following example generates C2587: ```cpp // C2587.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md index ca7c81a230..4fc0aac25a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md @@ -18,7 +18,7 @@ This error can be caused by a missing class, structure, or union name on the lef ## Example -The following sample generates C2588: +The following example generates C2588: ```cpp // C2588.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md index e2e291b566..cfe6404b42 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md @@ -18,7 +18,7 @@ The scope-resolution operator cannot be overloaded. ## Example -The following sample generates C2589: +The following example generates C2589: ```cpp // C2589.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md index 1c6b265ad9..b1731e7dcb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md @@ -18,7 +18,7 @@ This error may be fixed if you use an explicit cast on one or more actual parame ## Examples -The following sample generates C2593: +The following example generates C2593: ```cpp // C2593.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md index 1e218bf85d..e2e6c88017 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md @@ -16,7 +16,7 @@ No conversion from *type1* to *type2* was more direct than any other. We suggest ## Example -The following sample generates C2594. The suggested resolution to the error is a sequence of conversions: +The following example generates C2594. The suggested resolution to the error is a sequence of conversions: ```cpp // C2594.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md index f87638db0c..7e498a0a86 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md @@ -22,7 +22,7 @@ Possible causes: ## Example -1. The following sample generates C2597 and shows how to fix it: +1. The following example generates C2597 and shows how to fix it: ```cpp // C2597.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md index 032e9ee4dc..7ae9783e6f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md @@ -16,7 +16,7 @@ The linkage specifier is declared at local scope. ## Example -The following sample generates C2598: +The following example generates C2598: ```cpp // C2598.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md index 71a706d08d..268b2f0a21 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md @@ -18,7 +18,7 @@ Forward declaration of an enum type is not allowed under [/Za](../../build/refer ## Example -The following sample generates C2599: +The following example generates C2599: ```cpp // C2599.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md index 2377173869..9afbef58ab 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md @@ -18,7 +18,7 @@ To fix this error, in the class declaration, declare each member function that y ## Example -The following sample generates C2600: +The following example generates C2600: ```cpp // C2600.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md index 9d31fc7a1e..c4c3c71ec2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md @@ -16,7 +16,7 @@ ms.assetid: 6c07a40e-537e-4954-b5c5-1e0e58fe1952 ## Example -The following sample generates C2602: +The following example generates C2602: ```cpp // C2602.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md index 635e018ec3..045432c28c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md @@ -16,7 +16,7 @@ Certain names are reserved by the compiler for internal functions. For more inf ## Example -The following sample generates C2605. +The following example generates C2605. ```cpp // C2605.cpp From a2914fa550b6ad85976d0a50cbf2ca4e3b05cfe3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Fri, 1 Aug 2025 18:26:23 +0800 Subject: [PATCH 938/981] Update metadata for error references in range [C2581, C2610] --- .../error-messages/compiler-errors-2/compiler-error-c2581.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2582.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2584.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2585.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2586.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2587.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2588.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2589.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2592.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2593.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2594.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2597.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2598.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2599.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2600.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2602.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2603.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2605.md | 5 ++--- 18 files changed, 36 insertions(+), 54 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md index 752ff03597..9097b0b6b3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2581.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2581.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2581" title: "Compiler Error C2581" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2581" +ms.date: 11/04/2016 f1_keywords: ["C2581"] helpviewer_keywords: ["C2581"] -ms.assetid: 24a4e4c1-24d3-4e42-b760-7dcaf9740b16 --- # Compiler Error C2581 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md index 6c656c04c2..2a57df672e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2582.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2582.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2582" title: "Compiler Error C2582" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2582" +ms.date: 11/04/2016 f1_keywords: ["C2582"] helpviewer_keywords: ["C2582"] -ms.assetid: ee1b9378-8bcd-4792-b87e-6d7a466d29ed --- # Compiler Error C2582 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md index 91e968e338..8164ce8b38 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2584.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2584.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2584" title: "Compiler Error C2584" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2584" +ms.date: 11/04/2016 f1_keywords: ["C2584"] helpviewer_keywords: ["C2584"] -ms.assetid: 836e2c0a-86c0-4742-b432-beb0191ad20e --- # Compiler Error C2584 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md index d9924073e8..32c34f271a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2585.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2585.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2585" title: "Compiler Error C2585" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2585" +ms.date: 11/04/2016 f1_keywords: ["C2585"] helpviewer_keywords: ["C2585"] -ms.assetid: 05bb1a9c-28fb-4a88-a1b5-aea85ebdee1c --- # Compiler Error C2585 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md index 70c18f83de..412a45f14d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2586.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2586.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2586" title: "Compiler Error C2586" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2586" +ms.date: 11/04/2016 f1_keywords: ["C2586"] helpviewer_keywords: ["C2586"] -ms.assetid: dae703c7-5c38-4db6-8411-4d1b22713eb5 --- # Compiler Error C2586 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md index a70bbab981..f70167f35f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2587.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2587.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2587" title: "Compiler Error C2587" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2587" +ms.date: 11/04/2016 f1_keywords: ["C2587"] helpviewer_keywords: ["C2587"] -ms.assetid: 7637a2c7-35d4-4b5a-a8f2-515a7bda98fd --- # Compiler Error C2587 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md index 4fc0aac25a..774f364b96 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2588.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2588.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2588" title: "Compiler Error C2588" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2588" +ms.date: 11/04/2016 f1_keywords: ["C2588"] helpviewer_keywords: ["C2588"] -ms.assetid: 19a0cabd-ca13-44a5-9be3-ee676abf9bc4 --- # Compiler Error C2588 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md index cfe6404b42..3f7e4fa6da 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2589.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2589.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2589" title: "Compiler Error C2589" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2589" +ms.date: 11/04/2016 f1_keywords: ["C2589"] helpviewer_keywords: ["C2589"] -ms.assetid: 1d7942c7-8a81-4bb4-b272-76a0019e8513 --- # Compiler Error C2589 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md index 2f168e2886..054f08281e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2592.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2592.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2592" title: "Compiler Error C2592" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2592" +ms.date: 11/04/2016 f1_keywords: ["C2592"] helpviewer_keywords: ["C2592"] -ms.assetid: 833a4d7b-66ef-4d4c-ae83-a533c2b0eb07 --- # Compiler Error C2592 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md index b1731e7dcb..b31ff336de 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2593.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2593.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2593" title: "Compiler Error C2593" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2593" +ms.date: 11/04/2016 f1_keywords: ["C2593"] helpviewer_keywords: ["C2593"] -ms.assetid: 4a0fe9bb-2163-447d-91f6-1890ed8250f6 --- # Compiler Error C2593 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md index e2e6c88017..c962231113 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2594.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2594.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2594" title: "Compiler Error C2594" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2594" +ms.date: 11/04/2016 f1_keywords: ["C2594"] helpviewer_keywords: ["C2594"] -ms.assetid: 68cd708f-266e-44b0-a211-3e3ab63b11bf --- # Compiler Error C2594 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md index 7e498a0a86..ed1bcf191c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2597.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2597.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2597" title: "Compiler Error C2597" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2597" +ms.date: 11/04/2016 f1_keywords: ["C2597"] helpviewer_keywords: ["C2597"] -ms.assetid: 2e48127d-e3ff-4a40-8156-2863e45b1a38 --- # Compiler Error C2597 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md index 7ae9783e6f..9e996c4837 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2598.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2598.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2598" title: "Compiler Error C2598" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2598" +ms.date: 11/04/2016 f1_keywords: ["C2598"] helpviewer_keywords: ["C2598"] -ms.assetid: 40777c62-39ba-441e-b081-f49f94b43547 --- # Compiler Error C2598 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md index 268b2f0a21..56a13a45ee 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2599.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2599.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2599" title: "Compiler Error C2599" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2599" +ms.date: 11/04/2016 f1_keywords: ["C2599"] helpviewer_keywords: ["C2599"] -ms.assetid: 88515f36-7589-47e2-862e-0de8b18d6668 --- # Compiler Error C2599 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md index 9afbef58ab..63dcc2d64a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2600.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2600.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2600" title: "Compiler Error C2600" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2600" +ms.date: 11/04/2016 f1_keywords: ["C2600"] helpviewer_keywords: ["C2600"] -ms.assetid: cce11943-ea01-4bee-a7b0-b67d24ec6493 --- # Compiler Error C2600 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md index c4c3c71ec2..bc32d316af 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2602.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2602.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2602" title: "Compiler Error C2602" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2602" +ms.date: 11/04/2016 f1_keywords: ["C2602"] helpviewer_keywords: ["C2602"] -ms.assetid: 6c07a40e-537e-4954-b5c5-1e0e58fe1952 --- # Compiler Error C2602 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2603.md b/docs/error-messages/compiler-errors-2/compiler-error-c2603.md index 81a653f3a7..c4700923f0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2603.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2603.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2603" title: "Compiler Error C2603" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2603" +ms.date: 11/04/2016 f1_keywords: ["C2603"] helpviewer_keywords: ["C2603"] -ms.assetid: 9ca520d0-f082-4b65-933d-17c3bcf8b02c --- # Compiler Error C2603 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md index 045432c28c..ee73a6aa64 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2605.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2605.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2605" title: "Compiler Error C2605" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2605" +ms.date: 11/04/2016 f1_keywords: ["C2605"] helpviewer_keywords: ["C2605"] -ms.assetid: a0e6f132-5acf-4e19-b277-ddf196d182bf --- # Compiler Error C2605 From 52bb410368e1f770f531145de5028c9284499628 Mon Sep 17 00:00:00 2001 From: Mark Rotteveel Date: Fri, 1 Aug 2025 12:43:44 +0200 Subject: [PATCH 939/981] Add missing anchors to specific guideline --- docs/code-quality/c26433.md | 4 ++-- docs/code-quality/c26434.md | 2 +- docs/code-quality/c26435.md | 2 +- docs/code-quality/c26443.md | 4 ++-- docs/code-quality/code-analysis-for-cpp-corecheck.md | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/code-quality/c26433.md b/docs/code-quality/c26433.md index 31a482a974..20d866f966 100644 --- a/docs/code-quality/c26433.md +++ b/docs/code-quality/c26433.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26433"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) It's not required by the compiler to clearly state that a virtual function overrides its base. Not specifying `override` can cause subtle issues during maintenance if the virtual specification ever changes in the class hierarchy. It also lowers readability and makes an interface's polymorphic behavior less obvious. If a function is clearly marked as `override`, the compiler can check the consistency of the interface, and help to spot issues before they manifest themselves at run time. @@ -44,4 +44,4 @@ public: ## See also -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) diff --git a/docs/code-quality/c26434.md b/docs/code-quality/c26434.md index 03e26c7b2f..197a57cbcf 100644 --- a/docs/code-quality/c26434.md +++ b/docs/code-quality/c26434.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26434"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) ## Remarks diff --git a/docs/code-quality/c26435.md b/docs/code-quality/c26435.md index ec4fd01356..61b57161dc 100644 --- a/docs/code-quality/c26435.md +++ b/docs/code-quality/c26435.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26435"] ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) To improve readability, the kind of virtual behavior should be stated clearly and without unnecessary redundancy. Even though multiple virtual specifiers can be used simultaneously, it's better to specify one at a time to emphasize the most important aspect of virtual behavior. The following order of importance is apparent: diff --git a/docs/code-quality/c26443.md b/docs/code-quality/c26443.md index 5b9b55f44b..e07e15b419 100644 --- a/docs/code-quality/c26443.md +++ b/docs/code-quality/c26443.md @@ -13,7 +13,7 @@ This warning was removed in Visual Studio 16.8 to reflect [changes to C.128 in t ## C++ Core Guidelines -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). The current consensus on the Core Guidelines is to exclude destructors from the 'override explicitly' recommendation. @@ -44,4 +44,4 @@ public: ## See also -[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +[C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) diff --git a/docs/code-quality/code-analysis-for-cpp-corecheck.md b/docs/code-quality/code-analysis-for-cpp-corecheck.md index 63877154ba..b5baf2cc33 100644 --- a/docs/code-quality/code-analysis-for-cpp-corecheck.md +++ b/docs/code-quality/code-analysis-for-cpp-corecheck.md @@ -115,7 +115,7 @@ Global initializer calls a non-constexpr function '*symbol*'. See [C++ Core Guid Global initializer accesses extern object '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects). [C26444 NO_UNNAMED_RAII_OBJECTS](c26444.md)\ -Avoid unnamed objects with custom construction and destruction. See [ES.84: Don't (try to) declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). +Avoid unnamed objects with custom construction and destruction. See [ES.84: Don't (try to) declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-noname). ## CLASS Group @@ -129,13 +129,13 @@ Function '*symbol*' should be marked with 'override'. See [C.128: Virtual functi Function '*symbol_1*' hides a non-virtual function '*symbol_2*'. See [C++ Core Guidelines C.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). [C26435 SINGLE_VIRTUAL_SPECIFICATION](c26435.md)\ -Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). +Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). [C26436 NEED_VIRTUAL_DTOR](C26436.md)\ The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor. See [C++ Core Guidelines C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-nonvirtual). [C26443 NO_EXPLICIT_DTOR_OVERRIDE](c26443.md)\ -Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines). +Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). ## STYLE Group From 7b5d19e92a10f5f874d57dce226ce5a6ab1a3968 Mon Sep 17 00:00:00 2001 From: Mark Rotteveel Date: Sat, 2 Aug 2025 10:39:27 +0200 Subject: [PATCH 940/981] Replace generated IDs with explicit IDs Also replaced some explicit IDs with more specific explicit IDs for Bounds.N and Type.N (to the specific rule, instead of the section containing the rule). --- docs/code-quality/c26400.md | 2 +- docs/code-quality/c26401.md | 2 +- docs/code-quality/c26403.md | 2 +- docs/code-quality/c26405.md | 2 +- docs/code-quality/c26406.md | 2 +- docs/code-quality/c26407.md | 2 +- docs/code-quality/c26408.md | 2 +- docs/code-quality/c26409.md | 2 +- docs/code-quality/c26410.md | 4 +- docs/code-quality/c26411.md | 2 +- docs/code-quality/c26414.md | 2 +- docs/code-quality/c26415.md | 2 +- docs/code-quality/c26416.md | 2 +- docs/code-quality/c26417.md | 2 +- docs/code-quality/c26418.md | 2 +- docs/code-quality/c26426.md | 2 +- docs/code-quality/c26427.md | 2 +- docs/code-quality/c26429.md | 2 +- docs/code-quality/c26430.md | 2 +- docs/code-quality/c26431.md | 2 +- docs/code-quality/c26432.md | 2 +- docs/code-quality/c26436.md | 2 +- docs/code-quality/c26437.md | 2 +- docs/code-quality/c26438.md | 2 +- docs/code-quality/c26439.md | 4 +- docs/code-quality/c26440.md | 2 +- docs/code-quality/c26441.md | 2 +- docs/code-quality/c26444.md | 4 +- docs/code-quality/c26445.md | 2 +- docs/code-quality/c26446.md | 2 +- docs/code-quality/c26447.md | 2 +- docs/code-quality/c26449.md | 2 +- docs/code-quality/c26450.md | 2 +- docs/code-quality/c26452.md | 4 +- docs/code-quality/c26453.md | 4 +- docs/code-quality/c26454.md | 2 +- docs/code-quality/c26455.md | 2 +- docs/code-quality/c26456.md | 2 +- docs/code-quality/c26457.md | 2 +- docs/code-quality/c26462.md | 2 +- docs/code-quality/c26463.md | 2 +- docs/code-quality/c26464.md | 2 +- docs/code-quality/c26472.md | 2 +- docs/code-quality/c26473.md | 2 +- docs/code-quality/c26474.md | 2 +- docs/code-quality/c26475.md | 2 +- docs/code-quality/c26478.md | 2 +- docs/code-quality/c26479.md | 4 +- docs/code-quality/c26482.md | 2 +- docs/code-quality/c26483.md | 2 +- docs/code-quality/c26490.md | 2 +- docs/code-quality/c26491.md | 2 +- docs/code-quality/c26492.md | 2 +- docs/code-quality/c26493.md | 2 +- docs/code-quality/c26494.md | 4 +- docs/code-quality/c26495.md | 2 +- docs/code-quality/c26496.md | 2 +- docs/code-quality/c26498.md | 4 +- docs/code-quality/c26812.md | 2 +- docs/code-quality/c26815.md | 2 +- docs/code-quality/c26816.md | 2 +- docs/code-quality/c26817.md | 2 +- docs/code-quality/c26818.md | 2 +- docs/code-quality/c26819.md | 4 +- docs/code-quality/c26820.md | 2 +- docs/code-quality/c26826.md | 2 +- .../code-analysis-for-cpp-corecheck.md | 84 +++++++++---------- 67 files changed, 117 insertions(+), 117 deletions(-) diff --git a/docs/code-quality/c26400.md b/docs/code-quality/c26400.md index 99711c0b89..e4819ceeaa 100644 --- a/docs/code-quality/c26400.md +++ b/docs/code-quality/c26400.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26400"] ## Remarks -This check helps to enforce the *rule I.11: Never transfer ownership by a raw pointer (T\*), which is a subset of the rule *R.3: A raw pointer (a T\*) is non-owning*. Specifically, it warns on any call to `operator new`, which saves its result in a variable of raw pointer type. It also warns on calls to functions that return `gsl::owner` if their results are assigned to raw pointers. The idea is that you should clearly state ownership of memory resources. For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). +This check helps to enforce the *rule I.11: Never transfer ownership by a raw pointer (T\*), which is a subset of the rule *R.3: A raw pointer (a T\*) is non-owning*. Specifically, it warns on any call to `operator new`, which saves its result in a variable of raw pointer type. It also warns on calls to functions that return `gsl::owner` if their results are assigned to raw pointers. The idea is that you should clearly state ownership of memory resources. For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-resource). The easiest way to fix this warning is to use **`auto`** declaration if the resource is assigned immediately at the variable declaration. If this fix isn't possible, then we suggest that you use the type `gsl::owner`. The **`auto`** declarations initialized with operator **`new`** are "owners" because we assume that the result of any allocation is implicitly an owner pointer. We transfer this assumption to the **`auto`** variable and treat it as `owner`. diff --git a/docs/code-quality/c26401.md b/docs/code-quality/c26401.md index c8b4c50b84..0029e443d5 100644 --- a/docs/code-quality/c26401.md +++ b/docs/code-quality/c26401.md @@ -20,7 +20,7 @@ Code analysis name: `DONT_DELETE_NON_OWNER` ## See also -[C++ Core Guidelines I.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i11-never-transfer-ownership-by-a-raw-pointer-t-or-reference-t) +[C++ Core Guidelines I.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-raw) ## Examples diff --git a/docs/code-quality/c26403.md b/docs/code-quality/c26403.md index 70f1e92ac5..801e33dce9 100644 --- a/docs/code-quality/c26403.md +++ b/docs/code-quality/c26403.md @@ -12,7 +12,7 @@ ms.assetid: 7e14868d-df86-4df3-98d3-71b1e80ba14e Owner pointers are like unique pointers: they own a resource exclusively, and manage release of the resource, or its transfers to other owners. This check validates that a local owner pointer properly maintains its resource through all execution paths in a function. If the resource wasn't transferred to another owner, or wasn't explicitly release, the checker warns, and points to the declaration of the pointer variable. -For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r-resource-management). +For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#S-resource). ## Remarks diff --git a/docs/code-quality/c26405.md b/docs/code-quality/c26405.md index 4384443ba2..8c8d2b45eb 100644 --- a/docs/code-quality/c26405.md +++ b/docs/code-quality/c26405.md @@ -12,7 +12,7 @@ ms.assetid: 2034d961-3ec5-4184-bbef-aa792e4c03c0 ## Remarks -If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn't release resources). For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r3-a-raw-pointer-a-t-is-non-owning). +If an owner pointer already points to a valid memory buffer, it must not be assigned to another value without releasing its current resource first. Such assignment may lead to a resource leak even if the resource address is copied into some raw pointer (because raw pointers shouldn't release resources). For more information, see the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). Code analysis name: `DONT_ASSIGN_TO_VALID` diff --git a/docs/code-quality/c26406.md b/docs/code-quality/c26406.md index 0e4688cdc2..3027afd728 100644 --- a/docs/code-quality/c26406.md +++ b/docs/code-quality/c26406.md @@ -10,7 +10,7 @@ ms.assetid: 02fb8e23-1989-4e24-a5a5-e30f71d00325 > Do not assign a raw pointer to an `owner` (r.3) -This warning enforces R.3 from the C++ Core Guidelines. For more information, see [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r3-a-raw-pointer-a-t-is-non-owning). +This warning enforces R.3 from the C++ Core Guidelines. For more information, see [C++ Core Guidelines R.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-ptr). ## Remarks diff --git a/docs/code-quality/c26407.md b/docs/code-quality/c26407.md index 0a5af3152a..79022356f0 100644 --- a/docs/code-quality/c26407.md +++ b/docs/code-quality/c26407.md @@ -10,7 +10,7 @@ ms.assetid: 5539907a-bfa0-40db-82a6-b860c97209e1 > Prefer scoped objects, don't heap-allocate unnecessarily (r.5) -To avoid unnecessary use of pointers, we try to detect common patterns of local allocations. For example, we detect when the result of a call to operator **`new`** is stored in a local variable and later explicitly deleted. This check supports the [C++ Core Guidelines rule R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r5-prefer-scoped-objects-dont-heap-allocate-unnecessarily): *Prefer scoped objects, don't heap-allocate unnecessarily*. To fix the issue, use an RAII type instead of a raw pointer, and allow it to deal with resources. Obviously, it isn't necessary to create a wrapper type to allocate a single object. Instead, a local variable of the object's type would work better. +To avoid unnecessary use of pointers, we try to detect common patterns of local allocations. For example, we detect when the result of a call to operator **`new`** is stored in a local variable and later explicitly deleted. This check supports the [C++ Core Guidelines rule R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped): *Prefer scoped objects, don't heap-allocate unnecessarily*. To fix the issue, use an RAII type instead of a raw pointer, and allow it to deal with resources. Obviously, it isn't necessary to create a wrapper type to allocate a single object. Instead, a local variable of the object's type would work better. ## Remarks diff --git a/docs/code-quality/c26408.md b/docs/code-quality/c26408.md index c426b63f2a..423b99d972 100644 --- a/docs/code-quality/c26408.md +++ b/docs/code-quality/c26408.md @@ -22,7 +22,7 @@ Code analysis name: `NO_MALLOC_FREE` ## See also -[C++ Core Guidelines R.10](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r10-avoid-malloc-and-free) +[C++ Core Guidelines R.10](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-mallocfree) ## Example diff --git a/docs/code-quality/c26409.md b/docs/code-quality/c26409.md index a0dc4a4f3d..459ce8cf92 100644 --- a/docs/code-quality/c26409.md +++ b/docs/code-quality/c26409.md @@ -12,7 +12,7 @@ helpviewer_keywords: ["C26409"] Even if code is clean of calls to `malloc` and `free`, we still suggest that you consider better options than explicit use of operators [`new` and `delete`](../cpp/new-and-delete-operators.md). **C++ Core Guidelines**:\ -[R.11: Avoid calling `new` and `delete` explicitly](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r11-avoid-calling-new-and-delete-explicitly) +[R.11: Avoid calling `new` and `delete` explicitly](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-newdelete) The ultimate fix is to use smart pointers and appropriate factory functions, such as [`std::make_unique`](../standard-library/memory-functions.md#make_unique). diff --git a/docs/code-quality/c26410.md b/docs/code-quality/c26410.md index 57e0b75a4c..6a8429c1ec 100644 --- a/docs/code-quality/c26410.md +++ b/docs/code-quality/c26410.md @@ -10,11 +10,11 @@ ms.assetid: d1547faf-96c6-48da-90f5-841154d0e878 > The parameter '*parameter*' is a reference to const unique pointer, use `const T*` or `const T&` instead (r.32) -Generally, references to const unique pointer are meaningless. They can safely be replaced by a raw reference or a pointer. This warning enforces [C++ Core Guidelines rule R.32](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r32-take-a-unique_ptrwidget-parameter-to-express-that-a-function-assumes-ownership-of-a-widget). +Generally, references to const unique pointer are meaningless. They can safely be replaced by a raw reference or a pointer. This warning enforces [C++ Core Guidelines rule R.32](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-uniqueptrparam). ## Remarks -- Unique pointer checks have rather broad criteria to identify smart pointers. The [C++ Core Guidelines rule R.31](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r31-if-you-have-non-std-smart-pointers-follow-the-basic-pattern-from-std): *If you have non-std smart pointers, follow the basic pattern from std describes the unique pointer and shared pointer concepts*. The heuristic is simple, but may lead to surprises: a smart pointer type is any type that defines either `operator->` or `operator*`. A copy-able type (shared pointer) must have either a public copy constructor or an overloaded assignment operator that deals with a non-Rvalue reference parameter. +- Unique pointer checks have rather broad criteria to identify smart pointers. The [C++ Core Guidelines rule R.31](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-smart): *If you have non-std smart pointers, follow the basic pattern from std describes the unique pointer and shared pointer concepts*. The heuristic is simple, but may lead to surprises: a smart pointer type is any type that defines either `operator->` or `operator*`. A copy-able type (shared pointer) must have either a public copy constructor or an overloaded assignment operator that deals with a non-Rvalue reference parameter. - Template code may produce noisy warnings. Keep in mind that templates can be instantiated with various type parameters with different levels of indirection, including references. Some warnings may not be obvious and fixes may require some rework of templates (for example, explicit removal of reference indirection). If template code is intentionally generic, the warning can be suppressed. diff --git a/docs/code-quality/c26411.md b/docs/code-quality/c26411.md index e4dd895932..cf66a21b4d 100644 --- a/docs/code-quality/c26411.md +++ b/docs/code-quality/c26411.md @@ -10,7 +10,7 @@ ms.assetid: 5134e51e-8b92-4ee7-94c3-022e318a0e24 > The parameter '*parameter*' is a reference to unique pointer and it is never reassigned or reset, use `T*` or `T&` instead (r.33) -When you pass a unique pointer to a function by reference, it implies that its resource may be released or transferred inside the function. If the function uses its parameter only to access the resource, it's safe to pass a raw pointer or a reference. For more information, see [C++ Core Guidelines rule R.33](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r33-take-a-unique_ptrwidget-parameter-to-express-that-a-function-reseats-thewidget): *Take a unique_ptr\& parameter to express that a function reseats the widget*. +When you pass a unique pointer to a function by reference, it implies that its resource may be released or transferred inside the function. If the function uses its parameter only to access the resource, it's safe to pass a raw pointer or a reference. For more information, see [C++ Core Guidelines rule R.33](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-reseat): *Take a unique_ptr\& parameter to express that a function reseats the widget*. ## Remarks diff --git a/docs/code-quality/c26414.md b/docs/code-quality/c26414.md index d33427adcb..704a57d4e8 100644 --- a/docs/code-quality/c26414.md +++ b/docs/code-quality/c26414.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["C26414"] > "Move, copy, reassign or reset a local smart pointer." **C++ Core Guidelines**:\ -[R.5: Prefer scoped objects, don't heap-allocate unnecessarily](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r5-prefer-scoped-objects-dont-heap-allocate-unnecessarily) +[R.5: Prefer scoped objects, don't heap-allocate unnecessarily](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped) Smart pointers are convenient for dynamic resource management, but they're not always necessary. For example, it may be easier and more efficient to manage a local dynamic buffer by using a standard container. You may not need dynamic allocation at all for single objects, for example, if they never outlive their creator function. They can be replaced with local variables. Smart pointers become handy when a scenario requires a change of ownership. For example, when you reassign a dynamic resource multiple times, or in multiple paths. They're also useful for resources obtained from external code. And, when smart pointers are used to extend the lifetime of a resource. diff --git a/docs/code-quality/c26415.md b/docs/code-quality/c26415.md index 5438faa1eb..93c445fc29 100644 --- a/docs/code-quality/c26415.md +++ b/docs/code-quality/c26415.md @@ -11,7 +11,7 @@ ms.assetid: 4165f70a-78ae-4a03-b256-c4bd74b02d09 > Smart pointer parameter is used only to access contained pointer. Use T* or T& instead. **C++ Core Guidelines**: -[R.30](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r30-take-smart-pointers-as-parameters-only-to-explicitly-express-lifetime-semantics): Take smart pointers as parameters only to explicitly express lifetime semantics +[R.30](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-smartptrparam): Take smart pointers as parameters only to explicitly express lifetime semantics Using a smart pointer type to pass data to a function indicates that the target function needs to manage the lifetime of the contained object. However, say the function only uses the smart pointer to access the contained object and never actually calls any code that may lead to its deallocation (that is, never affects its lifetime). Then there's usually no need to complicate the interface with smart pointers. A plain pointer or reference to the contained object is preferred. diff --git a/docs/code-quality/c26416.md b/docs/code-quality/c26416.md index 658adfea02..c658471dc4 100644 --- a/docs/code-quality/c26416.md +++ b/docs/code-quality/c26416.md @@ -11,7 +11,7 @@ ms.assetid: f158207b-45cf-44cf-8e4b-b5b75b56ea0e > Shared pointer parameter is passed by rvalue reference. Pass by value instead. **C++ Core Guidelines**: -[R.34](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r34-take-a-shared_ptrwidget-parameter-to-express-that-a-function-is-part-owner): Take a shared_ptr\ parameter to express that a function is part owner +[R.34](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam-owner): Take a shared_ptr\ parameter to express shared ownership Passing a shared pointer by rvalue reference is rarely necessary. Unless it's an implementation of move semantics for a shared pointer type itself, shared pointer objects can be safely passed by value. Using rvalue reference may be also an indication that unique pointer is more appropriate since it clearly transfers unique ownership from caller to callee. diff --git a/docs/code-quality/c26417.md b/docs/code-quality/c26417.md index 3ab549beac..b8138b42ab 100644 --- a/docs/code-quality/c26417.md +++ b/docs/code-quality/c26417.md @@ -11,7 +11,7 @@ ms.assetid: 0e09fcc6-f9eb-4404-b51e-5815705c6afb > Shared pointer parameter is passed by reference and not reset or reassigned. Use T* or T& instead. **C++ Core Guidelines**: -[R.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r35-take-a-shared_ptrwidget-parameter-to-express-that-a-function-might-reseat-the-shared-pointer): Take a shared_ptr\& parameter to express that a function might reseat the shared pointer +[R.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam): Take a shared_ptr\& parameter to express that a function might reseat the shared pointer Passing shared pointers by reference may be useful in scenarios where called code updates the target of the smart pointer object, and its caller expects to see such updates. Using a reference solely to reduce costs of passing a shared pointer is questionable. If called code only accesses the target object and never manages its lifetime, it's safer to pass a raw pointer or reference, rather than to expose resource management details. diff --git a/docs/code-quality/c26418.md b/docs/code-quality/c26418.md index 30c44cf0d1..d29c62c865 100644 --- a/docs/code-quality/c26418.md +++ b/docs/code-quality/c26418.md @@ -11,7 +11,7 @@ ms.assetid: d2c84a40-8a5d-4018-92c2-6498cdd9b541 > Shared pointer parameter is not copied or moved. Use T* or T& instead. **C++ Core Guidelines**: -[R.36](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r36-take-a-const-shared_ptrwidget-parameter-to-express-that-it-might-retain-a-reference-count-to-the-object-): Take a const shared_ptr\& parameter to express that it might retain a reference count to the object +[R.36](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-sharedptrparam-const): Take a const shared_ptr\& parameter to express that it might retain a reference count to the object If a shared pointer parameter is passed by value or by reference to a constant object, the function is expected to take control of the target object's lifetime without affecting the caller. The code should either copy or move the shared pointer parameter to another shared pointer object, or pass it along to other code by invoking functions that accept shared pointers. Otherwise, a plain pointer or reference may be feasible. diff --git a/docs/code-quality/c26426.md b/docs/code-quality/c26426.md index d889960eee..15289f08c7 100644 --- a/docs/code-quality/c26426.md +++ b/docs/code-quality/c26426.md @@ -12,7 +12,7 @@ ms.assetid: 6fb5f6d2-b097-47f8-8b49-f2fd4e9bef0e ## C++ Core Guidelines -[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects +[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-global-init): Avoid complex initialization of global objects The order of execution of initializers for global objects may be inconsistent or undefined, which can lead to issues that are hard to reproduce and investigate. To avoid such problems, global initializers shouldn't depend on external code that's executed at run time, and that may depend on data that's not yet initialized. This rule flags cases where global objects call functions to obtain their initial values. diff --git a/docs/code-quality/c26427.md b/docs/code-quality/c26427.md index e71f09e956..5586e4d46a 100644 --- a/docs/code-quality/c26427.md +++ b/docs/code-quality/c26427.md @@ -11,7 +11,7 @@ ms.assetid: 8fb95a44-8704-45b1-bc55-eccd59b1db2f > Global initializer accesses extern object '*symbol*' (i.22) **C++ Core Guidelines**: -[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects): Avoid complex initialization of global objects +[I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-global-init): Avoid complex initialization of global objects Global objects may be initialized in an inconsistent or undefined order, which means that interdependency between them is risky and should be avoided. This guideline is applicable when initializers refer to another object that's considered to be **`extern`**. diff --git a/docs/code-quality/c26429.md b/docs/code-quality/c26429.md index 96726440aa..857bffecf9 100644 --- a/docs/code-quality/c26429.md +++ b/docs/code-quality/c26429.md @@ -11,7 +11,7 @@ ms.assetid: 4e1c74d5-7307-436c-927b-f74ae863282c > Symbol is never tested for nullness, it can be marked as `gsl::not_null`. **C++ Core Guidelines**: -[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a `not_null` to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr): Use a `not_null` to indicate that "null" is not a valid value It's a common practice to use asserts to enforce assumptions about the validity of pointer values. The problem is, asserts don't expose assumptions through the interface (such as in return types or parameters). Asserts are also harder to maintain and keep in sync with other code changes. The recommendation is to use `gsl::not_null` from the Guidelines Support Library to mark resources that should never have a null value. The rule `USE_NOTNULL` helps to identify places that omit checks for null and hence can be updated to use `gsl::not_null`. diff --git a/docs/code-quality/c26430.md b/docs/code-quality/c26430.md index d417983a03..92fa6af1ec 100644 --- a/docs/code-quality/c26430.md +++ b/docs/code-quality/c26430.md @@ -11,7 +11,7 @@ ms.assetid: 3dca2626-8102-4eed-8ff3-73eb3d5c328c > Symbol is not tested for nullness on all paths. **C++ Core Guidelines**: -[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr): Use a not_null\ to indicate that "null" is not a valid value If code ever checks pointer variables for null, it should do so consistently and validate pointers on all paths. Sometimes overaggressive checking for null is still better than the possibility of a hard crash in one of the complicated branches. Ideally, such code should be refactored to be less complex (by splitting it into multiple functions), and to rely on markers like `gsl::not_null`. These markers allow the code to isolate parts of the algorithm that can make safe assumptions about valid pointer values. The rule `TEST_ON_ALL_PATHS` helps to find places where null checks are inconsistent (meaning assumptions may require review). Or, it finds actual bugs where a potential null value can bypass null checks in some of the code paths. diff --git a/docs/code-quality/c26431.md b/docs/code-quality/c26431.md index ded200ef16..ae48a3ac66 100644 --- a/docs/code-quality/c26431.md +++ b/docs/code-quality/c26431.md @@ -11,7 +11,7 @@ ms.assetid: 40be6032-c8de-49ab-8e43-e8eedc0ca0ba > The type of expression '*expr*' is already `gsl::not_null`. Do not test it for nullness (f.23) **C++ Core Guidelines**: -[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value): Use a not_null\ to indicate that "null" isn't a valid value +[F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr): Use a not_null\ to indicate that "null" is not a valid value The marker type `gsl::not_null` from the Guidelines Support Library is used to clearly indicate values that are never null pointers. It causes a hard failure if the assumption doesn't hold at run time. So, obviously, there's no need to check for null if an expression evaluates to a result of type `gsl::not_null`. diff --git a/docs/code-quality/c26432.md b/docs/code-quality/c26432.md index b9de0b8929..98a45f3475 100644 --- a/docs/code-quality/c26432.md +++ b/docs/code-quality/c26432.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["C26432"] > `If you define or delete any default operation in the type 'type-name', define or delete them all (c.21).` **C++ Core Guidelines**:\ -[C.21: If you define or `=delete` any copy, move, or destructor function, define or `=delete` them all](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c21-if-you-define-or-delete-any-copy-move-or-destructor-function-define-or-delete-them-all) +[C.21: If you define or `=delete` any copy, move, or destructor function, define or `=delete` them all](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-five) Special operations such as constructors are assumed to alter the behavior of types so they rely more on language mechanisms to automatically enforce specific scenarios. The canonical example is resource management. If you explicitly define, default, or delete any of these special operations, it signals you want to avoid any special handling of a type. It's inconsistent to leave the other operations unspecified, that is, implicitly defined as deleted by the compiler. diff --git a/docs/code-quality/c26436.md b/docs/code-quality/c26436.md index ef07743865..f2c433854f 100644 --- a/docs/code-quality/c26436.md +++ b/docs/code-quality/c26436.md @@ -10,7 +10,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines C.35 > The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor (c.35) -[**C++ Core Guidelines**: C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-non-virtual): A base class destructor should be either public and virtual, or protected and nonvirtual +[**C++ Core Guidelines**: C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual): A base class destructor should be either public and virtual, or protected and non-virtual If a class defines a virtual function it becomes polymorphic, which implies that derived classes can change its behavior including resource management and destruction logic. Because client code may call polymorphic types via pointers to base classes, there's no way a client can explicitly choose which behavior is appropriate without downcasting. To make sure that resources are managed consistently and destruction occurs according to the actual type's rules, you should define a public virtual destructor. If the type hierarchy is designed to disallow client code to destroy objects directly, destructors should be defined as protected non-virtual. diff --git a/docs/code-quality/c26437.md b/docs/code-quality/c26437.md index 2f96db0776..1ec3dbc432 100644 --- a/docs/code-quality/c26437.md +++ b/docs/code-quality/c26437.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["C26437"] > Do not slice. **C++ Core Guidelines**: -[ES.63: Don't slice](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es63-dont-slice) +[ES.63: Don't slice](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-slice) The language allows [slicing](https://en.wikipedia.org/wiki/Object_slicing) and can be viewed as a special case of a dangerous implicit cast. Even if it's done intentionally and doesn't lead to immediate issues, it's still highly discouraged. It makes code harder to change, by forcing extra requirements on related data types. It's especially true if types are polymorphic or involve resource management. diff --git a/docs/code-quality/c26438.md b/docs/code-quality/c26438.md index 2317d81513..dd7f16b4eb 100644 --- a/docs/code-quality/c26438.md +++ b/docs/code-quality/c26438.md @@ -11,7 +11,7 @@ ms.assetid: c7b3f59c-fb2f-4816-bda4-0fad23c80d83 > Avoid `goto` (es.76) **C++ Core Guidelines**:\ -[ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es76-avoid-goto): Avoid goto +[ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-goto): Avoid goto The use of **`goto`** is widely considered a dangerous and error-prone practice. It's acceptable only in generated code, such as in a parser generated from a grammar. With modern C++ features and utilities provided by the Guidelines Support Library, it should be easy to avoid **`goto`** altogether. diff --git a/docs/code-quality/c26439.md b/docs/code-quality/c26439.md index 85e7499a1e..385f65ca54 100644 --- a/docs/code-quality/c26439.md +++ b/docs/code-quality/c26439.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26439"] > This kind of function may not throw. Declare it 'noexcept'. -[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-must-not-throw-declare-it-noexcept) +[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept) Some operations should never throw exceptions. Their implementations should be reliable and should handle possible errors conditions gracefully. They shouldn't use exceptions to indicate failure. This rule flags cases where such operations aren't explicitly marked as `noexcept`, which means that they may throw exceptions and consumers can't make assumptions about its reliability. @@ -63,4 +63,4 @@ struct S ## See also [C26455](c26455.md)\ -[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-must-not-throw-declare-it-noexcept) +[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept) diff --git a/docs/code-quality/c26440.md b/docs/code-quality/c26440.md index bf4207b1f0..62a9c87e53 100644 --- a/docs/code-quality/c26440.md +++ b/docs/code-quality/c26440.md @@ -10,7 +10,7 @@ description: CppCoreCheck rule C26440 that enforces C++ Core Guidelines F.6 > Function can be declared 'noexcept'. -[**C++ Core Guidelines** F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept): If your function may not throw, declare it `noexcept` +[**C++ Core Guidelines** F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept): If your function must not throw, declare it `noexcept` If code isn't supposed to cause any exceptions, it should be marked by using the `noexcept` specifier. This annotation helps to simplify error handling on the client code side, and enables the compiler to do more optimizations. diff --git a/docs/code-quality/c26441.md b/docs/code-quality/c26441.md index c2f5dc91b8..a91a41ff87 100644 --- a/docs/code-quality/c26441.md +++ b/docs/code-quality/c26441.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26441"] ## C++ Core Guidelines -[CP.44: Remember to name your `lock_guard`s and `unique_lock`s](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cp44-remember-to-name-your-lock_guards-and-unique_locks) +[CP.44: Remember to name your `lock_guard`s and `unique_lock`s](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconc-name) ## Remarks diff --git a/docs/code-quality/c26444.md b/docs/code-quality/c26444.md index cc020442fe..cca16a240b 100644 --- a/docs/code-quality/c26444.md +++ b/docs/code-quality/c26444.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26444"] ## C++ Core Guidelines -[ES.84: Don't try to declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es84-dont-try-to-declare-a-local-variable-with-no-name) +[ES.84: Don't try to declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-noname) An unnamed variable declaration creates a temporary object that is discarded at the end of the statement. Such temporary objects with nontrivial behavior may point to either inefficient code that allocates and immediately throws away resources or to the code that unintentionally ignores nonprimitive data. Sometimes it may also indicate plainly wrong declaration. @@ -46,4 +46,4 @@ void Foo() ## See also [C26441](C26441.md)\ -[ES.84: Don't try to declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es84-dont-try-to-declare-a-local-variable-with-no-name) +[ES.84: Don't try to declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-noname) diff --git a/docs/code-quality/c26445.md b/docs/code-quality/c26445.md index e81beeba28..2269f7e065 100644 --- a/docs/code-quality/c26445.md +++ b/docs/code-quality/c26445.md @@ -13,7 +13,7 @@ A reference to `gsl::span` or `std::string_view` may be an indication of a lifet ## C++ Core Guidelines -[GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views) +[GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-views) This rule catches subtle lifetime issues that may occur in code migrated from standard containers to new span and view types. Such types can be considered as "references to buffers." Using a reference to a span or view creates an extra layer of indirection. Such indirection is often unnecessary and can be confusing for maintainers. Spans are cheap to copy and can be returned by value from function calls. Obviously, such call results should never be referenced. diff --git a/docs/code-quality/c26446.md b/docs/code-quality/c26446.md index c63bb166bf..c8e7f37213 100644 --- a/docs/code-quality/c26446.md +++ b/docs/code-quality/c26446.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26446"] > Prefer to use gsl::at() instead of unchecked subscript operator (bounds.4). -C++ Core Guidelines: [Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). +C++ Core Guidelines: [Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds). ## Remarks diff --git a/docs/code-quality/c26447.md b/docs/code-quality/c26447.md index daf04cf103..1835053be8 100644 --- a/docs/code-quality/c26447.md +++ b/docs/code-quality/c26447.md @@ -10,7 +10,7 @@ helpviewer_keywords: ["C26447"] > The function is declared `noexcept` but calls function *function_name* that may throw exceptions (f.6). C++ Core Guidelines:\ -[F.6: If your function may not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). +[F.6: If your function must not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept). ## Remarks diff --git a/docs/code-quality/c26449.md b/docs/code-quality/c26449.md index 85de9ef0c3..594025669c 100644 --- a/docs/code-quality/c26449.md +++ b/docs/code-quality/c26449.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26449"] > `gsl::span` or `std::string_view` created from a temporary will be invalid when the temporary is invalidated (gsl.view) -C++ Core Guidelines: [GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views). +C++ Core Guidelines: [GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-views). Spans and views are convenient and lightweight types that allow you to reference memory buffers. But they must be used carefully: while their interface looks similar to standard containers, their behavior is more like the behavior of pointers and references. They don't own data and must never be constructed from temporary buffers. This check focuses on cases where source data is temporary, while a span or view isn't. This rule can help to avoid subtle but dangerous mistakes made when legacy code gets modernized and adopts spans or views. There's another check that handles a slightly different scenario involving span references: [C26445 NO_SPAN_REF](c26445.md). diff --git a/docs/code-quality/c26450.md b/docs/code-quality/c26450.md index 66044efb23..2f4d1f351d 100644 --- a/docs/code-quality/c26450.md +++ b/docs/code-quality/c26450.md @@ -47,4 +47,4 @@ long long multiply() [C26452](c26452.md)\ [C26453](c26453.md)\ [C26454](c26454.md)\ -[ES.103: Don't overflow](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es103-dont-overflow) +[ES.103: Don't overflow](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-overflow) diff --git a/docs/code-quality/c26452.md b/docs/code-quality/c26452.md index 0f529f60ce..14a7f7d727 100644 --- a/docs/code-quality/c26452.md +++ b/docs/code-quality/c26452.md @@ -41,5 +41,5 @@ unsigned long long combine(unsigned lo, unsigned hi) [C26451](c26451.md)\ [C26453](c26453.md)\ [C26454](c26454.md)\ -[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es101-use-unsigned-types-for-bit-manipulation)\ -[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es102-use-signed-types-for-arithmetic) +[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-unsigned)\ +[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-signed) diff --git a/docs/code-quality/c26453.md b/docs/code-quality/c26453.md index 32a7064209..f7a44f29ab 100644 --- a/docs/code-quality/c26453.md +++ b/docs/code-quality/c26453.md @@ -43,5 +43,5 @@ void leftshift(int shiftCount) [C26451](c26451.md)\ [C26452](c26452.md)\ [C26454](c26454.md)\ -[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es101-use-unsigned-types-for-bit-manipulation)\ -[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es102-use-signed-types-for-arithmetic) +[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-unsigned)\ +[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-signed) diff --git a/docs/code-quality/c26454.md b/docs/code-quality/c26454.md index 77b21092ec..59e6c58c51 100644 --- a/docs/code-quality/c26454.md +++ b/docs/code-quality/c26454.md @@ -41,4 +41,4 @@ unsigned int negativeunsigned() [C26451](c26451.md)\ [C26452](c26452.md)\ [C26453](c26453.md)\ -[ES.106: Don't try to avoid negative values by using `unsigned`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es106-dont-try-to-avoid-negative-values-by-using-unsigned) +[ES.106: Don't try to avoid negative values by using `unsigned`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nonnegative) diff --git a/docs/code-quality/c26455.md b/docs/code-quality/c26455.md index 617f0cedd5..756871cae8 100644 --- a/docs/code-quality/c26455.md +++ b/docs/code-quality/c26455.md @@ -23,4 +23,4 @@ Code analysis name: `DEFAULT_CTOR_NOEXCEPT` ## See also [C26439](./c26439.md)\ -[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-must-not-throw-declare-it-noexcept) +[F.6: If your function must not throw, declare it `noexcept`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexceptt) diff --git a/docs/code-quality/c26456.md b/docs/code-quality/c26456.md index d027fb7be1..74456141ad 100644 --- a/docs/code-quality/c26456.md +++ b/docs/code-quality/c26456.md @@ -21,4 +21,4 @@ Code analysis name: `DONT_HIDE_OPERATORS` ## See also -[C++ Core Guideline c.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final) +[C++ Core Guideline c.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override) diff --git a/docs/code-quality/c26457.md b/docs/code-quality/c26457.md index 4502798370..17430f1830 100644 --- a/docs/code-quality/c26457.md +++ b/docs/code-quality/c26457.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26457"] ## Remarks -Excerpt from the [C++ Core Guideline ES.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es48-avoid-casts): +Excerpt from the [C++ Core Guideline ES.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts): > Never cast to `(void)` to ignore a `[[nodiscard]]` return value. If you deliberately want to discard such a result, first think hard about whether that is really a good idea (there is usually a good reason the author of the function or of the return type used `[[nodiscard]]` in the first place). If you still think it's appropriate and your code reviewer agrees, use `std::ignore =` to turn off the warning which is simple, portable, and easy to grep. diff --git a/docs/code-quality/c26462.md b/docs/code-quality/c26462.md index 376f861615..8f9adfd83d 100644 --- a/docs/code-quality/c26462.md +++ b/docs/code-quality/c26462.md @@ -31,4 +31,4 @@ void function1(int* ptr) ## See also -[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). diff --git a/docs/code-quality/c26463.md b/docs/code-quality/c26463.md index 432d73548e..1da69c4f32 100644 --- a/docs/code-quality/c26463.md +++ b/docs/code-quality/c26463.md @@ -17,4 +17,4 @@ Code analysis name: `USE_CONST_FOR_ELEMENTS` ## See also -[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). diff --git a/docs/code-quality/c26464.md b/docs/code-quality/c26464.md index f380a3b654..aa5d02d128 100644 --- a/docs/code-quality/c26464.md +++ b/docs/code-quality/c26464.md @@ -17,4 +17,4 @@ Code analysis name: `USE_CONST_POINTER_FOR_ELEMENTS` ## See also -[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). diff --git a/docs/code-quality/c26472.md b/docs/code-quality/c26472.md index 814fae7c91..67a2f80fd1 100644 --- a/docs/code-quality/c26472.md +++ b/docs/code-quality/c26472.md @@ -11,7 +11,7 @@ ms.assetid: 51e215a7-0e0a-4e6c-bff1-805bf5b1af29 > Don't use a static_cast for arithmetic conversions. Use brace initialization, `gsl::narrow_cast`, or `gsl::narrow`. **C++ Core Guidelines**: -[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-arithmeticcast): Avoid casts This rule helps to find places where static casts are used to convert between integral types. These casts are unsafe because the compiler wouldn't warn if any data loss occurs. Brace initializers are better for the cases where constants are used, and a compiler error is desired. There are also utilities from the Guidelines Support Library that help to describe intentions clearly: diff --git a/docs/code-quality/c26473.md b/docs/code-quality/c26473.md index 6cd55d5897..410129d326 100644 --- a/docs/code-quality/c26473.md +++ b/docs/code-quality/c26473.md @@ -11,7 +11,7 @@ ms.assetid: d88aaa57-0003-421f-8377-4e6a5c27f2df > Don't cast between pointer types where the source type and the target type are the same. **C++ Core Guidelines**: -[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-identitycast): Avoid casts This rule helps to remove unnecessary or suspicious casts. Obviously, when a type is converted to itself, such a conversion is ineffective. Yet the fact that the cast is used may indicate a subtle design issue or a potential for regression if types change in future. It's always safer to use as few casts as possible. diff --git a/docs/code-quality/c26474.md b/docs/code-quality/c26474.md index ca1e986741..fd62d069f6 100644 --- a/docs/code-quality/c26474.md +++ b/docs/code-quality/c26474.md @@ -11,7 +11,7 @@ ms.assetid: 1e23a8e6-97fa-47f5-a279-b52aa2efafa4 > Don't cast between pointer types when the conversion could be implicit. **C++ Core Guidelines**:\ -[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile): Avoid casts +[Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-implicitpointercast): Avoid casts In some cases, implicit casts between pointer types are safe and don't require you to write a specific cast expression. This rule finds instances of unnecessary casts you can safely remove. diff --git a/docs/code-quality/c26475.md b/docs/code-quality/c26475.md index da0daf01af..b44baae8a8 100644 --- a/docs/code-quality/c26475.md +++ b/docs/code-quality/c26475.md @@ -11,7 +11,7 @@ ms.assetid: 4ed71cf8-f155-4961-b4fe-77feb3b880c3 > Do not use function style C-casts. **C++ Core Guidelines**: -[ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es49-if-you-must-use-a-cast-use-a-named-cast): If you must use a cast, use a named cast +[ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts-named): If you must use a cast, use a named cast Function-style casts (for example, `int(1.1)`) are another form of C-style casts (like `(int)1.1`), which have questionable safety. Specifically, the compiler doesn't try to check if any data loss can occur either in C-casts or in function casts. In both cases, it's better either to avoid casting or to use a braced initializer if possible. If neither works, static casts may be suitable, but it's still better to use utilities from the Guidelines Support Library: diff --git a/docs/code-quality/c26478.md b/docs/code-quality/c26478.md index ddaff2f01b..47dc1d62bf 100644 --- a/docs/code-quality/c26478.md +++ b/docs/code-quality/c26478.md @@ -37,4 +37,4 @@ To fix the issue, remove the redundant `std::move`. ## See also -[ES.56: Write `std::move()` only when you need to explicitly move an object to another scope](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es56-write-stdmove-only-when-you-need-to-explicitly-move-an-object-to-another-scope) +[ES.56: Write `std::move()` only when you need to explicitly move an object to another scope](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-move) diff --git a/docs/code-quality/c26479.md b/docs/code-quality/c26479.md index 4612d6fea0..130adb11af 100644 --- a/docs/code-quality/c26479.md +++ b/docs/code-quality/c26479.md @@ -38,5 +38,5 @@ S foo() ## See also -[F.48: Don't `return std::move(local)`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f48-dont-return-stdmovelocal)\ -[ES.56: Write `std::move()` only when you need to explicitly move an object to another scope](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es56-write-stdmove-only-when-you-need-to-explicitly-move-an-object-to-another-scope) +[F.48: Don't `return std::move(local)`](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-return-move-local)\ +[ES.56: Write `std::move()` only when you need to explicitly move an object to another scope](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-move) diff --git a/docs/code-quality/c26482.md b/docs/code-quality/c26482.md index 5f278d8008..9fafb3b912 100644 --- a/docs/code-quality/c26482.md +++ b/docs/code-quality/c26482.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26482 that enforces C++ Core Guidelines Bounds.2 ## See also -[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arrayindex) ## Example diff --git a/docs/code-quality/c26483.md b/docs/code-quality/c26483.md index 73a447ebd4..45fb0f2471 100644 --- a/docs/code-quality/c26483.md +++ b/docs/code-quality/c26483.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26483"] ## See also -[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +[C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arrayindex) ## Example diff --git a/docs/code-quality/c26490.md b/docs/code-quality/c26490.md index 0a74626fc4..141a6a1941 100644 --- a/docs/code-quality/c26490.md +++ b/docs/code-quality/c26490.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26490 that enforces C++ Core Guidelines Type.1 ## See also -[C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +[C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). ## Example diff --git a/docs/code-quality/c26491.md b/docs/code-quality/c26491.md index 760762e2bf..109c4dae5a 100644 --- a/docs/code-quality/c26491.md +++ b/docs/code-quality/c26491.md @@ -7,4 +7,4 @@ helpviewer_keywords: ["C26491"] --- # Warning C26491 -> Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +> Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-downcast). diff --git a/docs/code-quality/c26492.md b/docs/code-quality/c26492.md index f59114cba8..33735543dc 100644 --- a/docs/code-quality/c26492.md +++ b/docs/code-quality/c26492.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26492 that enforces C++ Core Guidelines Type.3 ## See also -[C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +[C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-constcast). ## Example diff --git a/docs/code-quality/c26493.md b/docs/code-quality/c26493.md index 8f93b4f497..c67d9ffdd5 100644 --- a/docs/code-quality/c26493.md +++ b/docs/code-quality/c26493.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule that enforces C++ Core Guidelines Type.4 ## See also -[C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +[C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-cstylecast). ## Example diff --git a/docs/code-quality/c26494.md b/docs/code-quality/c26494.md index 7ed21fb002..447b03a4c4 100644 --- a/docs/code-quality/c26494.md +++ b/docs/code-quality/c26494.md @@ -37,5 +37,5 @@ void function() ## See also -[ES.20: Always initialize an object](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es20-always-initialize-an-object)\ -[Pro.safety: Type-safety profile](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#prosafety-type-safety-profile) +[ES.20: Always initialize an object](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-always)\ +[Pro.safety: Type-safety profile](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type) diff --git a/docs/code-quality/c26495.md b/docs/code-quality/c26495.md index e318171fe7..5bfc3c1685 100644 --- a/docs/code-quality/c26495.md +++ b/docs/code-quality/c26495.md @@ -11,7 +11,7 @@ helpviewer_keywords: ["C26495"] ## Remarks -A member variable isn't initialized by a constructor or by an initializer. Make sure all variables are initialized by the end of construction. For more information, see C++ Core Guidelines [Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type) and [C.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c48-prefer-in-class-initializers-to-member-initializers-in-constructors-for-constant-initializers). +A member variable isn't initialized by a constructor or by an initializer. Make sure all variables are initialized by the end of construction. For more information, see C++ Core Guidelines [Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-memberinit) and [C.48](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-in-class-initializer). This check is intra-procedural. Whenever there's a function call to a nonconst member function, the check assumes that this member function initializes all of the members. This heuristic can result in missed errors and is in place to avoid false positive results. Moreover, when a member is passed by nonconst reference to a function, the check assumes that the function initializes the member. diff --git a/docs/code-quality/c26496.md b/docs/code-quality/c26496.md index 91c0d1f88b..9fd6800df5 100644 --- a/docs/code-quality/c26496.md +++ b/docs/code-quality/c26496.md @@ -11,7 +11,7 @@ description: CppCoreCheck rule C26496 that enforces C++ Core Guidelines Con.4 ## See also -[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +[C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). ## Example diff --git a/docs/code-quality/c26498.md b/docs/code-quality/c26498.md index e495372145..417a425427 100644 --- a/docs/code-quality/c26498.md +++ b/docs/code-quality/c26498.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26498"] > The function '*function*' is constexpr, mark variable '*variable*' constexpr if compile-time evaluation is desired (con.5) -This rule helps to enforce [Con.5: Use `constexpr` for values that can be computed at compile time](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con5-use-constexpr-for-values-that-can-be-computed-at-compile-time) in the C++ Core Guidelines. +This rule helps to enforce [Con.5: Use `constexpr` for values that can be computed at compile time](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-constexpr) in the C++ Core Guidelines. ## Remarks @@ -60,4 +60,4 @@ void foo() [C26497](c26407.md)\ [C26814](c26814.md)\ -[Con.5: Use `constexpr` for values that can be computed at compile time](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con5-use-constexpr-for-values-that-can-be-computed-at-compile-time) +[Con.5: Use `constexpr` for values that can be computed at compile time](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-constexpr) diff --git a/docs/code-quality/c26812.md b/docs/code-quality/c26812.md index 434ffe7fb3..d7a3ef1038 100644 --- a/docs/code-quality/c26812.md +++ b/docs/code-quality/c26812.md @@ -47,4 +47,4 @@ Print_color(Product_info::Red); // Error: cannot convert Product_info to int. ## See also -[Enum.3 Prefer enum class over enum](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#enum3-prefer-class-enums-over-plain-enums) +[Enum.3 Prefer enum class over enum](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Renum-class) diff --git a/docs/code-quality/c26815.md b/docs/code-quality/c26815.md index 5a8c319b65..8778703ae4 100644 --- a/docs/code-quality/c26815.md +++ b/docs/code-quality/c26815.md @@ -78,4 +78,4 @@ void f() { ## See also [C26816](c26816.md)\ -[ES.65: Don't dereference an invalid pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es65-dont-dereference-an-invalid-pointer) +[ES.65: Don't dereference an invalid pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-deref) diff --git a/docs/code-quality/c26816.md b/docs/code-quality/c26816.md index f60d02ef09..f01ea3bc00 100644 --- a/docs/code-quality/c26816.md +++ b/docs/code-quality/c26816.md @@ -62,4 +62,4 @@ int f() { ## See also [C26815](c26815.md)\ -[ES.65: Don't dereference an invalid pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es65-dont-dereference-an-invalid-pointer) +[ES.65: Don't dereference an invalid pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-deref) diff --git a/docs/code-quality/c26817.md b/docs/code-quality/c26817.md index 3e66b660cf..470b699dd2 100644 --- a/docs/code-quality/c26817.md +++ b/docs/code-quality/c26817.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26817"] > Potentially expensive copy of variable *name* in range-for loop. Consider making it a const reference (es.71). -For more information, see [ES.71: Prefer a range-`for`-statement to a `for`-statement when there is a choice](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es71-prefer-a-range-for-statement-to-a-for-statement-when-there-is-a-choice) in the C++ Core Guidelines. +For more information, see [ES.71: Prefer a range-`for`-statement to a `for`-statement when there is a choice](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-for-range) in the C++ Core Guidelines. ## Example diff --git a/docs/code-quality/c26818.md b/docs/code-quality/c26818.md index db6965b105..52adf70f5b 100644 --- a/docs/code-quality/c26818.md +++ b/docs/code-quality/c26818.md @@ -14,7 +14,7 @@ no-loc: [ default, int, char ] This check covers the missing **`default`** label in switch statements that switch over a non-enumeration type, such as **`int`**, **`char`**, and so on. -For more information, see [ES.79: Use default to handle common cases (only)](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es79-use-default-to-handle-common-cases-only) in the C++ Core Guidelines. +For more information, see [ES.79: Use default to handle common cases (only)](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-default) in the C++ Core Guidelines. ## Example diff --git a/docs/code-quality/c26819.md b/docs/code-quality/c26819.md index fea652f765..2e2007c9ff 100644 --- a/docs/code-quality/c26819.md +++ b/docs/code-quality/c26819.md @@ -13,7 +13,7 @@ helpviewer_keywords: ["C26819"] This check covers implicit fallthrough in switch statements. Implicit fallthrough is when control flow transfers from one switch case directly into a following switch case without the use of the `[[fallthrough]];` statement. This warning is raised when an implicit fallthrough is detected in a switch case containing at least one statement. -For more information, see [ES.78: Don't rely on implicit fallthrough in `switch` statements](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es78-dont-rely-on-implicit-fallthrough-in-switch-statements) in the C++ Core Guidelines. +For more information, see [ES.78: Don't rely on implicit fallthrough in `switch` statements](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-break) in the C++ Core Guidelines. ## Example @@ -87,4 +87,4 @@ void foo(int a) ## See also -[ES.78: Don't rely on implicit fallthrough in `switch` statements](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es78-dont-rely-on-implicit-fallthrough-in-switch-statements) +[ES.78: Don't rely on implicit fallthrough in `switch` statements](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-break) diff --git a/docs/code-quality/c26820.md b/docs/code-quality/c26820.md index 133edaf130..291f3abc21 100644 --- a/docs/code-quality/c26820.md +++ b/docs/code-quality/c26820.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26820"] > This is a potentially expensive copy operation. Consider using a reference unless a copy is required (p.9) -For more information, see [P.9: Don't waste time or space](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#p9-dont-waste-time-or-space) in the C++ Core Guidelines. +For more information, see [P.9: Don't waste time or space](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rp-waste) in the C++ Core Guidelines. This check covers nonobvious and easy-to-miss behavior when assigning a reference to a variable marked **`auto`**. The type of the **`auto`** variable is resolved to a value rather than a reference, and an implicit copy is made. diff --git a/docs/code-quality/c26826.md b/docs/code-quality/c26826.md index 47fd2d9e8d..8c0f827e9d 100644 --- a/docs/code-quality/c26826.md +++ b/docs/code-quality/c26826.md @@ -9,7 +9,7 @@ helpviewer_keywords: ["C26826"] > Don't use C-style variable arguments (f.55). -For more information, see [F.55: Don't use `va_arg` arguments](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f55-dont-use-va_arg-arguments) in the C++ Core Guidelines. +For more information, see [F.55: Don't use `va_arg` arguments](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#F-varargs) in the C++ Core Guidelines. ## Remarks diff --git a/docs/code-quality/code-analysis-for-cpp-corecheck.md b/docs/code-quality/code-analysis-for-cpp-corecheck.md index b5baf2cc33..82158f2233 100644 --- a/docs/code-quality/code-analysis-for-cpp-corecheck.md +++ b/docs/code-quality/code-analysis-for-cpp-corecheck.md @@ -35,13 +35,13 @@ Do not assign a raw pointer to an owner\. See [C++ Core Guidelines R.3](https Prefer scoped objects, don't heap-allocate unnecessarily. See [C++ Core Guidelines R.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-scoped). [C26429 USE_NOTNULL](C26429.md)\ -Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). [C26430 TEST_ON_ALL_PATHS](C26430.md)\ -Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). [C26431 DONT_TEST_NOTNULL](C26431.md)\ -The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). ## RAW_POINTER Group @@ -61,19 +61,19 @@ Avoid malloc() and free(), prefer the nothrow version of new with delete. See [C Avoid calling new and delete explicitly, use std::make_unique\ instead. See [C++ Core Guidelines R.11](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-newdelete). [C26429 USE_NOTNULL](C26429.md)\ -Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is never tested for nullness, it can be marked as not_null. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). [C26430 TEST_ON_ALL_PATHS](C26430.md)\ -Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +Symbol '*symbol*' is not tested for nullness on all paths. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). [C26431 DONT_TEST_NOTNULL](C26431.md)\ -The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f23-use-a-not_nullt-to-indicate-that-null-is-not-a-valid-value). +The type of expression '*expr*' is already gsl::not_null. Do not test it for nullness. See [C++ Core Guidelines F.23](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-nullptr). [C26481 NO_POINTER_ARITHMETIC](C26481.md)\ -Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds). +Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arithmetic). [C26485 NO_ARRAY_TO_POINTER_DECAY](C26485.md)\ -Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds). +Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-decay). ## UNIQUE_POINTER Group @@ -109,10 +109,10 @@ Shared pointer parameter '*symbol*' is not copied or moved. Use T* or T& instead ## DECLARATION Group [C26426 NO_GLOBAL_INIT_CALLS](C26426.md)\ -Global initializer calls a non-constexpr function '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects). +Global initializer calls a non-constexpr function '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-global-init). [C26427 NO_GLOBAL_INIT_EXTERNS](C26427.md)\ -Global initializer accesses extern object '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#i22-avoid-complex-initialization-of-global-objects). +Global initializer accesses extern object '*symbol*'. See [C++ Core Guidelines I.22](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Ri-global-init). [C26444 NO_UNNAMED_RAII_OBJECTS](c26444.md)\ Avoid unnamed objects with custom construction and destruction. See [ES.84: Don't (try to) declare a local variable with no name](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-noname). @@ -120,19 +120,19 @@ Avoid unnamed objects with custom construction and destruction. See [ES.84: Don' ## CLASS Group [C26432 DEFINE_OR_DELETE_SPECIAL_OPS](C26432.md)\ -If you define or delete any default operation in the type '*symbol*', define or delete them all. See [C++ Core Guidelines C.21](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c21-if-you-define-or-delete-any-default-operation-define-or-delete-them-all). +If you define or delete any default operation in the type '*symbol*', define or delete them all. See [C++ Core Guidelines C.21](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-five). [C26433 OVERRIDE_EXPLICITLY](c26433.md)\ -Function '*symbol*' should be marked with 'override'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). +Function '*symbol*' should be marked with 'override'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). [C26434 DONT_HIDE_METHODS](C26434.md)\ -Function '*symbol_1*' hides a non-virtual function '*symbol_2*'. See [C++ Core Guidelines C.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c128-virtual-functions-should-specify-exactly-one-of-virtual-override-or-final). +Function '*symbol_1*' hides a non-virtual function '*symbol_2*'. See [C++ Core Guidelines C.128](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). [C26435 SINGLE_VIRTUAL_SPECIFICATION](c26435.md)\ Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final'. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). [C26436 NEED_VIRTUAL_DTOR](C26436.md)\ -The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor. See [C++ Core Guidelines C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c35-a-base-class-destructor-should-be-either-public-and-virtual-or-protected-and-nonvirtual). +The type '*symbol*' with a virtual function needs either public virtual or protected non-virtual destructor. See [C++ Core Guidelines C.35](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual). [C26443 NO_EXPLICIT_DTOR_OVERRIDE](c26443.md)\ Overriding destructor should not use explicit 'override' or 'virtual' specifiers. See [C.128: Virtual functions should specify exactly one of virtual, override, or final](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rh-override). @@ -140,24 +140,24 @@ Overriding destructor should not use explicit 'override' or 'virtual' specifiers ## STYLE Group [C26438 NO_GOTO](C26438.md)\ -Avoid `goto`. See [C++ Core Guidelines ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es76-avoid-goto). +Avoid `goto`. See [C++ Core Guidelines ES.76](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-goto). ## FUNCTION Group [C26439 SPECIAL_NOEXCEPT](C26439.md)\ -This kind of function may not throw. Declare it **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). +This kind of function may not throw. Declare it **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept). [C26440 DECLARE_NOEXCEPT](C26440.md)\ -Function '*symbol*' can be declared **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). +Function '*symbol*' can be declared **`noexcept`**. See [C++ Core Guidelines F.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept). [C26447 DONT_THROW_IN_NOEXCEPT](c26447.md)\ The function is declared **`noexcept`** but calls a function which may throw exceptions. -See [C++ Core Guidelines: F.6: If your function may not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f6-if-your-function-may-not-throw-declare-it-noexcept). +See [C++ Core Guidelines: F.6: If your function may not throw, declare it noexcept](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-noexcept). ## CONCURRENCY Group [C26441 NO_UNNAMED_GUARDS](C26441.md)\ -Guard objects must be named. See [C++ Core Guidelines cp.44](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cp44-remember-to-name-your-lock_guards-and-unique_locks). +Guard objects must be named. See [C++ Core Guidelines cp.44](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconc-name). ## CONST Group @@ -168,16 +168,16 @@ The reference argument '*argument*' for function '*function*' can be marked as ` The pointer argument '*argument*' for function '*function*' can be marked as a pointer to `const`. See [C++ Core Guidelines con.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-ref). [C26462 USE_CONST_POINTER_FOR_VARIABLE](c26462.md)\ -The value pointed to by '*variable*' is assigned only once, mark it as a pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The value pointed to by '*variable*' is assigned only once, mark it as a pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). [C26463 USE_CONST_FOR_ELEMENTS](c26463.md)\ -The elements of array '*array*' are assigned only once, mark elements `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The elements of array '*array*' are assigned only once, mark elements `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). [C26464 USE_CONST_POINTER_FOR_ELEMENTS](c26464.md)\ -The values pointed to by elements of array '*array*' are assigned only once, mark elements as pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The values pointed to by elements of array '*array*' are assigned only once, mark elements as pointer to `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). [C26496 USE_CONST_FOR_VARIABLE](c26496.md)\ -The variable '*variable*' is assigned only once, mark it as `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#con4-use-const-to-define-objects-with-values-that-do-not-change-after-construction). +The variable '*variable*' is assigned only once, mark it as `const`. See [C++ Core Guidelines con.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rconst-const). [C26497 USE_CONSTEXPR_FOR_FUNCTION](c26497.md)\ This function *function* could be marked `constexpr` if compile-time evaluation is desired. See [C++ Core Guidelines F.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-constexpr). @@ -188,7 +188,7 @@ This function call *function* can use `constexpr` if compile-time evaluation is ## TYPE Group [C26437 DONT_SLICE](C26437.md)\ -Do not slice. See [C++ Core Guidelines ES.63](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es63-dont-slice). +Do not slice. See [C++ Core Guidelines ES.63](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-slice). [C26465 NO_CONST_CAST_UNNECESSARY](c26465.md)\ Don't use `const_cast` to cast away `const`. `const_cast` is not required; constness or volatility is not being removed by this conversion. See [C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-constcast). @@ -200,67 +200,67 @@ Don't use `static_cast` downcasts. A cast from a polymorphic type should use dyn Don't use `reinterpret_cast`. A cast from void* can use `static_cast`. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26472 NO_CASTS_FOR_ARITHMETIC_CONVERSION](C26472.md)\ -Don't use a `static_cast` for arithmetic conversions. Use brace initialization, gsl::narrow_cast, or gsl::narrow. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). +Don't use a `static_cast` for arithmetic conversions. Use brace initialization, gsl::narrow_cast, or gsl::narrow. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-arithmeticcast). [C26473 NO_IDENTITY_CAST](C26473.md)\ -Don't cast between pointer types where the source type and the target type are the same. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). +Don't cast between pointer types where the source type and the target type are the same. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-identitycast). [C26474 NO_IMPLICIT_CAST](C26474.md)\ -Don't cast between pointer types when the conversion could be implicit. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). +Don't cast between pointer types when the conversion could be implicit. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-implicitpointercast). [C26475 NO_FUNCTION_STYLE_CASTS](C26475.md)\ -Do not use function style C-casts. See [C++ Core Guidelines ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es49-if-you-must-use-a-cast-use-a-named-cast). +Do not use function style C-casts. See [C++ Core Guidelines ES.49](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-casts-named). [C26490 NO_REINTERPRET_CAST](c26490.md)\ -Don't use `reinterpret_cast`. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Don't use `reinterpret_cast`. See [C++ Core Guidelines Type.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-reinterpretcast). [C26491 NO_STATIC_DOWNCAST](c26490.md)\ -Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Don't use `static_cast` downcasts. See [C++ Core Guidelines Type.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-downcast). [C26492 NO_CONST_CAST](c26492.md)\ -Don't use `const_cast` to cast away `const`. See [C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Don't use `const_cast` to cast away `const`. See [C++ Core Guidelines Type.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-constcast). [C26493 NO_CSTYLE_CAST](c26493.md)\ -Don't use C-style casts. See [C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Don't use C-style casts. See [C++ Core Guidelines Type.4](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-cstylecast). [C26494 VAR_USE_BEFORE_INIT](c26494.md)\ -Variable '*variable*' is uninitialized. Always initialize an object. See [C++ Core Guidelines Type.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Variable '*variable*' is uninitialized. Always initialize an object. See [C++ Core Guidelines Type.5](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-init). [C26495 MEMBER_UNINIT](c26495.md)\ -Variable '*variable*' is uninitialized. Always initialize a member variable. See [C++ Core Guidelines Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-type). +Variable '*variable*' is uninitialized. Always initialize a member variable. See [C++ Core Guidelines Type.6](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-type-memberinit). ## BOUNDS Group [C26446 USE_GSL_AT](c26446.md)\ -Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). +Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-stdlib). [C26481 NO_POINTER_ARITHMETIC](C26481.md)\ -Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +Don't use pointer arithmetic. Use span instead. See [C++ Core Guidelines Bounds.1](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arithmetic) [C26482 NO_DYNAMIC_ARRAY_INDEXING](c26482.md)\ -Only index into arrays using constant expressions. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +Only index into arrays using constant expressions. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arrayindex) [C26483 STATIC_INDEX_OUT_OF_RANGE](c26483.md)\ -Value *value* is outside the bounds (0, *bound*) of variable '*variable*'. Only index into arrays using constant expressions that are within bounds of the array. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +Value *value* is outside the bounds (0, *bound*) of variable '*variable*'. Only index into arrays using constant expressions that are within bounds of the array. See [C++ Core Guidelines Bounds.2](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-arrayindex) [C26485 NO_ARRAY_TO_POINTER_DECAY](C26485.md)\ -Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-bounds) +Expression '*expr*': No array to pointer decay. See [C++ Core Guidelines Bounds.3](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-decay) ## GSL Group [C26445 NO_SPAN_REF](c26445.md)\ A reference to `gsl::span` or `std::string_view` may be an indication of a lifetime issue. -See [C++ Core Guidelines GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views) +See [C++ Core Guidelines GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-views) [C26446 USE_GSL_AT](c26446.md)\ -Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#probounds-bounds-safety-profile). +Prefer to use `gsl::at()` instead of unchecked subscript operator. See [C++ Core Guidelines: Bounds.4: Don't use standard-library functions and types that are not bounds-checked](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Pro-bounds-stdlib). [C26448 USE_GSL_FINALLY](c26448.md)\ Consider using `gsl::finally` if final action is intended. See [C++ Core Guidelines: GSL.util: Utilities](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-utilities). [C26449 NO_SPAN_FROM_TEMPORARY](c26449.md)\ `gsl::span` or `std::string_view` created from a temporary will be invalid when the temporary is invalidated. See -[C++ Core Guidelines: GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#gslview-views). +[C++ Core Guidelines: GSL.view: Views](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#SS-views). ## Deprecated Warnings From f993805f2537bc2ee3c6ef1258c0a31eeacae204 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 4 Aug 2025 23:10:19 +0800 Subject: [PATCH 941/981] Add blockquotes for error messages in range [C2671, C2700] --- docs/error-messages/compiler-errors-2/compiler-error-c2671.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2673.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2674.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2675.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2677.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2678.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2679.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2680.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2681.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2682.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2683.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2687.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2688.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2689.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2690.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2691.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2692.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2693.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2694.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2695.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2696.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2698.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2700.md | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md index faa1b927d7..7792c1feda 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md @@ -8,7 +8,7 @@ ms.assetid: fc0ee40f-c8f3-408f-b89d-745d149c4169 --- # Compiler Error C2671 -'function' : static member functions do not have 'this' pointers +> 'function' : static member functions do not have 'this' pointers A **`static`** member function tried to access **`this`**. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md index b122a1aabb..762c381043 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md @@ -8,7 +8,7 @@ ms.assetid: 780230c0-619b-4a78-b01d-ff5886306741 --- # Compiler Error C2673 -'function' : global functions do not have 'this' pointers +> 'function' : global functions do not have 'this' pointers A global function tried to access **`this`**. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md index 6f86c485aa..16263cd27c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md @@ -8,7 +8,7 @@ ms.assetid: 7cbd70d8-d992-44d7-a5cb-dd8cf9c759d2 --- # Compiler Error C2674 -a generic declaration is not allowed in this context +> a generic declaration is not allowed in this context A generic was declared incorrectly. For more information, see [Generics](../../extensions/generics-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md index 4bd9416580..e256c1589b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md @@ -8,7 +8,7 @@ ms.assetid: 4b92a12b-bff8-4dd5-a109-620065fc146c --- # Compiler Error C2675 -unary 'operator' : 'type' does not define this operator or a conversion to a type acceptable to the predefined operator +> unary 'operator' : 'type' does not define this operator or a conversion to a type acceptable to the predefined operator C2675 can also occur when using a unary operator, and the type does not define the operator or a conversion to a type acceptable to the predefined operator. To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md index e5e8937b49..8c14e1730e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md @@ -8,7 +8,7 @@ ms.assetid: 76bc0b65-f52a-45a6-b6d6-0555f89da9a8 --- # Compiler Error C2677 -binary 'operator' : no global operator found which takes type 'type' (or there is no acceptable conversion) +> binary 'operator' : no global operator found which takes type 'type' (or there is no acceptable conversion) To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md index 3c56b110b0..9febb975b8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md @@ -8,7 +8,7 @@ ms.assetid: 1f0a4e26-b429-44f5-9f94-cb66441220c8 --- # Compiler Error C2678 -binary 'operator' : no operator defined which takes a left-hand operand of type 'type' (or there is no acceptable conversion) +> binary 'operator' : no operator defined which takes a left-hand operand of type 'type' (or there is no acceptable conversion) To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md index 41762a92db..32e40394a1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md @@ -8,7 +8,7 @@ ms.assetid: 1a5f9d00-9190-4aa6-bc72-949f68ec136f --- # Compiler Error C2679 -binary 'operator' : no operator found which takes a right-hand operand of type 'type' (or there is no acceptable conversion) +> binary 'operator' : no operator found which takes a right-hand operand of type 'type' (or there is no acceptable conversion) To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md index de9fce157a..625d75eaa8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md @@ -8,7 +8,7 @@ ms.assetid: d6f7129e-dd17-4661-b680-18d6b925b1cc --- # Compiler Error C2680 -'type' : invalid target type for name +> 'type' : invalid target type for name A casting operator tried to convert to a type that is not a pointer or reference. The [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator can be used only for pointers or references. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md index 36739b9507..cb6db3a203 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md @@ -8,7 +8,7 @@ ms.assetid: eb42da6d-8d2c-43fd-986b-e73e2b004885 --- # Compiler Error C2681 -'type' : invalid expression type for name +> 'type' : invalid expression type for name A casting operator tried to convert from an invalid type. For example, if you use the [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator to convert an expression to a pointer type, the source expression must be a pointer. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md index 09a250de79..2da2ecc141 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md @@ -8,7 +8,7 @@ ms.assetid: 30c6a7c4-f5f7-4fe8-81a8-c48938521ab4 --- # Compiler Error C2682 -cannot use casting_operator to convert from 'type1' to 'type2' +> cannot use casting_operator to convert from 'type1' to 'type2' A casting operator tried to convert between incompatible types. For example, you cannot use the [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator to convert a pointer to a reference. The **`dynamic_cast`** operator cannot be used to cast away qualifiers. All qualifiers on the types must match. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md index 27edb0c552..8bd16ce09d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md @@ -8,7 +8,7 @@ ms.assetid: db605e4f-601b-4d05-92a1-c43ca24de08d --- # Compiler Error C2683 -'cast' : 'type' is not a polymorphic type +> 'cast' : 'type' is not a polymorphic type You cannot use [dynamic_cast](../../cpp/dynamic-cast-operator.md) to convert from a non-polymorphic class (a class with no virtual functions). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md index 9284b359bc..8df00339cf 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md @@ -8,7 +8,7 @@ ms.assetid: 1d24b24a-cd0f-41cc-975c-b08dcfb7f402 --- # Compiler Error C2687 -'type' : exception-declaration cannot be 'void' or denote an incomplete type or pointer or reference to an incomplete type +> 'type' : exception-declaration cannot be 'void' or denote an incomplete type or pointer or reference to an incomplete type For a type to be part of an exception declaration, it must be defined and not void. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md index ddad95bbbf..199432503f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md @@ -8,7 +8,7 @@ ms.assetid: 168c9e9d-8f65-4664-af86-db71d3e6ee46 --- # Compiler Error C2688 -'C2::fgrv' : covariant returns with multiple or virtual inheritance not supported for varargs functions +> 'C2::fgrv' : covariant returns with multiple or virtual inheritance not supported for varargs functions Covariant return types are not supported in Visual C++ when a function contains variable arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md index 82ab8e83b9..b26e83ce44 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md @@ -8,7 +8,7 @@ ms.assetid: b5216fba-524d-4194-9168-26e9dc5210ce --- # Compiler Error C2689 -'function' : a friend function cannot be defined within a local class +> 'function' : a friend function cannot be defined within a local class You can declare but not define a friend function in a local class. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md index 8d9cf9f82a..a9cd31387f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md @@ -8,6 +8,6 @@ ms.assetid: f165a806-14bd-4942-99b7-8a9fc7dea227 --- # Compiler Error C2690 -'operator' : cannot perform pointer arithmetic on a managed or WinRT array +> 'operator' : cannot perform pointer arithmetic on a managed or WinRT array Pointer arithmetic is not allowed on a managed or WinRT array. Use array index notation to traverse the array. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md index 9a6d9a67d9..7de70d5b51 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md @@ -8,7 +8,7 @@ ms.assetid: 6925f8f3-ea60-4909-91e6-b781492c645d --- # Compiler Error C2691 -'data type' : a managed or WinRTarray cannot have this element type +> 'data type' : a managed or WinRTarray cannot have this element type The type of a managed or WinRT array element can be a value type or a reference type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md index cfeedd4078..b27e4fd3fb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md @@ -8,6 +8,6 @@ ms.assetid: 02ade3b4-b757-448b-b065-d7d71bc3f441 --- # Compiler Error C2692 -'function_name' : fully prototyped functions required in C compiler with the '/clr' option +> 'function_name' : fully prototyped functions required in C compiler with the '/clr' option When compiling for .NET managed code, the C compiler requires ANSI function declarations. In addition, if a function takes no parameters, it must explicitly declare **`void`** as the parameter type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md index d26adbe71c..181a17a9a9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md @@ -8,6 +8,6 @@ ms.assetid: b7364ca8-b6be-48c0-97d6-6029787fb171 --- # Compiler Error C2693 -'operator' : illegal comparison for references to a managed or WinRT array +> 'operator' : illegal comparison for references to a managed or WinRT array You cannot test a managed or WinRT array for any kind of inequality. For example, you can test to see if managed arrays are equal but you cannot test to see if one array is greater or less than another array. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md index c093639deb..f739bea83e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md @@ -8,7 +8,7 @@ ms.assetid: 8dc2cec2-67ae-4e16-8c0c-374425aca8bc --- # Compiler Error C2694 -'override': overriding virtual function has less restrictive exception specification than base class virtual member function 'base' +> 'override': overriding virtual function has less restrictive exception specification than base class virtual member function 'base' A virtual function was overridden, but under [/Za](../../build/reference/za-ze-disable-language-extensions.md), the overriding function had a less restrictive [exception specification](../../cpp/exception-specifications-throw-cpp.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md index 5b24ca30b5..2184a0f6db 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md @@ -8,7 +8,7 @@ ms.assetid: 3f6f2091-c38b-40ea-ab6c-f1846f5702d7 --- # Compiler Error C2695 -'function1': overriding virtual function differs from 'function2' only by calling convention +> 'function1': overriding virtual function differs from 'function2' only by calling convention The signature of a function in a derived class cannot override a function in a base class and change the calling convention. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md index 4939dc9978..eb8f96f9c7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md @@ -8,7 +8,7 @@ ms.assetid: 6c6eb7df-1230-4346-9a73-abf14c20785d --- # Compiler Error C2696 -Cannot create a temporary object of a managed type 'type' +> Cannot create a temporary object of a managed type 'type' References to **`const`** in an unmanaged program cause the compiler to call the constructor and create a temporary object on the stack. However, a managed class can never be created on the stack. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md index efdb26599f..d03fd78e18 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md @@ -8,7 +8,7 @@ ms.assetid: 3ebfe395-c20b-4c56-9980-ca9ed8653382 --- # Compiler Error C2698 -the using-declaration for 'declaration 1' cannot co-exist with the existing using-declaration for 'declaration 2' +> the using-declaration for 'declaration 1' cannot co-exist with the existing using-declaration for 'declaration 2' Once you have a [using declaration](../../cpp/using-declaration.md) for a data member, any using declaration in the same scope that uses the same name is not permitted, as only functions can be overloaded. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md index d843b7d0d8..66d4ca729c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md @@ -8,6 +8,6 @@ ms.assetid: a231eb86-bdae-4b37-a606-06854f47929f --- # Compiler Error C2700 -'identifier' : cannot be thrown (use /W4 for more info) +> 'identifier' : cannot be thrown (use /W4 for more info) The object cannot be thrown. Compile with [/W4](../../build/reference/compiler-option-warning-level.md) for more diagnostic information. From 22a615cc1afd05815804528772a17e18c5b21d6d Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 4 Aug 2025 23:16:36 +0800 Subject: [PATCH 942/981] Add "Remarks" and "Example" headings for error references in range [C2671, C2700] --- docs/error-messages/compiler-errors-2/compiler-error-c2671.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2672.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2673.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2674.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2675.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2677.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2678.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2679.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2680.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2681.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2682.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2683.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2687.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2688.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2689.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2690.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2691.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2692.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2693.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2694.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2695.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2696.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2698.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2700.md | 2 ++ 24 files changed, 78 insertions(+) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md index 7792c1feda..d133fc8654 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md @@ -10,8 +10,12 @@ ms.assetid: fc0ee40f-c8f3-408f-b89d-745d149c4169 > 'function' : static member functions do not have 'this' pointers +## Remarks + A **`static`** member function tried to access **`this`**. +## Example + The following sample generates C2671: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2672.md b/docs/error-messages/compiler-errors-2/compiler-error-c2672.md index a43ddf67cc..d88fc22d35 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2672.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2672.md @@ -10,6 +10,8 @@ ms.assetid: 7e86338a-2d4b-40fe-9dd2-ac6886f3f31a > '*function*': no matching overloaded function found +## Remarks + The compiler could not find an overloaded function that matches the specified function. No function was found that takes matching parameters, or no matching function has the required accessibility in context. When used by certain standard library containers or algorithms, your types must provide accessible members or friend functions that satisfy the requirements of the container or algorithm. For example, your iterator types should derive from `std::iterator<>`. Comparison operations or use of other operators on container element types may require the type be considered as both a left-hand and a right-hand operand. Use of the type as a right-hand operand can require implementation of the operator as a non-member function of the type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md index 762c381043..50a6c762e7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md @@ -10,8 +10,12 @@ ms.assetid: 780230c0-619b-4a78-b01d-ff5886306741 > 'function' : global functions do not have 'this' pointers +## Remarks + A global function tried to access **`this`**. +## Example + The following sample generates C2673: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md index 16263cd27c..8d32ee39a9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md @@ -10,6 +10,8 @@ ms.assetid: 7cbd70d8-d992-44d7-a5cb-dd8cf9c759d2 > a generic declaration is not allowed in this context +## Remarks + A generic was declared incorrectly. For more information, see [Generics](../../extensions/generics-cpp-component-extensions.md). ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md index e256c1589b..34b5400c1d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md @@ -10,6 +10,8 @@ ms.assetid: 4b92a12b-bff8-4dd5-a109-620065fc146c > unary 'operator' : 'type' does not define this operator or a conversion to a type acceptable to the predefined operator +## Remarks + C2675 can also occur when using a unary operator, and the type does not define the operator or a conversion to a type acceptable to the predefined operator. To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md index 8c14e1730e..7bc9e69b04 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md @@ -10,8 +10,12 @@ ms.assetid: 76bc0b65-f52a-45a6-b6d6-0555f89da9a8 > binary 'operator' : no global operator found which takes type 'type' (or there is no acceptable conversion) +## Remarks + To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. +## Example + The following sample generates C2677: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md index 9febb975b8..de4186fb50 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md @@ -10,6 +10,8 @@ ms.assetid: 1f0a4e26-b429-44f5-9f94-cb66441220c8 > binary 'operator' : no operator defined which takes a left-hand operand of type 'type' (or there is no acceptable conversion) +## Remarks + To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. C2678 can occur when the left-hand operand is const-qualified but the operator is defined to take a non-const argument. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md index 32e40394a1..ffbe2780e1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md @@ -10,8 +10,12 @@ ms.assetid: 1a5f9d00-9190-4aa6-bc72-949f68ec136f > binary 'operator' : no operator found which takes a right-hand operand of type 'type' (or there is no acceptable conversion) +## Remarks + To use the operator, you must overload it for the specified type or define a conversion to a type for which the operator is defined. +## Example + The following sample generates C2679: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md index 625d75eaa8..98c2bb56a5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md @@ -10,8 +10,12 @@ ms.assetid: d6f7129e-dd17-4661-b680-18d6b925b1cc > 'type' : invalid target type for name +## Remarks + A casting operator tried to convert to a type that is not a pointer or reference. The [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator can be used only for pointers or references. +## Examples + The following sample generates C2680: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md index cb6db3a203..d2926a448a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md @@ -10,8 +10,12 @@ ms.assetid: eb42da6d-8d2c-43fd-986b-e73e2b004885 > 'type' : invalid expression type for name +## Remarks + A casting operator tried to convert from an invalid type. For example, if you use the [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator to convert an expression to a pointer type, the source expression must be a pointer. +## Example + The following sample generates C2681: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md index 2da2ecc141..81712cc6b1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md @@ -10,10 +10,14 @@ ms.assetid: 30c6a7c4-f5f7-4fe8-81a8-c48938521ab4 > cannot use casting_operator to convert from 'type1' to 'type2' +## Remarks + A casting operator tried to convert between incompatible types. For example, you cannot use the [dynamic_cast](../../cpp/dynamic-cast-operator.md) operator to convert a pointer to a reference. The **`dynamic_cast`** operator cannot be used to cast away qualifiers. All qualifiers on the types must match. You can use the **`const_cast`** operator to remove attributes such as **`const`**, **`volatile`**, or **`__unaligned`**. +## Examples + The following sample generates C2682: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md index 8bd16ce09d..27143e499b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md @@ -10,10 +10,14 @@ ms.assetid: db605e4f-601b-4d05-92a1-c43ca24de08d > 'cast' : 'type' is not a polymorphic type +## Remarks + You cannot use [dynamic_cast](../../cpp/dynamic-cast-operator.md) to convert from a non-polymorphic class (a class with no virtual functions). You can use [static_cast](../../cpp/static-cast-operator.md) to perform conversions of non-polymorphic types. However, **`static_cast`** does not perform a run-time check. +## Example + The following sample generates C2683: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md index 8df00339cf..be27a741e9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md @@ -10,8 +10,12 @@ ms.assetid: 1d24b24a-cd0f-41cc-975c-b08dcfb7f402 > 'type' : exception-declaration cannot be 'void' or denote an incomplete type or pointer or reference to an incomplete type +## Remarks + For a type to be part of an exception declaration, it must be defined and not void. +## Example + The following sample generates C2687: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md index 199432503f..cd78550485 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md @@ -10,10 +10,14 @@ ms.assetid: 168c9e9d-8f65-4664-af86-db71d3e6ee46 > 'C2::fgrv' : covariant returns with multiple or virtual inheritance not supported for varargs functions +## Remarks + Covariant return types are not supported in Visual C++ when a function contains variable arguments. To resolve this error, either define your functions so that they do not use variable arguments or make the return values the same for all virtual functions. +## Example + The following sample generates C2688: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md index b26e83ce44..dbe836241b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md @@ -10,8 +10,12 @@ ms.assetid: b5216fba-524d-4194-9168-26e9dc5210ce > 'function' : a friend function cannot be defined within a local class +## Remarks + You can declare but not define a friend function in a local class. +## Example + The following sample generates C2689: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md index a9cd31387f..636019fb18 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md @@ -10,4 +10,6 @@ ms.assetid: f165a806-14bd-4942-99b7-8a9fc7dea227 > 'operator' : cannot perform pointer arithmetic on a managed or WinRT array +## Remarks + Pointer arithmetic is not allowed on a managed or WinRT array. Use array index notation to traverse the array. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md index 7de70d5b51..b207f9a996 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md @@ -10,8 +10,12 @@ ms.assetid: 6925f8f3-ea60-4909-91e6-b781492c645d > 'data type' : a managed or WinRTarray cannot have this element type +## Remarks + The type of a managed or WinRT array element can be a value type or a reference type. +## Example + The following sample generates C2691: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md index b27e4fd3fb..480cf0de7b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md @@ -10,4 +10,6 @@ ms.assetid: 02ade3b4-b757-448b-b065-d7d71bc3f441 > 'function_name' : fully prototyped functions required in C compiler with the '/clr' option +## Remarks + When compiling for .NET managed code, the C compiler requires ANSI function declarations. In addition, if a function takes no parameters, it must explicitly declare **`void`** as the parameter type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md index 181a17a9a9..2cb222390c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md @@ -10,4 +10,6 @@ ms.assetid: b7364ca8-b6be-48c0-97d6-6029787fb171 > 'operator' : illegal comparison for references to a managed or WinRT array +## Remarks + You cannot test a managed or WinRT array for any kind of inequality. For example, you can test to see if managed arrays are equal but you cannot test to see if one array is greater or less than another array. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md index f739bea83e..0486e75ae9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md @@ -10,8 +10,12 @@ ms.assetid: 8dc2cec2-67ae-4e16-8c0c-374425aca8bc > 'override': overriding virtual function has less restrictive exception specification than base class virtual member function 'base' +## Remarks + A virtual function was overridden, but under [/Za](../../build/reference/za-ze-disable-language-extensions.md), the overriding function had a less restrictive [exception specification](../../cpp/exception-specifications-throw-cpp.md). +## Example + The following sample generates C2694: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md index 2184a0f6db..80d124f911 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md @@ -10,8 +10,12 @@ ms.assetid: 3f6f2091-c38b-40ea-ab6c-f1846f5702d7 > 'function1': overriding virtual function differs from 'function2' only by calling convention +## Remarks + The signature of a function in a derived class cannot override a function in a base class and change the calling convention. +## Example + The following sample generates C2695: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md index eb8f96f9c7..921c2aa9bf 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md @@ -10,6 +10,8 @@ ms.assetid: 6c6eb7df-1230-4346-9a73-abf14c20785d > Cannot create a temporary object of a managed type 'type' +## Remarks + References to **`const`** in an unmanaged program cause the compiler to call the constructor and create a temporary object on the stack. However, a managed class can never be created on the stack. C2696 is only reachable using the obsolete compiler option **/clr:oldSyntax**. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md index d03fd78e18..aa56f166aa 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md @@ -10,8 +10,12 @@ ms.assetid: 3ebfe395-c20b-4c56-9980-ca9ed8653382 > the using-declaration for 'declaration 1' cannot co-exist with the existing using-declaration for 'declaration 2' +## Remarks + Once you have a [using declaration](../../cpp/using-declaration.md) for a data member, any using declaration in the same scope that uses the same name is not permitted, as only functions can be overloaded. +## Example + The following sample generates C2698: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md index 66d4ca729c..b1a400565d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md @@ -10,4 +10,6 @@ ms.assetid: a231eb86-bdae-4b37-a606-06854f47929f > 'identifier' : cannot be thrown (use /W4 for more info) +## Remarks + The object cannot be thrown. Compile with [/W4](../../build/reference/compiler-option-warning-level.md) for more diagnostic information. From 02fdfa6c14933cbf6ced249e93ca135c3cc33ef2 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 4 Aug 2025 23:18:19 +0800 Subject: [PATCH 943/981] Replace term "sample" with "example" for error references in range [C2671, C2700] --- docs/error-messages/compiler-errors-2/compiler-error-c2671.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2673.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2674.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2675.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2676.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2677.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2678.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2679.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2680.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2681.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2682.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2683.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2687.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2688.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2689.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2691.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2694.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2695.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2698.md | 2 +- 19 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md index d133fc8654..8195a90329 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md @@ -16,7 +16,7 @@ A **`static`** member function tried to access **`this`**. ## Example -The following sample generates C2671: +The following example generates C2671: ```cpp // C2671.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md index 50a6c762e7..4fb9ca3aac 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md @@ -16,7 +16,7 @@ A global function tried to access **`this`**. ## Example -The following sample generates C2673: +The following example generates C2673: ```cpp // C2673.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md index 8d32ee39a9..f89a9e7d94 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md @@ -16,7 +16,7 @@ A generic was declared incorrectly. For more information, see [Generics](../../e ## Example -The following sample generates C2674. +The following example generates C2674. ```cpp // C2674.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md index 34b5400c1d..05d53f12ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md @@ -16,7 +16,7 @@ C2675 can also occur when using a unary operator, and the type does not define t ## Example -The following sample generates C2675. +The following example generates C2675. ```cpp // C2675.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2676.md b/docs/error-messages/compiler-errors-2/compiler-error-c2676.md index c2368b92a6..a4d5256bf6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2676.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2676.md @@ -16,7 +16,7 @@ To use the operator, you must overload it for the specified type or define a con ## Examples -The following sample generates C2676. +The following example generates C2676. ```cpp // C2676.cpp @@ -50,7 +50,7 @@ C2676 can also occur if you attempt to do pointer arithmetic on the **`this`** p The **`this`** pointer is of type handle in a reference type. For more information, see [Semantics of the `this` pointer](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Semantics_of_the_this_pointer). -The following sample generates C2676. +The following example generates C2676. ```cpp // C2676_a.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md index 7bc9e69b04..bc94ad8fee 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md @@ -16,7 +16,7 @@ To use the operator, you must overload it for the specified type or define a con ## Example -The following sample generates C2677: +The following example generates C2677: ```cpp // C2677.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md index de4186fb50..b9675c6db0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md @@ -18,7 +18,7 @@ C2678 can occur when the left-hand operand is const-qualified but the operator i ## Examples -The following sample generates C2678 and shows how to fix it: +The following example generates C2678 and shows how to fix it: ```cpp // C2678a.cpp @@ -44,7 +44,7 @@ int main() { C2678 can also occur if you do not pin a native member before calling a member function on it. -The following sample generates C2678 and shows how to fix it. +The following example generates C2678 and shows how to fix it. ```cpp // C2678.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md index ffbe2780e1..5dea528d0b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md @@ -16,7 +16,7 @@ To use the operator, you must overload it for the specified type or define a con ## Example -The following sample generates C2679: +The following example generates C2679: ```cpp // C2679.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md index 98c2bb56a5..cc925a38fb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md @@ -16,7 +16,7 @@ A casting operator tried to convert to a type that is not a pointer or reference ## Examples -The following sample generates C2680: +The following example generates C2680: ```cpp // C2680.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md index d2926a448a..1be75b3147 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md @@ -16,7 +16,7 @@ A casting operator tried to convert from an invalid type. For example, if you us ## Example -The following sample generates C2681: +The following example generates C2681: ```cpp // C2681.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md index 81712cc6b1..00375c03ca 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md @@ -18,7 +18,7 @@ You can use the **`const_cast`** operator to remove attributes such as **`const` ## Examples -The following sample generates C2682: +The following example generates C2682: ```cpp // C2682.cpp @@ -30,7 +30,7 @@ void g(A* pa) { } ``` -The following sample generates C2682: +The following example generates C2682: ```cpp // C2682b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md index 27143e499b..46677faca1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md @@ -18,7 +18,7 @@ You can use [static_cast](../../cpp/static-cast-operator.md) to perform conversi ## Example -The following sample generates C2683: +The following example generates C2683: ```cpp // C2683.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md index be27a741e9..cc47a106ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md @@ -16,7 +16,7 @@ For a type to be part of an exception declaration, it must be defined and not vo ## Example -The following sample generates C2687: +The following example generates C2687: ```cpp // C2687.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md index cd78550485..56140fe8e0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md @@ -18,7 +18,7 @@ To resolve this error, either define your functions so that they do not use vari ## Example -The following sample generates C2688: +The following example generates C2688: ```cpp // C2688.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md index dbe836241b..f44a9aa8f0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md @@ -16,7 +16,7 @@ You can declare but not define a friend function in a local class. ## Example -The following sample generates C2689: +The following example generates C2689: ```cpp // C2689.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md index b207f9a996..3617dad801 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md @@ -16,7 +16,7 @@ The type of a managed or WinRT array element can be a value type or a reference ## Example -The following sample generates C2691: +The following example generates C2691: ```cpp // C2691a.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md index 0486e75ae9..1b2d626c7b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md @@ -16,7 +16,7 @@ A virtual function was overridden, but under [/Za](../../build/reference/za-ze-d ## Example -The following sample generates C2694: +The following example generates C2694: ```cpp // C2694.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md index 80d124f911..d1d785f68d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md @@ -16,7 +16,7 @@ The signature of a function in a derived class cannot override a function in a b ## Example -The following sample generates C2695: +The following example generates C2695: ```cpp // C2695.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md index aa56f166aa..478d4e26f5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md @@ -16,7 +16,7 @@ Once you have a [using declaration](../../cpp/using-declaration.md) for a data m ## Example -The following sample generates C2698: +The following example generates C2698: ```cpp // C2698.cpp From d94c130240155c45c337e713bb4ead0b32439ce2 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Mon, 4 Aug 2025 23:22:51 +0800 Subject: [PATCH 944/981] Update metadata for error references in range [C2671, C2700] --- .../error-messages/compiler-errors-2/compiler-error-c2671.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2672.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2673.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2674.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2675.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2676.md | 3 +-- .../error-messages/compiler-errors-2/compiler-error-c2677.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2678.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2679.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2680.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2681.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2682.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2683.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2687.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2688.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2689.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2690.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2691.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2692.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2693.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2694.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2695.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2696.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2698.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2700.md | 5 ++--- 25 files changed, 49 insertions(+), 74 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md index 8195a90329..fd2c623dd4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2671.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2671.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2671" title: "Compiler Error C2671" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2671" +ms.date: 11/04/2016 f1_keywords: ["C2671"] helpviewer_keywords: ["C2671"] -ms.assetid: fc0ee40f-c8f3-408f-b89d-745d149c4169 --- # Compiler Error C2671 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2672.md b/docs/error-messages/compiler-errors-2/compiler-error-c2672.md index d88fc22d35..8af88f3464 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2672.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2672.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2672" title: "Compiler Error C2672" -ms.date: "10/24/2017" +description: "Learn more about: Compiler Error C2672" +ms.date: 10/24/2017 f1_keywords: ["C2672"] helpviewer_keywords: ["C2672"] -ms.assetid: 7e86338a-2d4b-40fe-9dd2-ac6886f3f31a --- # Compiler Error C2672 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md index 4fb9ca3aac..bd53c6d983 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2673.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2673.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2673" title: "Compiler Error C2673" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2673" +ms.date: 11/04/2016 f1_keywords: ["C2673"] helpviewer_keywords: ["C2673"] -ms.assetid: 780230c0-619b-4a78-b01d-ff5886306741 --- # Compiler Error C2673 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md index f89a9e7d94..25f5455582 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2674.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2674.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2674" title: "Compiler Error C2674" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2674" +ms.date: 11/04/2016 f1_keywords: ["C2674"] helpviewer_keywords: ["C2674"] -ms.assetid: 7cbd70d8-d992-44d7-a5cb-dd8cf9c759d2 --- # Compiler Error C2674 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md index 05d53f12ce..44d681044b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2675.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2675.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2675" title: "Compiler Error C2675" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2675" +ms.date: 11/04/2016 f1_keywords: ["C2675"] helpviewer_keywords: ["C2675"] -ms.assetid: 4b92a12b-bff8-4dd5-a109-620065fc146c --- # Compiler Error C2675 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2676.md b/docs/error-messages/compiler-errors-2/compiler-error-c2676.md index a4d5256bf6..f12d12d14d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2676.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2676.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2676" title: "Compiler Error C2676" +description: "Learn more about: Compiler Error C2676" ms.date: 06/03/2022 f1_keywords: ["C2676"] helpviewer_keywords: ["C2676"] -ms.assetid: 838a5e34-c92f-4f65-a597-e150bf8cf737 --- # Compiler Error C2676 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md index bc94ad8fee..665726d4c0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2677.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2677.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2677" title: "Compiler Error C2677" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2677" +ms.date: 11/04/2016 f1_keywords: ["C2677"] helpviewer_keywords: ["C2677"] -ms.assetid: 76bc0b65-f52a-45a6-b6d6-0555f89da9a8 --- # Compiler Error C2677 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md index b9675c6db0..6719229f6e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2678.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2678.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2678" title: "Compiler Error C2678" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2678" +ms.date: 11/04/2016 f1_keywords: ["C2678"] helpviewer_keywords: ["C2678"] -ms.assetid: 1f0a4e26-b429-44f5-9f94-cb66441220c8 --- # Compiler Error C2678 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md index 5dea528d0b..88f7498add 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2679.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2679.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2679" title: "Compiler Error C2679" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2679" +ms.date: 11/04/2016 f1_keywords: ["C2679"] helpviewer_keywords: ["C2679"] -ms.assetid: 1a5f9d00-9190-4aa6-bc72-949f68ec136f --- # Compiler Error C2679 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md index cc925a38fb..29a2effd88 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2680.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2680.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2680" title: "Compiler Error C2680" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2680" +ms.date: 11/04/2016 f1_keywords: ["C2680"] helpviewer_keywords: ["C2680"] -ms.assetid: d6f7129e-dd17-4661-b680-18d6b925b1cc --- # Compiler Error C2680 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md index 1be75b3147..8920a1c75f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2681.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2681.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2681" title: "Compiler Error C2681" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2681" +ms.date: 11/04/2016 f1_keywords: ["C2681"] helpviewer_keywords: ["C2681"] -ms.assetid: eb42da6d-8d2c-43fd-986b-e73e2b004885 --- # Compiler Error C2681 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md index 00375c03ca..6dbf392b6f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2682.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2682.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2682" title: "Compiler Error C2682" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2682" +ms.date: 11/04/2016 f1_keywords: ["C2682"] helpviewer_keywords: ["C2682"] -ms.assetid: 30c6a7c4-f5f7-4fe8-81a8-c48938521ab4 --- # Compiler Error C2682 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md index 46677faca1..a2b7b04276 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2683.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2683.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2683" title: "Compiler Error C2683" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2683" +ms.date: 11/04/2016 f1_keywords: ["C2683"] helpviewer_keywords: ["C2683"] -ms.assetid: db605e4f-601b-4d05-92a1-c43ca24de08d --- # Compiler Error C2683 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md index cc47a106ce..d61bb9d910 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2687.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2687.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2687" title: "Compiler Error C2687" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2687" +ms.date: 11/04/2016 f1_keywords: ["C2687"] helpviewer_keywords: ["C2687"] -ms.assetid: 1d24b24a-cd0f-41cc-975c-b08dcfb7f402 --- # Compiler Error C2687 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md index 56140fe8e0..438291e981 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2688.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2688.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2688" title: "Compiler Error C2688" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2688" +ms.date: 11/04/2016 f1_keywords: ["C2688"] helpviewer_keywords: ["C2688"] -ms.assetid: 168c9e9d-8f65-4664-af86-db71d3e6ee46 --- # Compiler Error C2688 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md index f44a9aa8f0..0fb3674eb2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2689.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2689.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2689" title: "Compiler Error C2689" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2689" +ms.date: 11/04/2016 f1_keywords: ["C2689"] helpviewer_keywords: ["C2689"] -ms.assetid: b5216fba-524d-4194-9168-26e9dc5210ce --- # Compiler Error C2689 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md index 636019fb18..9885b8a0b1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2690.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2690.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2690" title: "Compiler Error C2690" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2690" +ms.date: 11/04/2016 f1_keywords: ["C2690"] helpviewer_keywords: ["C2690"] -ms.assetid: f165a806-14bd-4942-99b7-8a9fc7dea227 --- # Compiler Error C2690 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md index 3617dad801..b2ff8c3044 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2691.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2691.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2691" title: "Compiler Error C2691" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2691" +ms.date: 11/04/2016 f1_keywords: ["C2691"] helpviewer_keywords: ["C2691"] -ms.assetid: 6925f8f3-ea60-4909-91e6-b781492c645d --- # Compiler Error C2691 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md index 480cf0de7b..a415df2551 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2692.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2692.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2692" title: "Compiler Error C2692" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2692" +ms.date: 11/04/2016 f1_keywords: ["C2692"] helpviewer_keywords: ["C2692"] -ms.assetid: 02ade3b4-b757-448b-b065-d7d71bc3f441 --- # Compiler Error C2692 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md index 2cb222390c..3cbf3814c9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2693.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2693.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2693" title: "Compiler Error C2693" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2693" +ms.date: 11/04/2016 f1_keywords: ["C2693"] helpviewer_keywords: ["C2693"] -ms.assetid: b7364ca8-b6be-48c0-97d6-6029787fb171 --- # Compiler Error C2693 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md index 1b2d626c7b..3b33248c16 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2694.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2694.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2694" title: "Compiler Error C2694" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2694" +ms.date: 11/04/2016 f1_keywords: ["C2694"] helpviewer_keywords: ["C2694"] -ms.assetid: 8dc2cec2-67ae-4e16-8c0c-374425aca8bc --- # Compiler Error C2694 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md index d1d785f68d..4e2b58d981 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2695.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2695.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2695" title: "Compiler Error C2695" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2695" +ms.date: 11/04/2016 f1_keywords: ["C2695"] helpviewer_keywords: ["C2695"] -ms.assetid: 3f6f2091-c38b-40ea-ab6c-f1846f5702d7 --- # Compiler Error C2695 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md index 921c2aa9bf..27d130d222 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2696.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2696.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2696" title: "Compiler Error C2696" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2696" +ms.date: 11/04/2016 f1_keywords: ["C2696"] helpviewer_keywords: ["C2696"] -ms.assetid: 6c6eb7df-1230-4346-9a73-abf14c20785d --- # Compiler Error C2696 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md index 478d4e26f5..464373f145 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2698.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2698.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2698" title: "Compiler Error C2698" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2698" +ms.date: 11/04/2016 f1_keywords: ["C2698"] helpviewer_keywords: ["C2698"] -ms.assetid: 3ebfe395-c20b-4c56-9980-ca9ed8653382 --- # Compiler Error C2698 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md index b1a400565d..9032db0796 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2700.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2700.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2700" title: "Compiler Error C2700" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2700" +ms.date: 11/04/2016 f1_keywords: ["C2700"] helpviewer_keywords: ["C2700"] -ms.assetid: a231eb86-bdae-4b37-a606-06854f47929f --- # Compiler Error C2700 From 8e1983e9de9c2a819d18442a48b53a60d04815a4 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 5 Aug 2025 22:50:27 +0800 Subject: [PATCH 945/981] Add blockquotes for error messages in range [C2701, C2730] --- docs/error-messages/compiler-errors-2/compiler-error-c2704.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2707.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2708.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2709.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2710.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2711.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2715.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2718.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2719.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2721.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2722.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2723.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2724.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2725.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2726.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2728.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2730.md | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md index 476dd46228..7205c45ac0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md @@ -8,6 +8,6 @@ ms.assetid: 185797e2-55b5-4c11-8493-e70eb1d15a94 --- # Compiler Error C2704 -'identifier' : __va_start intrinsic only allowed in varargs +> 'identifier' : __va_start intrinsic only allowed in varargs The `__va_start` intrinsic is used in a declaration for a function with a fixed number of arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md index ff081cdf34..3ed6aa213b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md @@ -8,7 +8,7 @@ ms.assetid: 3deaf45c-74da-4c9d-acc6-b82412720b74 --- # Compiler Error C2707 -'identifier' : bad context for intrinsic function +> 'identifier' : bad context for intrinsic function Structured exception-handling intrinsics are invalid in certain contexts: diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md index 72031e762a..5a2c8b82c6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md @@ -8,7 +8,7 @@ ms.assetid: d52d3088-1141-42f4-829c-74755a7fcc3a --- # Compiler Error C2708 -'identifier' : actual parameters length in bytes differs from previous call or reference +> 'identifier' : actual parameters length in bytes differs from previous call or reference A [__stdcall](../../cpp/stdcall.md) function must be preceded by a prototype. Otherwise, the compiler interprets the first call to the function as a prototype and this error occurs when the compiler encounters a call that does not match. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md index 8412aaff02..d06b72efe2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md @@ -8,6 +8,6 @@ ms.assetid: e66fc7e6-0e91-4b99-a6e0-fdb069b09fbc --- # Compiler Error C2709 -'identifier' : formal parameter's length in bytes differs from previous declaration +> 'identifier' : formal parameter's length in bytes differs from previous declaration The signature in a call to the specified function differs from the prototype. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md index 5b2ddea861..c40d0161df 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md @@ -8,7 +8,7 @@ ms.assetid: a2a6bb5b-86ad-4a6c-acd0-e2bef8464e0e --- # Compiler Error C2710 -'construct' : '__declspec(modifier)' can only be applied to a function returning a pointer +> 'construct' : '__declspec(modifier)' can only be applied to a function returning a pointer A function whose return value is a pointer is the only construct to which `modifier` can be applied. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md index 137e67e933..d3e889d0ef 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md @@ -8,7 +8,7 @@ ms.assetid: 9df9f808-7419-4e63-abdd-e6538ff0871f --- # Compiler Error C2711 -'function' : this function cannot be compiled as managed, consider using #pragma unmanaged +> 'function' : this function cannot be compiled as managed, consider using #pragma unmanaged Some instructions will prevent the compiler from generating MSIL for the enclosing function. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md index 1321f85ca9..c4f985c864 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md @@ -8,7 +8,7 @@ ms.assetid: c81567a7-5b65-468f-aaf9-835f91e468e4 --- # Compiler Error C2715 -'type' : cannot throw or catch this type +> 'type' : cannot throw or catch this type Value types are not valid arguments when using exception handling in managed code (see [Exception Handling](../../extensions/exception-handling-cpp-component-extensions.md) for more information). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md index 6b67c1f933..f483336182 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md @@ -8,7 +8,7 @@ ms.assetid: 78cc71f8-c142-46fc-9aed-970635d74f0c --- # Compiler Error C2718 -'parameter': actual parameter with __declspec(align('#')) won't be aligned +> 'parameter': actual parameter with __declspec(align('#')) won't be aligned The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md index 3b367a25ba..6954b6bd4e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md @@ -8,7 +8,7 @@ ms.assetid: ea6236d3-8286-45cc-9478-c84ad3dd3c8e --- # Compiler Error C2719 -'parameter': formal parameter with __declspec(align('#')) won't be aligned +> 'parameter': formal parameter with __declspec(align('#')) won't be aligned The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters. Function parameter alignment is controlled by the calling convention used. For more information, see [Calling Conventions](../../cpp/calling-conventions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md index 0bafc693b2..55ddccc19b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md @@ -8,6 +8,6 @@ ms.assetid: 7a97823c-3ce1-4112-8253-fc1448685235 --- # Compiler Error C2721 -'specifier' : storage-class specifier illegal between operator keyword and type +> 'specifier' : storage-class specifier illegal between operator keyword and type User-defined type conversions apply to all storage classes, so you cannot specify a storage class in a type conversion. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md index 0240cca6d4..817b3296f4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md @@ -8,6 +8,6 @@ ms.assetid: 4cc2c7fa-cb12-4bcf-9df1-6d627ef62973 --- # Compiler Error C2722 -'::operator' : illegal following operator command; use 'operator operator' +> '::operator' : illegal following operator command; use 'operator operator' An `operator` statement redefines `::new` or `::delete`. The `new` and `delete` operators are global, so the scope resolution operator (`::`) is meaningless. Remove the `::` operator. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md index 48dad9d850..348cfbc15c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md @@ -8,7 +8,7 @@ ms.assetid: 86925601-2297-4cfd-94e2-2caf27c474c4 --- # Compiler Error C2723 -'function' : 'specifier' specifier illegal on function definition +> 'function' : 'specifier' specifier illegal on function definition The specifier cannot appear with a function definition outside of a class declaration. The **`virtual`** specifier can be specified only on a member function declaration within a class declaration. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md index 8860220e66..7fe9c7fc72 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2724"] --- # Compiler Error C2724 -'identifier' : 'static' should not be used on member functions defined at file scope +> 'identifier' : 'static' should not be used on member functions defined at file scope Static member functions should be declared with external linkage. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md index b362cad13e..695283a829 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md @@ -8,7 +8,7 @@ ms.assetid: 13cd5b1b-e906-4cd8-9b2b-510d587c665a --- # Compiler Error C2725 -'exception' : unable to throw or catch a managed or WinRT object by value or reference +> 'exception' : unable to throw or catch a managed or WinRT object by value or reference The type of a managed or WinRT exception was not correct. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md index 1cf7c3f939..634d19c64d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md @@ -8,7 +8,7 @@ ms.assetid: f0191bb7-c175-450b-bf09-a3213db96d09 --- # Compiler Error C2726 -'gcnew' may only be used to create an object with managed or WinRT type +> 'gcnew' may only be used to create an object with managed or WinRT type You cannot create an instance of a native type on the garbage-collected heap. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md index 79660264d0..ea61c2b994 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md @@ -8,7 +8,7 @@ ms.assetid: 65635f91-1cd1-46e4-9ad7-14726d0546af --- # Compiler Error C2728 -'type' : a native array cannot contain this type +> 'type' : a native array cannot contain this type Array creation syntax was used to create an array of managed or WinRT objects. You cannot create an array of managed or WinRT objects using native array syntax. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md index b7a014e42c..38563bc9ea 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md @@ -8,6 +8,6 @@ ms.assetid: 07f0b17a-bc8e-4d79-af5a-07a07af3687b --- # Compiler Error C2730 -'class' : cannot be a base class of itself +> 'class' : cannot be a base class of itself Recursive base classes are invalid. Specify another class as the base class. From b0a2b5c3fa5a1717871d9e6d193f52cae20b99d0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 5 Aug 2025 22:56:33 +0800 Subject: [PATCH 946/981] Add "Remarks" and "Example" headings for error references in range [C2701, C2730] --- docs/error-messages/compiler-errors-2/compiler-error-c2701.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2702.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2704.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2706.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2707.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2708.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2709.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2710.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2711.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2713.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2714.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2715.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2718.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2719.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2720.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2721.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2722.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2723.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2724.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2725.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2726.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2728.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2730.md | 2 ++ 23 files changed, 70 insertions(+), 2 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md index 7db2a0789f..b887f887dd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md @@ -10,8 +10,12 @@ ms.assetid: 31cf2ab7-ced9-4f75-aa51-e169e20407fb > 'function': a function template cannot be a `friend` of a local class +## Remarks + A local class can't have a function template as a `friend` function. +## Example + The following sample generates C2701: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md index 8ab3ce78de..d391cb4cec 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md @@ -10,8 +10,12 @@ ms.assetid: 6def15d4-9a8d-43e7-ae35-42d7cb57c27e > `__except` may not appear in termination block +## Remarks + An exception handler (**`__try`**/**`__except`**) cannot be nested inside a **`__finally`** block. +## Example + The following sample generates C2702: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md index 7205c45ac0..eaac6df6c7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md @@ -10,4 +10,6 @@ ms.assetid: 185797e2-55b5-4c11-8493-e70eb1d15a94 > 'identifier' : __va_start intrinsic only allowed in varargs +## Remarks + The `__va_start` intrinsic is used in a declaration for a function with a fixed number of arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md index c21375885e..c602b969a4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md @@ -10,8 +10,12 @@ ms.assetid: e18da924-c42d-4b09-8e29-f4e0382d7dc6 > illegal `__except` without matching `__try` (missing '}' in `__try` block?) +## Remarks + The compiler did not find a closing brace for a **`__try`** block. +## Example + The following sample generates C2706: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md index 3ed6aa213b..ac228a5eff 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md @@ -10,6 +10,8 @@ ms.assetid: 3deaf45c-74da-4c9d-acc6-b82412720b74 > 'identifier' : bad context for intrinsic function +## Remarks + Structured exception-handling intrinsics are invalid in certain contexts: - `_exception_code()` outside an exception filter or **`__except`** block diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md index 5a2c8b82c6..9b6bc30afe 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md @@ -10,6 +10,8 @@ ms.assetid: d52d3088-1141-42f4-829c-74755a7fcc3a > 'identifier' : actual parameters length in bytes differs from previous call or reference +## Remarks + A [__stdcall](../../cpp/stdcall.md) function must be preceded by a prototype. Otherwise, the compiler interprets the first call to the function as a prototype and this error occurs when the compiler encounters a call that does not match. To fix this error add a function prototype. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md index d06b72efe2..d87b78d38a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md @@ -10,4 +10,6 @@ ms.assetid: e66fc7e6-0e91-4b99-a6e0-fdb069b09fbc > 'identifier' : formal parameter's length in bytes differs from previous declaration +## Remarks + The signature in a call to the specified function differs from the prototype. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md index c40d0161df..fc132c7070 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md @@ -10,8 +10,12 @@ ms.assetid: a2a6bb5b-86ad-4a6c-acd0-e2bef8464e0e > 'construct' : '__declspec(modifier)' can only be applied to a function returning a pointer +## Remarks + A function whose return value is a pointer is the only construct to which `modifier` can be applied. +## Example + The following sample generates C2710: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md index d3e889d0ef..588566439a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md @@ -10,8 +10,12 @@ ms.assetid: 9df9f808-7419-4e63-abdd-e6538ff0871f > 'function' : this function cannot be compiled as managed, consider using #pragma unmanaged +## Remarks + Some instructions will prevent the compiler from generating MSIL for the enclosing function. +## Example + The following sample generates C2711: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2713.md b/docs/error-messages/compiler-errors-2/compiler-error-c2713.md index 59ee0bf0a9..dfd1e05581 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2713.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2713.md @@ -10,4 +10,6 @@ ms.assetid: bae9bee3-b4b8-4be5-b6a5-02df587a7278 > only one form of exception handling permitted per function +## Remarks + You can't use structured exception handling (**`__try`**/**`__except`**) and C++ exception handling (**`try`**/**`catch`**) in the same function. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md index 95d86859dc..1b2fb857e7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md @@ -10,10 +10,10 @@ ms.assetid: 401a5a42-660c-4bad-9d63-1a2d092bc489 > `alignof(void)` is not allowed -An invalid value was passed to an operator. - ## Remarks +An invalid value was passed to an operator. + See [`alignof` operator](../../cpp/alignof-operator.md) for more information. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md index c4f985c864..29d1a4e99d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md @@ -10,8 +10,12 @@ ms.assetid: c81567a7-5b65-468f-aaf9-835f91e468e4 > 'type' : cannot throw or catch this type +## Remarks + Value types are not valid arguments when using exception handling in managed code (see [Exception Handling](../../extensions/exception-handling-cpp-component-extensions.md) for more information). +## Example + ```cpp // C2715a.cpp // compile with: /clr diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md index f483336182..2563220a7f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md @@ -10,8 +10,12 @@ ms.assetid: 78cc71f8-c142-46fc-9aed-970635d74f0c > 'parameter': actual parameter with __declspec(align('#')) won't be aligned +## Remarks + The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters. +## Example + The following sample generates C2718: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md index 6954b6bd4e..f550d5e45e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md @@ -10,8 +10,12 @@ ms.assetid: ea6236d3-8286-45cc-9478-c84ad3dd3c8e > 'parameter': formal parameter with __declspec(align('#')) won't be aligned +## Remarks + The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted on function parameters. Function parameter alignment is controlled by the calling convention used. For more information, see [Calling Conventions](../../cpp/calling-conventions.md). +## Example + The following sample generates C2719 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md index 40b1afaa4e..fb564ba7d5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md @@ -10,6 +10,8 @@ ms.assetid: 9ee3aab7-711b-4f5a-b2f1-cb62b130f1ce > '*identifier*' : '*specifier*' storage-class specifier illegal on members +## Remarks + The storage class cannot be used on class members outside the declaration. To fix this error, remove the unneeded [storage class](../../cpp/storage-classes-cpp.md) specifier from the definition of the member outside the class declaration. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md index 55ddccc19b..385dfe0d34 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md @@ -10,4 +10,6 @@ ms.assetid: 7a97823c-3ce1-4112-8253-fc1448685235 > 'specifier' : storage-class specifier illegal between operator keyword and type +## Remarks + User-defined type conversions apply to all storage classes, so you cannot specify a storage class in a type conversion. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md index 817b3296f4..59a0101902 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md @@ -10,4 +10,6 @@ ms.assetid: 4cc2c7fa-cb12-4bcf-9df1-6d627ef62973 > '::operator' : illegal following operator command; use 'operator operator' +## Remarks + An `operator` statement redefines `::new` or `::delete`. The `new` and `delete` operators are global, so the scope resolution operator (`::`) is meaningless. Remove the `::` operator. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md index 348cfbc15c..930165606e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md @@ -10,8 +10,12 @@ ms.assetid: 86925601-2297-4cfd-94e2-2caf27c474c4 > 'function' : 'specifier' specifier illegal on function definition +## Remarks + The specifier cannot appear with a function definition outside of a class declaration. The **`virtual`** specifier can be specified only on a member function declaration within a class declaration. +## Example + The following sample generates C2723 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md index 7fe9c7fc72..562f7791ed 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2724"] > 'identifier' : 'static' should not be used on member functions defined at file scope +## Remarks + Static member functions should be declared with external linkage. +## Example + The following sample generates C2724: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md index 695283a829..7e52f9f01a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md @@ -10,6 +10,8 @@ ms.assetid: 13cd5b1b-e906-4cd8-9b2b-510d587c665a > 'exception' : unable to throw or catch a managed or WinRT object by value or reference +## Remarks + The type of a managed or WinRT exception was not correct. ## Examples diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md index 634d19c64d..f359bc0926 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md @@ -10,8 +10,12 @@ ms.assetid: f0191bb7-c175-450b-bf09-a3213db96d09 > 'gcnew' may only be used to create an object with managed or WinRT type +## Remarks + You cannot create an instance of a native type on the garbage-collected heap. +## Example + The following sample generates C2726 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md index ea61c2b994..08eed488b8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md @@ -10,10 +10,14 @@ ms.assetid: 65635f91-1cd1-46e4-9ad7-14726d0546af > 'type' : a native array cannot contain this type +## Remarks + Array creation syntax was used to create an array of managed or WinRT objects. You cannot create an array of managed or WinRT objects using native array syntax. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md). +## Example + The following sample generates C2728 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md index 38563bc9ea..e33bac443c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md @@ -10,4 +10,6 @@ ms.assetid: 07f0b17a-bc8e-4d79-af5a-07a07af3687b > 'class' : cannot be a base class of itself +## Remarks + Recursive base classes are invalid. Specify another class as the base class. From f597f8c9dfd06f7043b1a97d2204f1846f14eef3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 5 Aug 2025 22:58:00 +0800 Subject: [PATCH 947/981] Replace term "sample" with "example" for error references in range [C2701, C2730] --- docs/error-messages/compiler-errors-2/compiler-error-c2701.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2702.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2703.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2705.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2706.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2707.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2710.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2711.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2712.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2714.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2718.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2719.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2720.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2723.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2724.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2725.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2726.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2728.md | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md index b887f887dd..6672028e0c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md @@ -16,7 +16,7 @@ A local class can't have a function template as a `friend` function. ## Example -The following sample generates C2701: +The following example generates C2701: ```cpp // C2701.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md index d391cb4cec..d2b3d54a2d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md @@ -16,7 +16,7 @@ An exception handler (**`__try`**/**`__except`**) cannot be nested inside a **`_ ## Example -The following sample generates C2702: +The following example generates C2702: ```cpp // C2702.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2703.md b/docs/error-messages/compiler-errors-2/compiler-error-c2703.md index 113bf49c70..623d6ac1c2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2703.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2703.md @@ -16,7 +16,7 @@ A **`__leave`** statement must be inside a **`__try`** block. ## Example -The following sample generates C2703: +The following example generates C2703: ```cpp // C2703.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2705.md b/docs/error-messages/compiler-errors-2/compiler-error-c2705.md index 39fdf0029a..e9ec12edaa 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2705.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2705.md @@ -16,7 +16,7 @@ Execution jumps to a label within a **`try`**/**`catch`**, **`__try`**/**`__exce ## Example -The following sample generates C2705: +The following example generates C2705: ```cpp // C2705.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md index c602b969a4..7209a54325 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md @@ -16,7 +16,7 @@ The compiler did not find a closing brace for a **`__try`** block. ## Example -The following sample generates C2706: +The following example generates C2706: ```cpp // C2706.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md index ac228a5eff..76a5a20823 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md @@ -24,7 +24,7 @@ To resolve the error, be sure that the exception-handling intrinsics are placed ## Example -The following sample generates C2707. +The following example generates C2707. ```cpp // C2707.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md index fc132c7070..6d8e73d942 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md @@ -16,7 +16,7 @@ A function whose return value is a pointer is the only construct to which `modif ## Example -The following sample generates C2710: +The following example generates C2710: ```cpp // C2710.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md index 588566439a..c27eaf12be 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md @@ -16,7 +16,7 @@ Some instructions will prevent the compiler from generating MSIL for the enclosi ## Example -The following sample generates C2711: +The following example generates C2711: ```cpp // C2711.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2712.md b/docs/error-messages/compiler-errors-2/compiler-error-c2712.md index 8b1b715cb0..926c02efbc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2712.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2712.md @@ -30,7 +30,7 @@ The **`/clr:pure`** and **`/clr:safe`** compiler options are deprecated in Visua ## Example -The following sample generates C2712 and shows how to fix it. +The following example generates C2712 and shows how to fix it. ```cpp // C2712.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md index 1b2fb857e7..7511bd218a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md @@ -18,7 +18,7 @@ See [`alignof` operator](../../cpp/alignof-operator.md) for more information. ## Example -The following sample generates C2714. +The following example generates C2714. ```cpp // C2714.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md index 2563220a7f..7f2c2f1387 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md @@ -16,7 +16,7 @@ The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted o ## Example -The following sample generates C2718: +The following example generates C2718: ```cpp // C2718.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md index f550d5e45e..2e1062c399 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md @@ -16,7 +16,7 @@ The [align](../../cpp/align-cpp.md) **`__declspec`** modifier is not permitted o ## Example -The following sample generates C2719 and shows how to fix it: +The following example generates C2719 and shows how to fix it: ```cpp // C2719.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md index fb564ba7d5..6e0cbaab44 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md @@ -16,7 +16,7 @@ The storage class cannot be used on class members outside the declaration. To fi ## Example -The following sample generates C2720 and shows how to fix it: +The following example generates C2720 and shows how to fix it: ```cpp // C2720.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md index 930165606e..6d2a1a70dd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md @@ -16,7 +16,7 @@ The specifier cannot appear with a function definition outside of a class declar ## Example -The following sample generates C2723 and shows how to fix it: +The following example generates C2723 and shows how to fix it: ```cpp // C2723.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md index 562f7791ed..21e3b41693 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2724.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2724.md @@ -15,7 +15,7 @@ Static member functions should be declared with external linkage. ## Example -The following sample generates C2724: +The following example generates C2724: ```cpp // C2724.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md index 7e52f9f01a..e500613b2c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md @@ -16,7 +16,7 @@ The type of a managed or WinRT exception was not correct. ## Examples -The following sample generates C2725 and shows how to fix it. +The following example generates C2725 and shows how to fix it. ```cpp // C2725.cpp @@ -35,7 +35,7 @@ int main() { } ``` -The following sample generates C2725 and shows how to fix it. +The following example generates C2725 and shows how to fix it. ```cpp // C2725b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md index f359bc0926..42a2a207ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md @@ -16,7 +16,7 @@ You cannot create an instance of a native type on the garbage-collected heap. ## Example -The following sample generates C2726 and shows how to fix it: +The following example generates C2726 and shows how to fix it: ```cpp // C2726.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md index 08eed488b8..6aa45f9c90 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md @@ -18,7 +18,7 @@ For more information, see [array](../../extensions/arrays-cpp-component-extensio ## Example -The following sample generates C2728 and shows how to fix it: +The following example generates C2728 and shows how to fix it: ```cpp // C2728.cpp From 19a1730bfb314e1378760d67d789c19d2b6be67f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 5 Aug 2025 23:02:17 +0800 Subject: [PATCH 948/981] Update metadata for error references in range [C2701, C2730] --- .../error-messages/compiler-errors-2/compiler-error-c2701.md | 3 +-- .../error-messages/compiler-errors-2/compiler-error-c2702.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2703.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2704.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2705.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2706.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2707.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2708.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2709.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2710.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2711.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2712.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2713.md | 1 - .../error-messages/compiler-errors-2/compiler-error-c2714.md | 3 +-- .../error-messages/compiler-errors-2/compiler-error-c2715.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2718.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2719.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2720.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2721.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2722.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2723.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2725.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2726.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2728.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2730.md | 5 ++--- 25 files changed, 36 insertions(+), 61 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md index 6672028e0c..6d038a0270 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2701.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2701.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2701" title: "Compiler Error C2701" +description: "Learn more about: Compiler Error C2701" ms.date: 09/27/2022 f1_keywords: ["C2701"] helpviewer_keywords: ["C2701"] -ms.assetid: 31cf2ab7-ced9-4f75-aa51-e169e20407fb --- # Compiler Error C2701 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md index d2b3d54a2d..d552a51215 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2702.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2702.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2702." ms.date: 08/25/2020 f1_keywords: ["C2702"] helpviewer_keywords: ["C2702"] -ms.assetid: 6def15d4-9a8d-43e7-ae35-42d7cb57c27e --- # Compiler Error C2702 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2703.md b/docs/error-messages/compiler-errors-2/compiler-error-c2703.md index 623d6ac1c2..87adbc9051 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2703.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2703.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2703." ms.date: 08/24/2020 f1_keywords: ["C2703"] helpviewer_keywords: ["C2703"] -ms.assetid: 384295c3-643d-47ae-a9a6-865b3036aa84 --- # Compiler Error C2703 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md index eaac6df6c7..4d231d20a9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2704.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2704.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2704" title: "Compiler Error C2704" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2704" +ms.date: 11/04/2016 f1_keywords: ["C2704"] helpviewer_keywords: ["C2704"] -ms.assetid: 185797e2-55b5-4c11-8493-e70eb1d15a94 --- # Compiler Error C2704 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2705.md b/docs/error-messages/compiler-errors-2/compiler-error-c2705.md index e9ec12edaa..d080e7a213 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2705.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2705.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2705." ms.date: 08/25/2020 f1_keywords: ["C2705"] helpviewer_keywords: ["C2705"] -ms.assetid: 29249ea3-4ea7-4105-944b-bdb83e8d6852 --- # Compiler Error C2705 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md index 7209a54325..0490d7807c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2706.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2706.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2706." ms.date: 08/25/2020 f1_keywords: ["C2706"] helpviewer_keywords: ["C2706"] -ms.assetid: e18da924-c42d-4b09-8e29-f4e0382d7dc6 --- # Compiler Error C2706 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md index 76a5a20823..3bfc8a90ae 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2707.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2707.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2707" title: "Compiler Error C2707" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2707" +ms.date: 11/04/2016 f1_keywords: ["C2707"] helpviewer_keywords: ["C2707"] -ms.assetid: 3deaf45c-74da-4c9d-acc6-b82412720b74 --- # Compiler Error C2707 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md index 9b6bc30afe..a8b2f3d650 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2708.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2708.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2708" title: "Compiler Error C2708" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2708" +ms.date: 11/04/2016 f1_keywords: ["C2708"] helpviewer_keywords: ["C2708"] -ms.assetid: d52d3088-1141-42f4-829c-74755a7fcc3a --- # Compiler Error C2708 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md index d87b78d38a..36a2376616 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2709.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2709.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2709" title: "Compiler Error C2709" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2709" +ms.date: 11/04/2016 f1_keywords: ["C2709"] helpviewer_keywords: ["C2709"] -ms.assetid: e66fc7e6-0e91-4b99-a6e0-fdb069b09fbc --- # Compiler Error C2709 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md index 6d8e73d942..3019c67c1c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2710.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2710.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2710" title: "Compiler Error C2710" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2710" +ms.date: 11/04/2016 f1_keywords: ["C2710"] helpviewer_keywords: ["C2710"] -ms.assetid: a2a6bb5b-86ad-4a6c-acd0-e2bef8464e0e --- # Compiler Error C2710 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md index c27eaf12be..a0b44f3827 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2711.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2711.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2711" title: "Compiler Error C2711" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2711" +ms.date: 11/04/2016 f1_keywords: ["C2711"] helpviewer_keywords: ["C2711"] -ms.assetid: 9df9f808-7419-4e63-abdd-e6538ff0871f --- # Compiler Error C2711 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2712.md b/docs/error-messages/compiler-errors-2/compiler-error-c2712.md index 926c02efbc..b1caf1ca2d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2712.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2712.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2712." ms.date: 08/25/2020 f1_keywords: ["C2712"] helpviewer_keywords: ["C2712"] -ms.assetid: f7d4ffcc-7ed2-459b-8067-a728ce647071 --- # Compiler Error C2712 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2713.md b/docs/error-messages/compiler-errors-2/compiler-error-c2713.md index dfd1e05581..65eeed13bd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2713.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2713.md @@ -4,7 +4,6 @@ description: "Describes Microsoft C/C++ compiler error C2713." ms.date: 08/25/2020 f1_keywords: ["C2713"] helpviewer_keywords: ["C2713"] -ms.assetid: bae9bee3-b4b8-4be5-b6a5-02df587a7278 --- # Compiler Error C2713 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md index 7511bd218a..c876015451 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2714.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2714.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2714" title: "Compiler Error C2714" +description: "Learn more about: Compiler Error C2714" ms.date: 07/22/2020 f1_keywords: ["C2714"] helpviewer_keywords: ["C2714"] -ms.assetid: 401a5a42-660c-4bad-9d63-1a2d092bc489 --- # Compiler Error C2714 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md index 29d1a4e99d..86f7e5ce73 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2715" title: "Compiler Error C2715" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2715" +ms.date: 11/04/2016 f1_keywords: ["C2715"] helpviewer_keywords: ["C2715"] -ms.assetid: c81567a7-5b65-468f-aaf9-835f91e468e4 --- # Compiler Error C2715 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md index 7f2c2f1387..180afef6ea 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2718.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2718.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2718" title: "Compiler Error C2718" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2718" +ms.date: 11/04/2016 f1_keywords: ["C2718"] helpviewer_keywords: ["C2718"] -ms.assetid: 78cc71f8-c142-46fc-9aed-970635d74f0c --- # Compiler Error C2718 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md index 2e1062c399..6df11d9414 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2719.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2719.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2719" title: "Compiler Error C2719" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2719" +ms.date: 11/04/2016 f1_keywords: ["C2719"] helpviewer_keywords: ["C2719"] -ms.assetid: ea6236d3-8286-45cc-9478-c84ad3dd3c8e --- # Compiler Error C2719 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md index 6e0cbaab44..66fd999f7a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2720.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2720.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2720" title: "Compiler Error C2720" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2720" +ms.date: 11/04/2016 f1_keywords: ["C2720"] helpviewer_keywords: ["C2720"] -ms.assetid: 9ee3aab7-711b-4f5a-b2f1-cb62b130f1ce --- # Compiler Error C2720 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md index 385dfe0d34..2bfd272ae2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2721.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2721.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2721" title: "Compiler Error C2721" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2721" +ms.date: 11/04/2016 f1_keywords: ["C2721"] helpviewer_keywords: ["C2721"] -ms.assetid: 7a97823c-3ce1-4112-8253-fc1448685235 --- # Compiler Error C2721 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md index 59a0101902..892e345c5c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2722.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2722.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2722" title: "Compiler Error C2722" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2722" +ms.date: 11/04/2016 f1_keywords: ["C2722"] helpviewer_keywords: ["C2722"] -ms.assetid: 4cc2c7fa-cb12-4bcf-9df1-6d627ef62973 --- # Compiler Error C2722 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md index 6d2a1a70dd..b878410fa1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2723.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2723.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2723" title: "Compiler Error C2723" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2723" +ms.date: 11/04/2016 f1_keywords: ["C2723"] helpviewer_keywords: ["C2723"] -ms.assetid: 86925601-2297-4cfd-94e2-2caf27c474c4 --- # Compiler Error C2723 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md index e500613b2c..ef72d45e28 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2725.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2725.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2725" title: "Compiler Error C2725" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2725" +ms.date: 11/04/2016 f1_keywords: ["C2725"] helpviewer_keywords: ["C2725"] -ms.assetid: 13cd5b1b-e906-4cd8-9b2b-510d587c665a --- # Compiler Error C2725 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md index 42a2a207ce..22aa1b5240 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2726.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2726.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2726" title: "Compiler Error C2726" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2726" +ms.date: 11/04/2016 f1_keywords: ["C2726"] helpviewer_keywords: ["C2726"] -ms.assetid: f0191bb7-c175-450b-bf09-a3213db96d09 --- # Compiler Error C2726 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md index 6aa45f9c90..8300ece356 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2728.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2728.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2728" title: "Compiler Error C2728" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2728" +ms.date: 11/04/2016 f1_keywords: ["C2728"] helpviewer_keywords: ["C2728"] -ms.assetid: 65635f91-1cd1-46e4-9ad7-14726d0546af --- # Compiler Error C2728 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md index e33bac443c..f06cf3b7fe 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2730.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2730.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2730" title: "Compiler Error C2730" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2730" +ms.date: 11/04/2016 f1_keywords: ["C2730"] helpviewer_keywords: ["C2730"] -ms.assetid: 07f0b17a-bc8e-4d79-af5a-07a07af3687b --- # Compiler Error C2730 From b62f7c56ce73780c20c45344a5e96975bd8aa5ad Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:49:23 +0800 Subject: [PATCH 949/981] Clean up empty "Requirements" headings --- docs/c-runtime-library/setjmp3.md | 2 -- docs/cppcx/operator-type-hat.md | 2 -- docs/cppcx/operator-windows-ui-xaml-interop-typename.md | 2 -- docs/cppcx/platform-ibox-interface.md | 2 -- 4 files changed, 8 deletions(-) diff --git a/docs/c-runtime-library/setjmp3.md b/docs/c-runtime-library/setjmp3.md index 05fbacbc02..48049558c6 100644 --- a/docs/c-runtime-library/setjmp3.md +++ b/docs/c-runtime-library/setjmp3.md @@ -43,8 +43,6 @@ Always returns 0. Don't use this function in a C++ program. It's an intrinsic function that doesn't support C++. For more information about how to use `setjmp`, see [Using setjmp/longjmp](../cpp/using-setjmp-longjmp.md). -## Requirements - ## See also [Alphabetical function reference](./reference/crt-alphabetical-function-reference.md)\ diff --git a/docs/cppcx/operator-type-hat.md b/docs/cppcx/operator-type-hat.md index 658cfdad71..2417ad92e7 100644 --- a/docs/cppcx/operator-type-hat.md +++ b/docs/cppcx/operator-type-hat.md @@ -42,8 +42,6 @@ Type^ tx2 = (Type^)(tn); .NET Framework programs project `TypeName` as -### Requirements - ## See also [operator Windows::UI::Xaml::Interop::TypeName](../cppcx/operator-windows-ui-xaml-interop-typename.md)
diff --git a/docs/cppcx/operator-windows-ui-xaml-interop-typename.md b/docs/cppcx/operator-windows-ui-xaml-interop-typename.md index 750e6301a9..fae1128437 100644 --- a/docs/cppcx/operator-windows-ui-xaml-interop-typename.md +++ b/docs/cppcx/operator-windows-ui-xaml-interop-typename.md @@ -42,8 +42,6 @@ Type^ tx2 = (Type^)(tn); .NET Framework programs project `TypeName` as [System.Type](/dotnet/api/system.type). -### Requirements - ## See also [operator Windows::UI::Xaml::Interop::TypeName](../cppcx/operator-windows-ui-xaml-interop-typename.md)
diff --git a/docs/cppcx/platform-ibox-interface.md b/docs/cppcx/platform-ibox-interface.md index bf606fcf34..c57a1f3a43 100644 --- a/docs/cppcx/platform-ibox-interface.md +++ b/docs/cppcx/platform-ibox-interface.md @@ -26,8 +26,6 @@ The type of the boxed value. The `IBox` interface is primarily used internally to represent nullable value types, as described in [Value classes and structs (C++/CX)](../cppcx/value-classes-and-structs-c-cx.md). The interface is also used to box value types that are passed to C++ methods that take parameters of type `Object^`. You can explicitly declare an input parameter as `IBox`. For an example, see [Boxing](../cppcx/boxing-c-cx.md). -### Requirements - ### Members The `Platform::IBox` interface inherits from the [Platform::IValueType](../cppcx/platform-ivaluetype-interface.md) interface. `IBox` has these members: From 3b7df36f120b65ac57c66d833f80ef8f4438bf73 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:51:13 +0800 Subject: [PATCH 950/981] Update metadata in 4 topics --- docs/c-runtime-library/setjmp3.md | 5 ++--- docs/cppcx/operator-type-hat.md | 5 ++--- docs/cppcx/operator-windows-ui-xaml-interop-typename.md | 5 ++--- docs/cppcx/platform-ibox-interface.md | 5 ++--- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/docs/c-runtime-library/setjmp3.md b/docs/c-runtime-library/setjmp3.md index 48049558c6..d406921ec9 100644 --- a/docs/c-runtime-library/setjmp3.md +++ b/docs/c-runtime-library/setjmp3.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: _setjmp3" title: "_setjmp3" -ms.date: "1/14/2021" +description: "Learn more about: _setjmp3" +ms.date: 1/14/2021 api_name: ["_setjmp3"] api_location: ["msvcrt.dll", "msvcr90.dll", "msvcr110.dll", "msvcr80.dll", "msvcr110_clr0400.dll", "msvcr100.dll", "msvcr120.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["setjmp3", "_setjmp3"] helpviewer_keywords: ["_setjmp3 function", "setjmp3 function"] -ms.assetid: 6129c2f3-8bac-4fdb-a827-44e1eebba500 --- # `_setjmp3` diff --git a/docs/cppcx/operator-type-hat.md b/docs/cppcx/operator-type-hat.md index 2417ad92e7..238e11d971 100644 --- a/docs/cppcx/operator-type-hat.md +++ b/docs/cppcx/operator-type-hat.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: operator Type^" title: "operator Type^" -ms.date: "12/30/2016" -ms.assetid: b24ffc83-0780-4f9a-8ee0-f5725db339d1 +description: "Learn more about: operator Type^" +ms.date: 12/30/2016 --- # operator Type^ diff --git a/docs/cppcx/operator-windows-ui-xaml-interop-typename.md b/docs/cppcx/operator-windows-ui-xaml-interop-typename.md index fae1128437..0e585769a5 100644 --- a/docs/cppcx/operator-windows-ui-xaml-interop-typename.md +++ b/docs/cppcx/operator-windows-ui-xaml-interop-typename.md @@ -1,8 +1,7 @@ --- -description: "Learn more about: operator Windows::UI::Xaml::Interop::TypeName" title: "operator Windows::UI::Xaml::Interop::TypeName" -ms.date: "12/30/2016" -ms.assetid: a65a105e-7e3a-452f-932f-2cdaf00fbba5 +description: "Learn more about: operator Windows::UI::Xaml::Interop::TypeName" +ms.date: 12/30/2016 --- # operator Windows::UI::Xaml::Interop::TypeName diff --git a/docs/cppcx/platform-ibox-interface.md b/docs/cppcx/platform-ibox-interface.md index c57a1f3a43..fdc629b0e2 100644 --- a/docs/cppcx/platform-ibox-interface.md +++ b/docs/cppcx/platform-ibox-interface.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Platform::IBox Interface" title: "Platform::IBox Interface" -ms.date: "12/30/2016" +description: "Learn more about: Platform::IBox Interface" +ms.date: 12/30/2016 ms.topic: "reference" f1_keywords: ["VCCORLIB/Namespace not found::Platform", "VCCORLIB/Namespace not found::Platform::Value"] -ms.assetid: 774df45d-f8a7-45a3-ae24-eecc3c681040 --- # Platform::IBox Interface From 2fa003c236e32bbd01f5811d29b9c87c7871edf9 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 18:52:35 +0800 Subject: [PATCH 951/981] Elide some wrong uses of `/c` flag in C runtime library --- .../reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md | 1 - .../reference/cprintf-s-cprintf-s-l-cwprintf-s-cwprintf-s-l.md | 1 - .../reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md | 1 - docs/c-runtime-library/reference/cwait.md | 1 - docs/c-runtime-library/reference/getch-getwch.md | 1 - docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md | 1 - docs/c-runtime-library/reference/getche-getwche.md | 1 - .../c-runtime-library/reference/getche-nolock-getwche-nolock.md | 1 - docs/c-runtime-library/reference/getdiskfree.md | 2 +- docs/c-runtime-library/reference/getdrive.md | 1 - docs/c-runtime-library/reference/kbhit.md | 1 - docs/c-runtime-library/reference/set-error-mode.md | 2 +- .../ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md | 1 - .../vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md | 2 +- .../reference/vcprintf-vcprintf-l-vcwprintf-vcwprintf-l.md | 2 +- 15 files changed, 4 insertions(+), 15 deletions(-) diff --git a/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md b/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md index 55418b0ad2..1d39021b00 100644 --- a/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md +++ b/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md @@ -85,7 +85,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_cprintf.c -// compile with: /c // This program displays some variables to the console. #include diff --git a/docs/c-runtime-library/reference/cprintf-s-cprintf-s-l-cwprintf-s-cwprintf-s-l.md b/docs/c-runtime-library/reference/cprintf-s-cprintf-s-l-cwprintf-s-cwprintf-s-l.md index 0c80a6f068..3dc9149a34 100644 --- a/docs/c-runtime-library/reference/cprintf-s-cprintf-s-l-cwprintf-s-cwprintf-s-l.md +++ b/docs/c-runtime-library/reference/cprintf-s-cprintf-s-l-cwprintf-s-cwprintf-s-l.md @@ -93,7 +93,6 @@ All versions of the [C run-time libraries](../crt-library-features.md). ```C // crt_cprintf_s.c -// compile with: /c // This program displays some variables to the console. #include diff --git a/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md b/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md index 87dac808b6..9a686228d9 100644 --- a/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md +++ b/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md @@ -92,7 +92,6 @@ All versions of the [C run-time libraries](../crt-library-features.md). ```C // crt_cscanf_s.c -// compile with: /c /* This program prompts for a string * and uses _cscanf_s to read in the response. * Then _cscanf_s returns the number of items diff --git a/docs/c-runtime-library/reference/cwait.md b/docs/c-runtime-library/reference/cwait.md index aeaaad8adc..3bbde03daf 100644 --- a/docs/c-runtime-library/reference/cwait.md +++ b/docs/c-runtime-library/reference/cwait.md @@ -73,7 +73,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_cwait.c -// compile with: /c // This program launches several processes and waits // for a specified process to finish. diff --git a/docs/c-runtime-library/reference/getch-getwch.md b/docs/c-runtime-library/reference/getch-getwch.md index 82d45dd775..742895fddb 100644 --- a/docs/c-runtime-library/reference/getch-getwch.md +++ b/docs/c-runtime-library/reference/getch-getwch.md @@ -54,7 +54,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getch.c -// compile with: /c // This program reads characters from // the keyboard until it receives a 'Y' or 'y'. diff --git a/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md b/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md index 61bf1a4ace..96bdf20147 100644 --- a/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md +++ b/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md @@ -52,7 +52,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getch_nolock.c -// compile with: /c // This program reads characters from // the keyboard until it receives a 'Y' or 'y'. diff --git a/docs/c-runtime-library/reference/getche-getwche.md b/docs/c-runtime-library/reference/getche-getwche.md index 188c2ee2e7..77b7351a95 100644 --- a/docs/c-runtime-library/reference/getche-getwche.md +++ b/docs/c-runtime-library/reference/getche-getwche.md @@ -55,7 +55,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getche.c -// compile with: /c // This program reads characters from // the keyboard until it receives a 'Y' or 'y'. diff --git a/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md b/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md index c9c6b7ad6f..c3293873c8 100644 --- a/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md +++ b/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md @@ -52,7 +52,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getche_nolock.c -// compile with: /c // This program reads characters from // the keyboard until it receives a 'Y' or 'y'. diff --git a/docs/c-runtime-library/reference/getdiskfree.md b/docs/c-runtime-library/reference/getdiskfree.md index 9ddb84d87b..c622fb7cba 100644 --- a/docs/c-runtime-library/reference/getdiskfree.md +++ b/docs/c-runtime-library/reference/getdiskfree.md @@ -66,7 +66,7 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getdiskfree.c -// compile with: /c + #include #include #include diff --git a/docs/c-runtime-library/reference/getdrive.md b/docs/c-runtime-library/reference/getdrive.md index 571445fb63..36295f2490 100644 --- a/docs/c-runtime-library/reference/getdrive.md +++ b/docs/c-runtime-library/reference/getdrive.md @@ -43,7 +43,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_getdrive.c -// compile with: /c // Illustrates drive functions including: // _getdrive _chdrive _getdcwd // diff --git a/docs/c-runtime-library/reference/kbhit.md b/docs/c-runtime-library/reference/kbhit.md index 3d89e65caa..290a8c64bd 100644 --- a/docs/c-runtime-library/reference/kbhit.md +++ b/docs/c-runtime-library/reference/kbhit.md @@ -48,7 +48,6 @@ All versions of the [C run-time libraries](../crt-library-features.md). ```C // crt_kbhit.c -// compile with: /c /* This program loops until the user * presses a key. If _kbhit returns nonzero, a * keystroke is waiting in the buffer. The program diff --git a/docs/c-runtime-library/reference/set-error-mode.md b/docs/c-runtime-library/reference/set-error-mode.md index cdbce0d93f..f85edc9742 100644 --- a/docs/c-runtime-library/reference/set-error-mode.md +++ b/docs/c-runtime-library/reference/set-error-mode.md @@ -61,7 +61,7 @@ When it's used with an [`assert`](assert-macro-assert-wassert.md), **`_set_error ```C // crt_set_error_mode.c -// compile with: /c + #include #include diff --git a/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md b/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md index 5c15bfbf42..42c44c2c9e 100644 --- a/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md +++ b/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md @@ -70,7 +70,6 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_ungetch.c -// compile with: /c // In this program, a white-space delimited // token is read from the keyboard. When the program // encounters a delimiter, it uses _ungetch to replace diff --git a/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md b/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md index 5a40fed9d7..d110402b8a 100644 --- a/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md +++ b/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md @@ -94,7 +94,7 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```C // crt_vcprintf_p.c -// compile with: /c + #include #include diff --git a/docs/c-runtime-library/reference/vcprintf-vcprintf-l-vcwprintf-vcwprintf-l.md b/docs/c-runtime-library/reference/vcprintf-vcprintf-l-vcwprintf-vcwprintf-l.md index 236d8685be..0bffc074e8 100644 --- a/docs/c-runtime-library/reference/vcprintf-vcprintf-l-vcwprintf-vcwprintf-l.md +++ b/docs/c-runtime-library/reference/vcprintf-vcprintf-l-vcwprintf-vcwprintf-l.md @@ -89,7 +89,7 @@ For more compatibility information, see [Compatibility](../compatibility.md). ```cpp // crt_vcprintf.cpp -// compile with: /c + #include #include From 84283019c57d2db115cf3f3a5d97d27db0b9dba5 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 18:58:14 +0800 Subject: [PATCH 952/981] Update metadata in 13 C runtime library topics --- .../reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md | 4 ++-- .../reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md | 5 ++--- docs/c-runtime-library/reference/cwait.md | 3 +-- docs/c-runtime-library/reference/getch-getwch.md | 2 +- .../reference/getch-nolock-getwch-nolock.md | 2 +- docs/c-runtime-library/reference/getche-getwche.md | 3 +-- .../reference/getche-nolock-getwche-nolock.md | 2 +- docs/c-runtime-library/reference/getdiskfree.md | 2 +- docs/c-runtime-library/reference/getdrive.md | 5 ++--- docs/c-runtime-library/reference/kbhit.md | 2 +- docs/c-runtime-library/reference/set-error-mode.md | 5 ++--- .../ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md | 2 +- .../vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md | 4 ++-- 13 files changed, 18 insertions(+), 23 deletions(-) diff --git a/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md b/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md index 1d39021b00..8dfe11ae63 100644 --- a/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md +++ b/docs/c-runtime-library/reference/cprintf-cprintf-l-cwprintf-cwprintf-l.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: _cprintf, _cprintf_l, _cwprintf, _cwprintf_l" title: "_cprintf, _cprintf_l, _cwprintf, _cwprintf_l" -ms.date: "3/9/2021" +description: "Learn more about: _cprintf, _cprintf_l, _cwprintf, _cwprintf_l" +ms.date: 3/9/2021 api_name: ["_cwprintf_l", "_cprintf_l", "_cwprintf", "_cprintf"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md b/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md index 9a686228d9..7ca544e88b 100644 --- a/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md +++ b/docs/c-runtime-library/reference/cscanf-s-cscanf-s-l-cwscanf-s-cwscanf-s-l.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: _cscanf_s, _cscanf_s_l, _cwscanf_s, _cwscanf_s_l" title: "_cscanf_s, _cscanf_s_l, _cwscanf_s, _cwscanf_s_l" -ms.date: "11/04/2016" +description: "Learn more about: _cscanf_s, _cscanf_s_l, _cwscanf_s, _cwscanf_s_l" +ms.date: 11/04/2016 api_name: ["_cwscanf_s_l", "_cwscanf_s", "_cscanf_s", "_cscanf_s_l"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["cscanf_s", "cscanf_s_l", "cwscanf_s", "_cwscanf_s", "_tcscanf_s", "_cscanf_s", "_cwscanf_s_l", "_cscanf_s_l", "cwscanf_s_l", "_tcscanf_s_l", "tcscanf_s", "tcscanf_s_l"] helpviewer_keywords: ["cscanf_s function", "_cwscanf_s_l function", "tcscanf_s function", "console [C++], reading from", "_cscanf_s function", "data [C++], reading from the console", "cwscanf_s function", "_tcscanf_s_l function", "_cscanf_s_l function", "cscanf_s_l function", "cwscanf_s_l function", "reading data [C++], from the console", "_cwscanf_s function", "_tcscanf_s function", "tcscanf_s_l function"] -ms.assetid: 9ccab74d-916f-42a6-93d8-920525efdf4b --- # `_cscanf_s`, `_cscanf_s_l`, `_cwscanf_s`, `_cwscanf_s_l` diff --git a/docs/c-runtime-library/reference/cwait.md b/docs/c-runtime-library/reference/cwait.md index 3bbde03daf..4f2d069a7c 100644 --- a/docs/c-runtime-library/reference/cwait.md +++ b/docs/c-runtime-library/reference/cwait.md @@ -1,14 +1,13 @@ --- title: "_cwait" description: "API reference for the Microsoft Visual C runtime `_cwait()` function." -ms.date: "10/23/2020" +ms.date: 10/23/2020 api_name: ["_cwait", "_o__cwait"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-process-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_cwait"] helpviewer_keywords: ["cwait function", "_cwait function"] -ms.assetid: d9b596b5-45f4-4e03-9896-3f383cb922b8 --- # `_cwait` diff --git a/docs/c-runtime-library/reference/getch-getwch.md b/docs/c-runtime-library/reference/getch-getwch.md index 742895fddb..08a4ff83ac 100644 --- a/docs/c-runtime-library/reference/getch-getwch.md +++ b/docs/c-runtime-library/reference/getch-getwch.md @@ -1,7 +1,7 @@ --- title: "_getch, _getwch" description: "API reference for _getch and _getwch; which get a character from the console without echo." -ms.date: "3/8/2023" +ms.date: 3/8/2023 api_name: ["_getch", "_getwch", "_o__getch", "_o__getwch"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md b/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md index 96bdf20147..91400665f6 100644 --- a/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md +++ b/docs/c-runtime-library/reference/getch-nolock-getwch-nolock.md @@ -1,7 +1,7 @@ --- title: "_getch_nolock, _getwch_nolock" description: "Learn more about: _getch_nolock, _getwch_nolock" -ms.date: "4/2/2020" +ms.date: 4/2/2020 api_name: ["_getwch_nolock", "_getch_nolock", "_o__getch_nolock", "_o__getwch_nolock"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/getche-getwche.md b/docs/c-runtime-library/reference/getche-getwche.md index 77b7351a95..6463db7893 100644 --- a/docs/c-runtime-library/reference/getche-getwche.md +++ b/docs/c-runtime-library/reference/getche-getwche.md @@ -1,14 +1,13 @@ --- title: "_getche, _getwche" description: "API reference for _getche and _getwche; which get a character from the console with echo." -ms.date: "4/2/2020" +ms.date: 4/2/2020 api_name: ["_getwche", "_getche", "_o__getche", "_o__getwche"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["getwche", "_getche", "_getwche"] helpviewer_keywords: ["characters, getting from console", "_getwche function", "getche function", "console, reading from", "getwche function", "_getche function"] -ms.assetid: eac978a8-c43a-4130-938f-54f12e2a0fda --- # `_getche`, `_getwche` diff --git a/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md b/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md index c3293873c8..9165a4f7b2 100644 --- a/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md +++ b/docs/c-runtime-library/reference/getche-nolock-getwche-nolock.md @@ -1,7 +1,7 @@ --- title: "_getche_nolock, _getwche_nolock" description: "Learn more about: _getche_nolock, _getwche_nolock" -ms.date: "4/2/2020" +ms.date: 4/2/2020 api_name: ["_getche_nolock", "_getwche_nolock", "_o__getche_nolock", "_o__getwche_nolock"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/getdiskfree.md b/docs/c-runtime-library/reference/getdiskfree.md index c622fb7cba..68fa48a070 100644 --- a/docs/c-runtime-library/reference/getdiskfree.md +++ b/docs/c-runtime-library/reference/getdiskfree.md @@ -1,6 +1,6 @@ --- -description: "Learn more about: _getdiskfree" title: "_getdiskfree" +description: "Learn more about: _getdiskfree" ms.date: 05/11/2022 api_name: ["_getdiskfree", "_o__getdiskfree"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-filesystem-l1-1-0.dll"] diff --git a/docs/c-runtime-library/reference/getdrive.md b/docs/c-runtime-library/reference/getdrive.md index 36295f2490..743ae0d823 100644 --- a/docs/c-runtime-library/reference/getdrive.md +++ b/docs/c-runtime-library/reference/getdrive.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: _getdrive" title: "_getdrive" -ms.date: "4/2/2020" +description: "Learn more about: _getdrive" +ms.date: 4/2/2020 api_name: ["_getdrive", "_o__getdrive"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-filesystem-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["_getdrive", "getdrive"] helpviewer_keywords: ["current disk drive", "getdrive function", "disk drives", "_getdrive function"] -ms.assetid: e40631a0-8f1a-4897-90ac-e1037ff30bca --- # `_getdrive` diff --git a/docs/c-runtime-library/reference/kbhit.md b/docs/c-runtime-library/reference/kbhit.md index 290a8c64bd..fe9bfbf45f 100644 --- a/docs/c-runtime-library/reference/kbhit.md +++ b/docs/c-runtime-library/reference/kbhit.md @@ -1,7 +1,7 @@ --- title: "_kbhit" description: "Learn more about: _kbhit" -ms.date: "4/2/2020" +ms.date: 4/2/2020 api_name: ["_kbhit", "_o__kbhit"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-stdio-l1-1-0.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/set-error-mode.md b/docs/c-runtime-library/reference/set-error-mode.md index f85edc9742..2876650091 100644 --- a/docs/c-runtime-library/reference/set-error-mode.md +++ b/docs/c-runtime-library/reference/set-error-mode.md @@ -1,14 +1,13 @@ --- -description: "Learn more about: _set_error_mode" title: "_set_error_mode" -ms.date: "11/04/2016" +description: "Learn more about: _set_error_mode" +ms.date: 11/04/2016 api_name: ["_set_error_mode"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-runtime-l1-1-0.dll"] api_type: ["DLLExport"] topic_type: ["apiref"] f1_keywords: ["set_error_mode", "_set_error_mode"] helpviewer_keywords: ["_set_error_mode function", "set_error_mode function"] -ms.assetid: f0807be5-73d1-4a32-a701-3c9bdd139c5c --- # `_set_error_mode` diff --git a/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md b/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md index 42c44c2c9e..1564dabc49 100644 --- a/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md +++ b/docs/c-runtime-library/reference/ungetch-ungetwch-ungetch-nolock-ungetwch-nolock.md @@ -1,7 +1,7 @@ --- title: "_ungetch, _ungetwch, _ungetch_nolock, _ungetwch_nolock" description: "Learn more about: _ungetch, _ungetwch, _ungetch_nolock, _ungetwch_nolock" -ms.date: "4/2/2020" +ms.date: 4/2/2020 api_name: ["_ungetch_nolock", "_ungetwch_nolock", "_ungetwch", "_ungetch", "_o__ungetch", "_o__ungetch_nolock", "_o__ungetwch", "_o__ungetwch_nolock"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-conio-l1-1-0.dll"] api_type: ["DLLExport"] diff --git a/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md b/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md index d110402b8a..9910375760 100644 --- a/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md +++ b/docs/c-runtime-library/reference/vcprintf-p-vcprintf-p-l-vcwprintf-p-vcwprintf-p-l.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: _vcprintf_p, _vcprintf_p_l, _vcwprintf_p, _vcwprintf_p_l" title: "_vcprintf_p, _vcprintf_p_l, _vcwprintf_p, _vcwprintf_p_l" -ms.date: "3/9/2021" +description: "Learn more about: _vcprintf_p, _vcprintf_p_l, _vcwprintf_p, _vcwprintf_p_l" +ms.date: 3/9/2021 api_name: ["_vcprintf_p", "_vcwprintf_p_l", "_vcprintf_p_l", "_vcwprintf_p"] api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll"] api_type: ["DLLExport"] From 9f8372cf3567a925a9cac293b1264a523ab85b9c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 23:04:53 +0800 Subject: [PATCH 953/981] Add blockquotes for error messages in range [C2731, C2760] --- docs/error-messages/compiler-errors-2/compiler-error-c2731.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2732.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2734.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2735.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2736.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2738.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2739.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2743.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2745.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2748.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2749.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2750.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2751.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2752.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2753.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2754.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2755.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2756.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2757.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2758.md | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md index 3140f55a23..eed56b56a8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md @@ -8,7 +8,7 @@ ms.assetid: 9b563999-febd-4582-9147-f355083c091e --- # Compiler Error C2731 -'identifier' : function cannot be overloaded +> 'identifier' : function cannot be overloaded The functions `main`, `WinMain`, `DllMain`, and `LibMain` cannot be overloaded. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md index a8c934d69a..b4453ea4c3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md @@ -8,7 +8,7 @@ ms.assetid: 01b7ad2c-93cf-456f-a4c0-c5f2fdc7c07c --- # Compiler Error C2732 -linkage specification contradicts earlier specification for 'function' +> linkage specification contradicts earlier specification for 'function' The function is already declared with a different linkage specifier. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md index 926b55a676..7e653ed687 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md @@ -8,7 +8,7 @@ ms.assetid: e53a77b7-825c-42d1-a655-90e1c93b833e --- # Compiler Error C2734 -'identifier' : const object must be initialized if not extern +> 'identifier' : const object must be initialized if not extern The identifier is declared **`const`** but not initialized or **`extern`**. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md index c3549dc46d..008da716a8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md @@ -8,7 +8,7 @@ ms.assetid: 6ce45600-7148-4bc0-8699-af0ef137571e --- # Compiler Error C2735 -'keyword' keyword is not permitted in formal parameter type specifier +> 'keyword' keyword is not permitted in formal parameter type specifier The keyword is invalid in this context. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md index b013580668..1efa45e48e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md @@ -8,7 +8,7 @@ ms.assetid: 95a6bc28-c0cb-49dc-87e6-e993dbbba881 --- # Compiler Error C2736 -'keyword' keyword is not permitted in cast +> 'keyword' keyword is not permitted in cast The keyword is invalid in a cast. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md index b640ef4a01..5a0c689bf8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md @@ -8,7 +8,7 @@ ms.assetid: 896b4640-1ee0-4cd8-9910-de3efa30006a --- # Compiler Error C2738 -'declaration' : is ambiguous or is not a member of 'type' +> 'declaration' : is ambiguous or is not a member of 'type' A function was declared incorrectly. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md index 15c3f8b0ea..49025c6f19 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md @@ -8,7 +8,7 @@ ms.assetid: 5b63e435-7631-43d7-805e-f2adefb7e517 --- # Compiler Error C2739 -'number' : explicit managed or WinRT array dimensions must be between 1 and 32 +> 'number' : explicit managed or WinRT array dimensions must be between 1 and 32 An array dimension was not between 1 and 32. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md index 82d0b04f29..83b9c98068 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md @@ -8,7 +8,7 @@ ms.assetid: 644cd444-21d2-471d-a176-f5f52c5a0b73 --- # Compiler Error C2743 -'type' : cannot catch a native type with __clrcall destructor or copy constructor +> 'type' : cannot catch a native type with __clrcall destructor or copy constructor A module compiled with **/clr** attempted to catch an exception of native type and where the type's destructor or copy constructor uses `__clrcall` calling convention. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md index efa92f63c9..1fd02ee31e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md @@ -8,7 +8,7 @@ ms.assetid: a1c45f13-7667-4678-aa16-265304a449a1 --- # Compiler Error C2745 -'token' : this token cannot be converted to an identifier +> 'token' : this token cannot be converted to an identifier Identifiers must be comprised of legal characters. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md index df42079389..f398794448 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md @@ -8,7 +8,7 @@ ms.assetid: b63ac78b-a200-499c-afea-15af1a1e819e --- # Compiler Error C2748 -managed or WinRT array creation must have array size or array initializer +> managed or WinRT array creation must have array size or array initializer A managed or WinRT array was ill formed. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md index 293ce1aaab..9073cde5a8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md @@ -8,7 +8,7 @@ ms.assetid: a81aef36-cdca-4d78-89d5-b72eff2500b2 --- # Compiler Error C2749 -'type' : can only throw or catch handle to a managed class with /clr:safe +> 'type' : can only throw or catch handle to a managed class with /clr:safe When using **/clr:safe**, you can only throw or catch a reference type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md index f38c917907..b1ba0909d0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md @@ -8,7 +8,7 @@ ms.assetid: 30450034-feb5-448c-9655-b8c5f3639695 --- # Compiler Error C2750 -'type' : cannot use 'new' on the reference type; use 'gcnew' instead +> 'type' : cannot use 'new' on the reference type; use 'gcnew' instead To create an instance of a CLR type, which causes the instance to be placed on the garbage-collected heap, you must use [gcnew](../../extensions/ref-new-gcnew-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md index 6a466cdf6a..2dc760cb0e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2751"] --- # Compiler Error C2751 -'parameter' : the name of a function parameter cannot be qualified +> 'parameter' : the name of a function parameter cannot be qualified You cannot use a qualified name as a function parameter. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md index 62770f9602..cc224302cf 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md @@ -8,7 +8,7 @@ ms.assetid: ae42b3ec-84a9-4e9d-8d59-3d208132d0b2 --- # Compiler Error C2752 -'template' : more than one partial specialization matches the template argument list +> 'template' : more than one partial specialization matches the template argument list An instantiation was ambiguous. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md index ba0897b0d1..ad73979605 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md @@ -8,7 +8,7 @@ ms.assetid: 92bfeeac-524a-4a8e-9a4f-fb8269055826 --- # Compiler Error C2753 -'*template*' : partial specialization cannot match argument list for primary template +> '*template*' : partial specialization cannot match argument list for primary template If the template argument list matches the parameter list, the compiler treats it as the same template. Defining the same template twice is not allowed. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md index fafd439fa4..ff0a83a399 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md @@ -8,7 +8,7 @@ ms.assetid: 1cab66c5-da9d-4b81-b7fb-9cdc48ff1ccc --- # Compiler Error C2754 -'specialization' : a partial specialization cannot have a dependent non-type template parameter +> 'specialization' : a partial specialization cannot have a dependent non-type template parameter An attempt was made to partially specialize a template class that has a dependent non-type template parameter. This is not allowed. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md index 99a5290a5f..6c9f435c92 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md @@ -8,7 +8,7 @@ ms.assetid: 8ee4eeb6-4757-4efe-9100-38ff4a96f1de --- # Compiler Error C2755 -'param' : non-type parameter of a partial specialization must be a simple identifier +> 'param' : non-type parameter of a partial specialization must be a simple identifier The non-type parameter needs to be a simple identifier, something the compiler can resolve at compile time to a single identifier or a constant value. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md index 429fa87ea1..b4cac8973f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md @@ -8,7 +8,7 @@ ms.assetid: 42eb988d-4043-4dee-8fd4-596949f69a55 --- # Compiler Error C2756 -'template type' : default template arguments not allowed on a partial specialization +> 'template type' : default template arguments not allowed on a partial specialization The template for a partial specialization may not contain a default argument. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md index 5a863c1b73..96e1413bcc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md @@ -8,7 +8,7 @@ ms.assetid: 421f102f-8a32-4d47-a109-811ddf2c909d --- # Compiler Error C2757 -'symbol' : a symbol with this name already exists and therefore this name cannot be used as a namespace name +> 'symbol' : a symbol with this name already exists and therefore this name cannot be used as a namespace name A symbol used in the current compilation as a namespace identifier is already being used in a referenced assembly. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md index 534c621993..0809685065 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2758"] --- # Compiler Error C2758 -'member': a member of reference type must be initialized +> 'member': a member of reference type must be initialized Compiler error C2758 is caused when the constructor does not initialize a member of reference type in an initializer list. The compiler leaves the member undefined. Reference member variables must initialized when declared or be given a value in the initialization list of the constructor. From 3054fccd4b920e9768c880d44a7d39a35f6e8aa3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 23:10:54 +0800 Subject: [PATCH 954/981] Add "Remarks" and "Example" headings for error references in range [C2731, C2760] --- docs/error-messages/compiler-errors-2/compiler-error-c2731.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2732.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2733.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2734.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2735.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2736.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2738.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2739.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2743.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2745.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2748.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2749.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2750.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2751.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2752.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2753.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2754.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2755.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2756.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2757.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2758.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2760.md | 2 +- 22 files changed, 75 insertions(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md index eed56b56a8..7452dc6319 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md @@ -10,8 +10,12 @@ ms.assetid: 9b563999-febd-4582-9147-f355083c091e > 'identifier' : function cannot be overloaded +## Remarks + The functions `main`, `WinMain`, `DllMain`, and `LibMain` cannot be overloaded. +## Example + The following sample generates C2731: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md index b4453ea4c3..2a75b2fe7a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md @@ -10,6 +10,8 @@ ms.assetid: 01b7ad2c-93cf-456f-a4c0-c5f2fdc7c07c > linkage specification contradicts earlier specification for 'function' +## Remarks + The function is already declared with a different linkage specifier. This error can be caused by include files with different linkage specifiers. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md index 03a7ae6bf2..b4fc45f5eb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md @@ -10,6 +10,8 @@ ms.assetid: 67f83561-c633-407c-a2ee-f9fd16e165bf > you cannot overload a function with 'C' linkage +## Remarks + More than one overloaded function is declared with `extern "C"` linkage. When using `"C"` linkage, only one form of a specified function can be external. Since overloaded functions have the same undecorated name, they can't be used with C programs. This error may occur after an upgrade because of conformance changes in Visual Studio 2019. Starting in Visual Studio 2019 version 16.3, the [`/Zc:externC-`](../../build/reference/zc-externc.md) compiler option relaxes this check. The option must come after any [`/permissive-`](../../build/reference/permissive-standards-conformance.md) option on the command line. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md index 7e653ed687..2806335ae6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md @@ -10,8 +10,12 @@ ms.assetid: e53a77b7-825c-42d1-a655-90e1c93b833e > 'identifier' : const object must be initialized if not extern +## Remarks + The identifier is declared **`const`** but not initialized or **`extern`**. +## Example + The following sample generates C2734: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md index 008da716a8..fcaab3f1e2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md @@ -10,8 +10,12 @@ ms.assetid: 6ce45600-7148-4bc0-8699-af0ef137571e > 'keyword' keyword is not permitted in formal parameter type specifier +## Remarks + The keyword is invalid in this context. +## Example + The following sample generates C2735: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md index 1efa45e48e..db2c66c0d5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md @@ -10,8 +10,12 @@ ms.assetid: 95a6bc28-c0cb-49dc-87e6-e993dbbba881 > 'keyword' keyword is not permitted in cast +## Remarks + The keyword is invalid in a cast. +## Example + The following sample generates C2736: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md index 5a0c689bf8..14f992ad73 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md @@ -10,8 +10,12 @@ ms.assetid: 896b4640-1ee0-4cd8-9910-de3efa30006a > 'declaration' : is ambiguous or is not a member of 'type' +## Remarks + A function was declared incorrectly. +## Example + The following sample generates C2738: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md index 49025c6f19..e663e146ba 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md @@ -10,8 +10,12 @@ ms.assetid: 5b63e435-7631-43d7-805e-f2adefb7e517 > 'number' : explicit managed or WinRT array dimensions must be between 1 and 32 +## Remarks + An array dimension was not between 1 and 32. +## Example + The following sample generates C2739 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md index 83b9c98068..1fd2bd3933 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md @@ -10,6 +10,8 @@ ms.assetid: 644cd444-21d2-471d-a176-f5f52c5a0b73 > 'type' : cannot catch a native type with __clrcall destructor or copy constructor +## Remarks + A module compiled with **/clr** attempted to catch an exception of native type and where the type's destructor or copy constructor uses `__clrcall` calling convention. When compiled with **/clr**, exception handling expects the member functions in a native type to be [__cdecl](../../cpp/cdecl.md) and not [__clrcall](../../cpp/clrcall.md). Native types with member functions using `__clrcall` calling convention cannot be caught in a module compiled with **/clr**. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md index 1fd02ee31e..5af41285bd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md @@ -10,8 +10,12 @@ ms.assetid: a1c45f13-7667-4678-aa16-265304a449a1 > 'token' : this token cannot be converted to an identifier +## Remarks + Identifiers must be comprised of legal characters. +## Example + The following sample generates C2745: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md index f398794448..9c70e234df 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md @@ -10,8 +10,12 @@ ms.assetid: b63ac78b-a200-499c-afea-15af1a1e819e > managed or WinRT array creation must have array size or array initializer +## Remarks + A managed or WinRT array was ill formed. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md). +## Example + The following sample generates C2748 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md index 9073cde5a8..332bc762dd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md @@ -10,6 +10,8 @@ ms.assetid: a81aef36-cdca-4d78-89d5-b72eff2500b2 > 'type' : can only throw or catch handle to a managed class with /clr:safe +## Remarks + When using **/clr:safe**, you can only throw or catch a reference type. For more information, see [/clr (Common Language Runtime Compilation)](../../build/reference/clr-common-language-runtime-compilation.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md index b1ba0909d0..2a13bf39c5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md @@ -10,8 +10,12 @@ ms.assetid: 30450034-feb5-448c-9655-b8c5f3639695 > 'type' : cannot use 'new' on the reference type; use 'gcnew' instead +## Remarks + To create an instance of a CLR type, which causes the instance to be placed on the garbage-collected heap, you must use [gcnew](../../extensions/ref-new-gcnew-cpp-component-extensions.md). +## Example + The following sample generates C2750: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md index 2dc760cb0e..85220ac36f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2751"] > 'parameter' : the name of a function parameter cannot be qualified +## Remarks + You cannot use a qualified name as a function parameter. +## Example + The following sample generates C2751: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md index cc224302cf..8a3e8e78d9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md @@ -10,8 +10,12 @@ ms.assetid: ae42b3ec-84a9-4e9d-8d59-3d208132d0b2 > 'template' : more than one partial specialization matches the template argument list +## Remarks + An instantiation was ambiguous. +## Example + The following sample generates C2752: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md index ad73979605..ddefd79b0f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md @@ -10,6 +10,8 @@ ms.assetid: 92bfeeac-524a-4a8e-9a4f-fb8269055826 > '*template*' : partial specialization cannot match argument list for primary template +## Remarks + If the template argument list matches the parameter list, the compiler treats it as the same template. Defining the same template twice is not allowed. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md index ff0a83a399..0d1a2204ad 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md @@ -10,8 +10,12 @@ ms.assetid: 1cab66c5-da9d-4b81-b7fb-9cdc48ff1ccc > 'specialization' : a partial specialization cannot have a dependent non-type template parameter +## Remarks + An attempt was made to partially specialize a template class that has a dependent non-type template parameter. This is not allowed. +## Example + The following sample generates C2754: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md index 6c9f435c92..5c1455ab07 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md @@ -10,8 +10,12 @@ ms.assetid: 8ee4eeb6-4757-4efe-9100-38ff4a96f1de > 'param' : non-type parameter of a partial specialization must be a simple identifier +## Remarks + The non-type parameter needs to be a simple identifier, something the compiler can resolve at compile time to a single identifier or a constant value. +## Example + The following sample generates C2755: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md index b4cac8973f..6e21f7d0dc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md @@ -10,8 +10,12 @@ ms.assetid: 42eb988d-4043-4dee-8fd4-596949f69a55 > 'template type' : default template arguments not allowed on a partial specialization +## Remarks + The template for a partial specialization may not contain a default argument. +## Example + The following sample generates C2756 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md index 96e1413bcc..c1de5fa31b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md @@ -10,8 +10,12 @@ ms.assetid: 421f102f-8a32-4d47-a109-811ddf2c909d > 'symbol' : a symbol with this name already exists and therefore this name cannot be used as a namespace name +## Remarks + A symbol used in the current compilation as a namespace identifier is already being used in a referenced assembly. +## Example + The following sample generates C2757: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md index 0809685065..63106491a7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2758"] > 'member': a member of reference type must be initialized +## Remarks + Compiler error C2758 is caused when the constructor does not initialize a member of reference type in an initializer list. The compiler leaves the member undefined. Reference member variables must initialized when declared or be given a value in the initialization list of the constructor. +## Example + The following sample generates C2758: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md index e33c5a9552..4a8aca5246 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md @@ -16,7 +16,7 @@ ms.assetid: 585757fd-d519-43f3-94e5-50316ac8b90b There are several ways to cause this error. Usually, it's caused by a token sequence that the compiler can't make sense of. -## Example +## Examples In this sample, a casting operator is used with an invalid operator. From 5a9e42e97c11e2d2540da7f7ab97535b99ee24bf Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 23:12:20 +0800 Subject: [PATCH 955/981] Replace term "sample" with "example" for error references in range [C2731, C2760] --- docs/error-messages/compiler-errors-2/compiler-error-c2731.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2732.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2733.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2734.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2735.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2736.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2738.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2739.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2743.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2745.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2748.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2749.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2750.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2751.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2752.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2753.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2754.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2755.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2756.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2757.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2758.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2760.md | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md index 7452dc6319..2a666957af 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md @@ -16,7 +16,7 @@ The functions `main`, `WinMain`, `DllMain`, and `LibMain` cannot be overloaded. ## Example -The following sample generates C2731: +The following example generates C2731: ```cpp // C2731.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md index 2a75b2fe7a..b735900309 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md @@ -20,7 +20,7 @@ To fix this error, change the **`extern`** statements so that the linkages agree ## Example -The following sample generates C2732: +The following example generates C2732: ```cpp // C2732.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md index b4fc45f5eb..66e1c979cb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md @@ -18,7 +18,7 @@ This error may occur after an upgrade because of conformance changes in Visual S ## Example -The following sample generates C2733: +The following example generates C2733: ```cpp // C2733.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md index 2806335ae6..c729dec5b6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md @@ -16,7 +16,7 @@ The identifier is declared **`const`** but not initialized or **`extern`**. ## Example -The following sample generates C2734: +The following example generates C2734: ```cpp // C2734.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md index fcaab3f1e2..a66fe52c51 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md @@ -16,7 +16,7 @@ The keyword is invalid in this context. ## Example -The following sample generates C2735: +The following example generates C2735: ```cpp // C2735.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md index db2c66c0d5..24d47588a1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md @@ -16,7 +16,7 @@ The keyword is invalid in a cast. ## Example -The following sample generates C2736: +The following example generates C2736: ```cpp // C2736.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md index 14f992ad73..a5a05f1c14 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md @@ -16,7 +16,7 @@ A function was declared incorrectly. ## Example -The following sample generates C2738: +The following example generates C2738: ```cpp // C2738.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md index e663e146ba..1b88c544ed 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md @@ -16,7 +16,7 @@ An array dimension was not between 1 and 32. ## Example -The following sample generates C2739 and shows how to fix it: +The following example generates C2739 and shows how to fix it: ```cpp // C2739.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md index 1fd2bd3933..61036f4a2f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md @@ -20,7 +20,7 @@ For more information, see [/clr (Common Language Runtime Compilation)](../../bui ## Example -The following sample generates C2743. +The following example generates C2743. ```cpp // C2743.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md index 5af41285bd..edcc728469 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md @@ -16,7 +16,7 @@ Identifiers must be comprised of legal characters. ## Example -The following sample generates C2745: +The following example generates C2745: ```cpp // C2745.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md index 9c70e234df..038fc55863 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md @@ -16,7 +16,7 @@ A managed or WinRT array was ill formed. For more information, see [array](../.. ## Example -The following sample generates C2748 and shows how to fix it: +The following example generates C2748 and shows how to fix it: ```cpp // C2748.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md index 332bc762dd..90a890f605 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md @@ -18,7 +18,7 @@ For more information, see [/clr (Common Language Runtime Compilation)](../../bui ## Example -The following sample generates C2749: +The following example generates C2749: ```cpp // C2749.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md index 2a13bf39c5..b88e10482a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md @@ -16,7 +16,7 @@ To create an instance of a CLR type, which causes the instance to be placed on t ## Example -The following sample generates C2750: +The following example generates C2750: ```cpp // C2750.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md index 85220ac36f..4727177cc8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md @@ -15,7 +15,7 @@ You cannot use a qualified name as a function parameter. ## Example -The following sample generates C2751: +The following example generates C2751: ```cpp // C2751.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md index 8a3e8e78d9..c21aa8ba3d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md @@ -16,7 +16,7 @@ An instantiation was ambiguous. ## Example -The following sample generates C2752: +The following example generates C2752: ```cpp // C2752.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md index ddefd79b0f..2413b20028 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md @@ -16,7 +16,7 @@ If the template argument list matches the parameter list, the compiler treats it ## Example -The following sample generates C2753 and shows a way to fix it: +The following example generates C2753 and shows a way to fix it: ```cpp // C2753.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md index 0d1a2204ad..291f6a75a3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md @@ -16,7 +16,7 @@ An attempt was made to partially specialize a template class that has a dependen ## Example -The following sample generates C2754: +The following example generates C2754: ```cpp // C2754.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md index 5c1455ab07..eaf3cff334 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md @@ -16,7 +16,7 @@ The non-type parameter needs to be a simple identifier, something the compiler c ## Example -The following sample generates C2755: +The following example generates C2755: ```cpp // C2755.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md index 6e21f7d0dc..60d1ee73ae 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md @@ -16,7 +16,7 @@ The template for a partial specialization may not contain a default argument. ## Example -The following sample generates C2756 and shows how to fix it: +The following example generates C2756 and shows how to fix it: ```cpp // C2756.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md index c1de5fa31b..c56b011f50 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md @@ -16,7 +16,7 @@ A symbol used in the current compilation as a namespace identifier is already be ## Example -The following sample generates C2757: +The following example generates C2757: ```cpp // C2757a.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md index 63106491a7..3b5c2bed46 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2758.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2758.md @@ -15,7 +15,7 @@ Compiler error C2758 is caused when the constructor does not initialize a member ## Example -The following sample generates C2758: +The following example generates C2758: ```cpp // C2758.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md index 4a8aca5246..c2a60c82c6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md @@ -18,7 +18,7 @@ There are several ways to cause this error. Usually, it's caused by a token sequ ## Examples -In this sample, a casting operator is used with an invalid operator. +In this example, a casting operator is used with an invalid operator. ```cpp // C2760.cpp From 7a644236eed0ed035c20c2a1f814fe52d1cfa4a8 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 6 Aug 2025 23:15:35 +0800 Subject: [PATCH 956/981] Update metadata for error references in range [C2731, C2760] --- .../error-messages/compiler-errors-2/compiler-error-c2731.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2732.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2733.md | 3 +-- .../error-messages/compiler-errors-2/compiler-error-c2734.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2735.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2736.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2738.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2739.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2743.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2745.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2748.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2749.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2750.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2751.md | 4 ++-- .../error-messages/compiler-errors-2/compiler-error-c2752.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2753.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2754.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2755.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2756.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2757.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2760.md | 3 +-- 21 files changed, 40 insertions(+), 60 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md index 2a666957af..beb1635390 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2731.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2731.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2731" title: "Compiler Error C2731" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2731" +ms.date: 11/04/2016 f1_keywords: ["C2731"] helpviewer_keywords: ["C2731"] -ms.assetid: 9b563999-febd-4582-9147-f355083c091e --- # Compiler Error C2731 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md index b735900309..6984e65b41 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2732.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2732.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2732" title: "Compiler Error C2732" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2732" +ms.date: 11/04/2016 f1_keywords: ["C2732"] helpviewer_keywords: ["C2732"] -ms.assetid: 01b7ad2c-93cf-456f-a4c0-c5f2fdc7c07c --- # Compiler Error C2732 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md index 66e1c979cb..ba6d27d475 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2733.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2733.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2733" title: "Compiler Error C2733" +description: "Learn more about: Compiler Error C2733" ms.date: 12/02/2021 f1_keywords: ["C2733"] helpviewer_keywords: ["C2733"] -ms.assetid: 67f83561-c633-407c-a2ee-f9fd16e165bf --- # Compiler Error C2733 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md index c729dec5b6..c11247bd75 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2734.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2734.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2734" title: "Compiler Error C2734" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2734" +ms.date: 11/04/2016 f1_keywords: ["C2734"] helpviewer_keywords: ["C2734"] -ms.assetid: e53a77b7-825c-42d1-a655-90e1c93b833e --- # Compiler Error C2734 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md index a66fe52c51..91def172aa 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2735.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2735.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2735" title: "Compiler Error C2735" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2735" +ms.date: 11/04/2016 f1_keywords: ["C2735"] helpviewer_keywords: ["C2735"] -ms.assetid: 6ce45600-7148-4bc0-8699-af0ef137571e --- # Compiler Error C2735 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md index 24d47588a1..a17c5de2ad 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2736.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2736.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2736" title: "Compiler Error C2736" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2736" +ms.date: 11/04/2016 f1_keywords: ["C2736"] helpviewer_keywords: ["C2736"] -ms.assetid: 95a6bc28-c0cb-49dc-87e6-e993dbbba881 --- # Compiler Error C2736 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md index a5a05f1c14..4eeec6e77a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2738.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2738.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2738" title: "Compiler Error C2738" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2738" +ms.date: 11/04/2016 f1_keywords: ["C2738"] helpviewer_keywords: ["C2738"] -ms.assetid: 896b4640-1ee0-4cd8-9910-de3efa30006a --- # Compiler Error C2738 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md index 1b88c544ed..3125f5102b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2739.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2739.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2739" title: "Compiler Error C2739" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2739" +ms.date: 11/04/2016 f1_keywords: ["C2739"] helpviewer_keywords: ["C2739"] -ms.assetid: 5b63e435-7631-43d7-805e-f2adefb7e517 --- # Compiler Error C2739 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md index 61036f4a2f..0f2118ff29 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2743.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2743.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2743" title: "Compiler Error C2743" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2743" +ms.date: 11/04/2016 f1_keywords: ["C2743"] helpviewer_keywords: ["C2743"] -ms.assetid: 644cd444-21d2-471d-a176-f5f52c5a0b73 --- # Compiler Error C2743 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md index edcc728469..4fbbf13bcc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2745.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2745.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2745" title: "Compiler Error C2745" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2745" +ms.date: 11/04/2016 f1_keywords: ["C2745"] helpviewer_keywords: ["C2745"] -ms.assetid: a1c45f13-7667-4678-aa16-265304a449a1 --- # Compiler Error C2745 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md index 038fc55863..c7a99b6794 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2748.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2748.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2748" title: "Compiler Error C2748" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2748" +ms.date: 11/04/2016 f1_keywords: ["C2748"] helpviewer_keywords: ["C2748"] -ms.assetid: b63ac78b-a200-499c-afea-15af1a1e819e --- # Compiler Error C2748 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md index 90a890f605..c2bc309d83 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2749.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2749.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2749" title: "Compiler Error C2749" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2749" +ms.date: 11/04/2016 f1_keywords: ["C2749"] helpviewer_keywords: ["C2749"] -ms.assetid: a81aef36-cdca-4d78-89d5-b72eff2500b2 --- # Compiler Error C2749 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md index b88e10482a..55899400da 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2750.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2750.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2750" title: "Compiler Error C2750" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2750" +ms.date: 11/04/2016 f1_keywords: ["C2750"] helpviewer_keywords: ["C2750"] -ms.assetid: 30450034-feb5-448c-9655-b8c5f3639695 --- # Compiler Error C2750 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md index 4727177cc8..ef7c77075c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2751.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2751.md @@ -1,7 +1,7 @@ --- -description: "Learn more about: Compiler Error C2751" title: "Compiler Error C2751" -ms.date: "03/11/2024" +description: "Learn more about: Compiler Error C2751" +ms.date: 03/11/2024 f1_keywords: ["C2751"] helpviewer_keywords: ["C2751"] --- diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md index c21aa8ba3d..5c0d2337ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2752.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2752.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2752" title: "Compiler Error C2752" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2752" +ms.date: 11/04/2016 f1_keywords: ["C2752"] helpviewer_keywords: ["C2752"] -ms.assetid: ae42b3ec-84a9-4e9d-8d59-3d208132d0b2 --- # Compiler Error C2752 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md index 2413b20028..9f68e28261 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2753.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2753.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2753" title: "Compiler Error C2753" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2753" +ms.date: 11/04/2016 f1_keywords: ["C2753"] helpviewer_keywords: ["C2753"] -ms.assetid: 92bfeeac-524a-4a8e-9a4f-fb8269055826 --- # Compiler Error C2753 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md index 291f6a75a3..8b391baaa3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2754.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2754.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2754" title: "Compiler Error C2754" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2754" +ms.date: 11/04/2016 f1_keywords: ["C2754"] helpviewer_keywords: ["C2754"] -ms.assetid: 1cab66c5-da9d-4b81-b7fb-9cdc48ff1ccc --- # Compiler Error C2754 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md index eaf3cff334..adabdd70a8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2755.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2755.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2755" title: "Compiler Error C2755" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2755" +ms.date: 11/04/2016 f1_keywords: ["C2755"] helpviewer_keywords: ["C2755"] -ms.assetid: 8ee4eeb6-4757-4efe-9100-38ff4a96f1de --- # Compiler Error C2755 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md index 60d1ee73ae..5f7089c236 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2756.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2756.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2756" title: "Compiler Error C2756" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2756" +ms.date: 11/04/2016 f1_keywords: ["C2756"] helpviewer_keywords: ["C2756"] -ms.assetid: 42eb988d-4043-4dee-8fd4-596949f69a55 --- # Compiler Error C2756 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md index c56b011f50..a759aa5196 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2757.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2757.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2757" title: "Compiler Error C2757" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2757" +ms.date: 11/04/2016 f1_keywords: ["C2757"] helpviewer_keywords: ["C2757"] -ms.assetid: 421f102f-8a32-4d47-a109-811ddf2c909d --- # Compiler Error C2757 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md index c2a60c82c6..619d63d8c4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2760.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2760.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2760" title: "Compiler Error C2760" +description: "Learn more about: Compiler Error C2760" ms.date: 08/12/2021 f1_keywords: ["C2760"] helpviewer_keywords: ["C2760"] -ms.assetid: 585757fd-d519-43f3-94e5-50316ac8b90b --- # Compiler Error C2760 From 9bd2af9151433a3394715456dd263ae52f731c81 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:04:16 +0800 Subject: [PATCH 957/981] Resolve invalid type `Int` in syntax references --- docs/cpp/com-ptr-t-relational-operators.md | 4 ++-- docs/mfc/reference/cmfcribboncombobox-class.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cpp/com-ptr-t-relational-operators.md b/docs/cpp/com-ptr-t-relational-operators.md index 37ebee5979..24b6a8c927 100644 --- a/docs/cpp/com-ptr-t-relational-operators.md +++ b/docs/cpp/com-ptr-t-relational-operators.md @@ -33,7 +33,7 @@ bool operator==( const _com_ptr_t& p ) throw(); template<> bool operator==( _com_ptr_t& p ) throw(); -bool operator==( Int null ); +bool operator==( int null ); template bool operator!=( const _com_ptr_t<_OtherIID>& p ); @@ -44,7 +44,7 @@ bool operator!=( _com_ptr_t<_OtherIID>& p ); template bool operator!=( _InterfaceType* p ); -bool operator!=( Int null ); +bool operator!=( int null ); template bool operator<( const _com_ptr_t<_OtherIID>& p ); diff --git a/docs/mfc/reference/cmfcribboncombobox-class.md b/docs/mfc/reference/cmfcribboncombobox-class.md index 91d6fe19fa..6ec436875f 100644 --- a/docs/mfc/reference/cmfcribboncombobox-class.md +++ b/docs/mfc/reference/cmfcribboncombobox-class.md @@ -102,9 +102,9 @@ public: CMFCRibbonComboBox( UINT nID, BOOL bHasEditBox=TRUE, - Int nWidth=-1, + int nWidth=-1, LPCTSTR lpszLabel=NULL, - Int nImage=-1); + int nImage=-1); protected: CMFCRibbonComboBox(); From 849b46889ff08ee285654df4b55a7de65cd0ab77 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:04:45 +0800 Subject: [PATCH 958/981] Update metadata in 2 topics --- docs/cpp/com-ptr-t-relational-operators.md | 5 ++--- docs/mfc/reference/cmfcribboncombobox-class.md | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/cpp/com-ptr-t-relational-operators.md b/docs/cpp/com-ptr-t-relational-operators.md index 24b6a8c927..7101967bd2 100644 --- a/docs/cpp/com-ptr-t-relational-operators.md +++ b/docs/cpp/com-ptr-t-relational-operators.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: _com_ptr_t Relational Operators" title: "_com_ptr_t Relational Operators" -ms.date: "11/04/2016" +description: "Learn more about: _com_ptr_t Relational Operators" +ms.date: 11/04/2016 f1_keywords: ["_com_ptr_t::operator>", "_com_ptr_t::operator>=", "_com_ptr_t::operator<=", "_com_ptr_t::operator==", "_com_ptr_t::operator!=", "_com_ptr_t::operator<"] helpviewer_keywords: [">= operator [C++], comparing specific objects", "!= operator", "operator > [C++], pointers", "operator>= [C++], pointers", "operator < [C++], pointers", "operator!= [C++], relational operators", "< operator [C++], comparing specific objects", "operator== [C++], pointers", "operator == [C++], pointers", "<= operator [C++], with specific objects", "relational operators [C++], _com_ptr_t class", "operator >= [C++], pointers", "operator != [C++], relational operators", "operator <= [C++], pointers", "> operator [C++], comparing specific objects", "operator<= [C++], pointers", "operator< [C++], pointers", "== operator [C++], with specific Visual C++ objects"] -ms.assetid: 5ae4028c-33ee-485d-bbda-88d2604d6d4b --- # _com_ptr_t Relational Operators diff --git a/docs/mfc/reference/cmfcribboncombobox-class.md b/docs/mfc/reference/cmfcribboncombobox-class.md index 6ec436875f..8c68550f07 100644 --- a/docs/mfc/reference/cmfcribboncombobox-class.md +++ b/docs/mfc/reference/cmfcribboncombobox-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: CMFCRibbonComboBox Class" title: "CMFCRibbonComboBox Class" -ms.date: "11/04/2016" +description: "Learn more about: CMFCRibbonComboBox Class" +ms.date: 11/04/2016 f1_keywords: ["CMFCRibbonComboBox", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::CMFCRibbonComboBox", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::AddItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::DeleteItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::EnableDropDownListResize", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::FindItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetCount", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetCurSel", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetDropDownHeight", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetIntermediateSize", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::GetItemData", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::HasEditBox", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::IsResizeDropDownList", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::OnSelectItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::RemoveAllItems", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::SelectItem", "AFXRIBBONCOMBOBOX/CMFCRibbonComboBox::SetDropDownHeight"] helpviewer_keywords: ["CMFCRibbonComboBox [MFC], CMFCRibbonComboBox", "CMFCRibbonComboBox [MFC], AddItem", "CMFCRibbonComboBox [MFC], DeleteItem", "CMFCRibbonComboBox [MFC], EnableDropDownListResize", "CMFCRibbonComboBox [MFC], FindItem", "CMFCRibbonComboBox [MFC], GetCount", "CMFCRibbonComboBox [MFC], GetCurSel", "CMFCRibbonComboBox [MFC], GetDropDownHeight", "CMFCRibbonComboBox [MFC], GetIntermediateSize", "CMFCRibbonComboBox [MFC], GetItem", "CMFCRibbonComboBox [MFC], GetItemData", "CMFCRibbonComboBox [MFC], HasEditBox", "CMFCRibbonComboBox [MFC], IsResizeDropDownList", "CMFCRibbonComboBox [MFC], OnSelectItem", "CMFCRibbonComboBox [MFC], RemoveAllItems", "CMFCRibbonComboBox [MFC], SelectItem", "CMFCRibbonComboBox [MFC], SetDropDownHeight"] -ms.assetid: 9b29a6a4-cf17-4152-9b13-0bf90784b30d --- # CMFCRibbonComboBox Class From ba9902739eeaaa20c3ecb4f709c029356ccf5731 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 23:13:20 +0800 Subject: [PATCH 959/981] Add blockquotes for error messages in range [C2761, C2790] --- docs/error-messages/compiler-errors-2/compiler-error-c2761.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2762.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2764.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2765.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2766.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2767.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2770.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2771.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2773.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2774.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2775.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2776.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2777.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2778.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2779.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2780.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2781.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2782.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2783.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2784.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2785.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2786.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2787.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2788.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2790.md | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md index 1e8e60e233..b96797f41f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md @@ -8,7 +8,7 @@ ms.assetid: 38c79a05-b56d-485b-820f-95e8c0cb926f --- # Compiler Error C2761 -'function' : member function redeclaration not allowed +> 'function' : member function redeclaration not allowed You cannot redeclare a member function. You can define it, but not redeclare it. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md index 6b64d52ba5..83aa82101f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md @@ -8,7 +8,7 @@ ms.assetid: 8b81a801-fd48-40a1-8bee-0748795b12e4 --- # Compiler Error C2762 -'class' : invalid expression as a template argument for 'argument' +> 'class' : invalid expression as a template argument for 'argument' When using [/Za](../../build/reference/za-ze-disable-language-extensions.md), the compiler will not convert an integral to a pointer. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md index cc1c8e9494..da4a5f0259 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md @@ -8,7 +8,7 @@ ms.assetid: 3754f5af-e094-4425-be20-d0c9a9b5baec --- # Compiler Error C2764 -'param' : template parameter not used or deducible in partial specialization 'specialization' +> 'param' : template parameter not used or deducible in partial specialization 'specialization' A template parameter is not used in a partial specialization. This makes the partial specialization unusable because the template parameter cannot be deduced. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md index 08850d7647..5a653696ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C2765"] --- # Compiler Error C2765 -'function' : an explicit specialization of a function template cannot have any default arguments +> 'function' : an explicit specialization of a function template cannot have any default arguments Default arguments are not allowed on an explicit specialization of a function template. For more information, see [Explicit Specialization of Function Templates](../../cpp/explicit-specialization-of-function-templates.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md index 765ffaba7d..4a5d32492a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md @@ -8,7 +8,7 @@ ms.assetid: 8032f4ca-6827-4f04-9c61-c44643c85cc4 --- # Compiler Error C2766 -explicit specialization; 'specialization' has already been defined +> explicit specialization; 'specialization' has already been defined Duplicate explicit specializations are not allowed. For more information, see [Explicit Specialization of Function Templates](../../cpp/explicit-specialization-of-function-templates.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md index 0e37e78340..617f7bc801 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md @@ -8,7 +8,7 @@ ms.assetid: e8f84178-a160-4d71-a236-07e4fcc11e96 --- # Compiler Error C2767 -managed or WinRTarray dimension mismatch : expected N argument(s) - M provided +> managed or WinRTarray dimension mismatch : expected N argument(s) - M provided A managed or WinRT array declaration was ill formed. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md index 93734f5356..791dca1d75 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md @@ -8,7 +8,7 @@ ms.assetid: 100001b5-80b0-4971-8ff6-9023f443c926 --- # Compiler Error C2770 -invalid explicit template_or_generic argument(s) for 'template' +> invalid explicit template_or_generic argument(s) for 'template' Function template candidates with explicit template or generic arguments resulted in disallowed function types. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md index f6d00ce5b5..78a985a4c7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md @@ -8,6 +8,6 @@ ms.assetid: b649cc9f-7cbc-4b42-a5e8-51dad5c55e4b --- # Compiler Error C2771 -\#import only permitted at global or namespace scope +> #import only permitted at global or namespace scope The `#import` directive is not allowed in, for example, a function or structure. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md index a5269df8cb..b6bf105936 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md @@ -8,6 +8,6 @@ ms.assetid: 8d564b26-1623-4d92-aabc-dff33f7b1145 --- # Compiler Error C2773 -\#import and #using available only in C++ compiler +> #import and #using available only in C++ compiler The C compiler does not recognize the `#import` preprocessor directive. Compile the source as C++. Use [/TP](../../build/reference/tc-tp-tc-tp-specify-source-file-type.md) if necessary. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md index 83bb2f1f57..105c1bad50 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md @@ -8,7 +8,7 @@ ms.assetid: 10f428c6-7f49-489a-92ba-6ef978b7caaf --- # Compiler Error C2774 -'identifier' : no 'put' method is associated with this property +> 'identifier' : no 'put' method is associated with this property A data member declared with [property](../../cpp/property-cpp.md) has no `put` function, but an expression tries to set its value. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md index 0997247f83..efd84ad276 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md @@ -8,7 +8,7 @@ ms.assetid: 9c488508-ade0-48f1-b94f-d538d15f807a --- # Compiler Error C2775 -'identifier' : no 'get' method is associated with this property +> 'identifier' : no 'get' method is associated with this property A data member declared with the [property](../../cpp/property-cpp.md) extended attribute does not have a `get` function specified, but an expression tries to retrieve its value. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md index 9414508043..259e19ea59 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md @@ -8,7 +8,7 @@ ms.assetid: 9d80addc-62c7-40fc-a2cc-60303abb87df --- # Compiler Error C2776 -only one 'get' method can be specified per property +> only one 'get' method can be specified per property You can only specify one `get` function in the [property](../../cpp/property-cpp.md) extended attribute. This error occurs when multiple `get` functions are specified. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md index cff4aef538..886e7579f5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md @@ -8,7 +8,7 @@ ms.assetid: 5fe158c0-2a65-488a-aca2-61d4a8b32d43 --- # Compiler Error C2777 -only one 'put' method can be specified per property +> only one 'put' method can be specified per property A [property](../../cpp/property-cpp.md) declspec modifier had more than one `put` property. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md index febe7f24c8..7f6739f358 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md @@ -8,7 +8,7 @@ ms.assetid: b24cb732-2914-42cc-8928-e2d87b393428 --- # Compiler Error C2778 -improperly formed GUID in __declspec(uuid()) +> improperly formed GUID in __declspec(uuid()) An incorrect GUID is supplied to the [uuid](../../cpp/uuid-cpp.md) extended attribute. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md index a5cceba3ae..881ec6e458 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md @@ -8,7 +8,7 @@ ms.assetid: 4a00e492-855a-41f3-8a18-5f60ee20c2f2 --- # Compiler Error C2779 -'declaration' : property methods can only be associated with non-static data members +> 'declaration' : property methods can only be associated with non-static data members The **`property`** extended attribute is incorrectly applied to a static data member. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md index e1d639ffdf..8d8ee7ae9e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md @@ -8,7 +8,7 @@ ms.assetid: 423793d8-a3b2-4f35-85f8-ae1d043e2b69 --- # Compiler Error C2780 -'declaration' : expects N arguments - M provided +> 'declaration' : expects N arguments - M provided A function template has too few or too many arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md index e7ac58ef5a..2d0e2b2b8e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md @@ -8,7 +8,7 @@ ms.assetid: f29b9963-f55b-427c-8db6-50f37713df5a --- # Compiler Error C2781 -'declaration' : expects at least value1 argument - value2 provided +> 'declaration' : expects at least value1 argument - value2 provided A function template with a variable parameter list has too few arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md index 0b25340147..a9cb848143 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md @@ -8,7 +8,7 @@ ms.assetid: 8b685422-294d-4f64-9f3d-c14eaf03a93d --- # Compiler Error C2782 -'declaration' : template parameter 'identifier' is ambiguous +> 'declaration' : template parameter 'identifier' is ambiguous The compiler cannot determine the type of a template argument. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md index c44ff86dbb..764f2d72f7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md @@ -8,7 +8,7 @@ ms.assetid: 1ce94a11-bb8b-4be3-a222-f1f105da74b3 --- # Compiler Error C2783 -'declaration' : could not deduce template argument for 'identifier' +> 'declaration' : could not deduce template argument for 'identifier' The compiler cannot determine a template argument. Default arguments cannot be used to deduce a template argument. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md index a8b82581e8..9c1052a9bd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md @@ -8,7 +8,7 @@ ms.assetid: 3d761fe2-881c-48bd-afae-e2e714e20473 --- # Compiler Error C2784 -'declaration' : could not deduce template argument for 'type' from 'type' +> 'declaration' : could not deduce template argument for 'type' from 'type' The compiler cannot determine a template argument from the supplied function arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md index db69f33c9f..f93d675198 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md @@ -8,7 +8,7 @@ ms.assetid: d8d13360-0d00-4815-8475-b49c7f0dc0f3 --- # Compiler Error C2785 -'declaration1' and 'declaration2' have different return types +> 'declaration1' and 'declaration2' have different return types The return type of function template specialization differs from the return type of the primary function template. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md index f8befff1ee..55e73a6493 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md @@ -8,7 +8,7 @@ ms.assetid: 6676d8c0-86dd-4a39-bdda-b75a35f4d137 --- # Compiler Error C2786 -'type' : invalid operand for __uuidof +> 'type' : invalid operand for __uuidof The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. Possible causes: diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md index f6e3c1e6f5..1936e4201b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md @@ -8,7 +8,7 @@ ms.assetid: 34cb57e6-cafe-4ce7-bcc6-53d194629bd0 --- # Compiler Error C2787 -'identifier' : no GUID has been associated with this object +> 'identifier' : no GUID has been associated with this object The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. This error occurs when the argument is a user-defined type with no GUID. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md index 688823ae54..9919fec7ce 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md @@ -8,7 +8,7 @@ ms.assetid: 8688fc5c-e652-43b4-b407-9c488c76f2db --- # Compiler Error C2788 -'identifier' : more than one GUID associated with this object +> 'identifier' : more than one GUID associated with this object The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. This error occurs when the argument is an object with multiple GUIDs. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md index 7fa8d57c9b..bbf6547442 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md @@ -8,7 +8,7 @@ ms.assetid: 38d4fce1-ba00-413d-8bc1-e8aa43d7bc1f --- # Compiler Error C2790 -'super' : this keyword can only be used within the body of class member function +> 'super' : this keyword can only be used within the body of class member function This error message appears if the user ever tries to uses the keyword [super](../../cpp/super.md) outside of the context of a member function. From 8cc9edd3907ba46352e6a118366293dd33996000 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 23:19:15 +0800 Subject: [PATCH 960/981] Add "Remarks" and "Example" headings for error references in range [C2761, C2790] --- docs/error-messages/compiler-errors-2/compiler-error-c2761.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2762.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2764.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2765.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2766.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2767.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2770.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2771.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2773.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2774.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2775.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2776.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2777.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2778.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2779.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2780.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2781.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2782.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2783.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2784.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2785.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c2786.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2787.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2788.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c2790.md | 4 ++++ 25 files changed, 90 insertions(+) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md index b96797f41f..4109c387e0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md @@ -10,6 +10,8 @@ ms.assetid: 38c79a05-b56d-485b-820f-95e8c0cb926f > 'function' : member function redeclaration not allowed +## Remarks + You cannot redeclare a member function. You can define it, but not redeclare it. ## Examples diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md index 83aa82101f..51e06ab18c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md @@ -10,8 +10,12 @@ ms.assetid: 8b81a801-fd48-40a1-8bee-0748795b12e4 > 'class' : invalid expression as a template argument for 'argument' +## Remarks + When using [/Za](../../build/reference/za-ze-disable-language-extensions.md), the compiler will not convert an integral to a pointer. +## Example + The following sample generates C2762: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md index da4a5f0259..1bc89ef44e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md @@ -10,6 +10,8 @@ ms.assetid: 3754f5af-e094-4425-be20-d0c9a9b5baec > 'param' : template parameter not used or deducible in partial specialization 'specialization' +## Remarks + A template parameter is not used in a partial specialization. This makes the partial specialization unusable because the template parameter cannot be deduced. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md index 5a653696ce..be918132f7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md @@ -9,8 +9,12 @@ helpviewer_keywords: ["C2765"] > 'function' : an explicit specialization of a function template cannot have any default arguments +## Remarks + Default arguments are not allowed on an explicit specialization of a function template. For more information, see [Explicit Specialization of Function Templates](../../cpp/explicit-specialization-of-function-templates.md). +## Example + The following sample generates C2765: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md index 4a5d32492a..ccbdafdd12 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md @@ -10,8 +10,12 @@ ms.assetid: 8032f4ca-6827-4f04-9c61-c44643c85cc4 > explicit specialization; 'specialization' has already been defined +## Remarks + Duplicate explicit specializations are not allowed. For more information, see [Explicit Specialization of Function Templates](../../cpp/explicit-specialization-of-function-templates.md). +## Example + The following sample generates C2766: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md index 617f7bc801..a94755dd97 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md @@ -10,8 +10,12 @@ ms.assetid: e8f84178-a160-4d71-a236-07e4fcc11e96 > managed or WinRTarray dimension mismatch : expected N argument(s) - M provided +## Remarks + A managed or WinRT array declaration was ill formed. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md). +## Example + The following sample generates C2767 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md index 791dca1d75..892cd7a855 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md @@ -10,8 +10,12 @@ ms.assetid: 100001b5-80b0-4971-8ff6-9023f443c926 > invalid explicit template_or_generic argument(s) for 'template' +## Remarks + Function template candidates with explicit template or generic arguments resulted in disallowed function types. +## Example + The following sample generates C2770: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md index 78a985a4c7..d31cf00eec 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md @@ -10,4 +10,6 @@ ms.assetid: b649cc9f-7cbc-4b42-a5e8-51dad5c55e4b > #import only permitted at global or namespace scope +## Remarks + The `#import` directive is not allowed in, for example, a function or structure. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md index b6bf105936..138dd245bb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md @@ -10,4 +10,6 @@ ms.assetid: 8d564b26-1623-4d92-aabc-dff33f7b1145 > #import and #using available only in C++ compiler +## Remarks + The C compiler does not recognize the `#import` preprocessor directive. Compile the source as C++. Use [/TP](../../build/reference/tc-tp-tc-tp-specify-source-file-type.md) if necessary. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md index 105c1bad50..2c53ed6f7d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md @@ -10,8 +10,12 @@ ms.assetid: 10f428c6-7f49-489a-92ba-6ef978b7caaf > 'identifier' : no 'put' method is associated with this property +## Remarks + A data member declared with [property](../../cpp/property-cpp.md) has no `put` function, but an expression tries to set its value. +## Example + The following sample generates C2774: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md index efd84ad276..5d09b2da00 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md @@ -10,8 +10,12 @@ ms.assetid: 9c488508-ade0-48f1-b94f-d538d15f807a > 'identifier' : no 'get' method is associated with this property +## Remarks + A data member declared with the [property](../../cpp/property-cpp.md) extended attribute does not have a `get` function specified, but an expression tries to retrieve its value. +## Example + The following sample generates C2775: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md index 259e19ea59..c7304738f2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md @@ -10,8 +10,12 @@ ms.assetid: 9d80addc-62c7-40fc-a2cc-60303abb87df > only one 'get' method can be specified per property +## Remarks + You can only specify one `get` function in the [property](../../cpp/property-cpp.md) extended attribute. This error occurs when multiple `get` functions are specified. +## Example + The following sample generates C2776: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md index 886e7579f5..89a896e7b4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md @@ -10,8 +10,12 @@ ms.assetid: 5fe158c0-2a65-488a-aca2-61d4a8b32d43 > only one 'put' method can be specified per property +## Remarks + A [property](../../cpp/property-cpp.md) declspec modifier had more than one `put` property. +## Example + The following sample generates C2777: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md index 7f6739f358..eb021823c2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md @@ -10,8 +10,12 @@ ms.assetid: b24cb732-2914-42cc-8928-e2d87b393428 > improperly formed GUID in __declspec(uuid()) +## Remarks + An incorrect GUID is supplied to the [uuid](../../cpp/uuid-cpp.md) extended attribute. +## Example + The GUID must be a string of hexadecimal numbers with the following format: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md index 881ec6e458..9fa794e8ff 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md @@ -10,8 +10,12 @@ ms.assetid: 4a00e492-855a-41f3-8a18-5f60ee20c2f2 > 'declaration' : property methods can only be associated with non-static data members +## Remarks + The **`property`** extended attribute is incorrectly applied to a static data member. +## Example + The following sample generates C2779: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md index 8d8ee7ae9e..8328124370 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md @@ -10,8 +10,12 @@ ms.assetid: 423793d8-a3b2-4f35-85f8-ae1d043e2b69 > 'declaration' : expects N arguments - M provided +## Remarks + A function template has too few or too many arguments. +## Example + The following sample generates C2780 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md index 2d0e2b2b8e..43c3b8d29f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md @@ -10,8 +10,12 @@ ms.assetid: f29b9963-f55b-427c-8db6-50f37713df5a > 'declaration' : expects at least value1 argument - value2 provided +## Remarks + A function template with a variable parameter list has too few arguments. +## Example + The following sample generates C2781: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md index a9cb848143..e2e4820ef1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md @@ -10,8 +10,12 @@ ms.assetid: 8b685422-294d-4f64-9f3d-c14eaf03a93d > 'declaration' : template parameter 'identifier' is ambiguous +## Remarks + The compiler cannot determine the type of a template argument. +## Examples + The following sample generates C2782: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md index 764f2d72f7..38aafbb8c4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md @@ -10,8 +10,12 @@ ms.assetid: 1ce94a11-bb8b-4be3-a222-f1f105da74b3 > 'declaration' : could not deduce template argument for 'identifier' +## Remarks + The compiler cannot determine a template argument. Default arguments cannot be used to deduce a template argument. +## Examples + The following sample generates C2783: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md index 9c1052a9bd..9805fb7257 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md @@ -10,8 +10,12 @@ ms.assetid: 3d761fe2-881c-48bd-afae-e2e714e20473 > 'declaration' : could not deduce template argument for 'type' from 'type' +## Remarks + The compiler cannot determine a template argument from the supplied function arguments. +## Example + The following sample generates C2784 and shows how to fix it: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md index f93d675198..feac08b5fe 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md @@ -10,6 +10,8 @@ ms.assetid: d8d13360-0d00-4815-8475-b49c7f0dc0f3 > 'declaration1' and 'declaration2' have different return types +## Remarks + The return type of function template specialization differs from the return type of the primary function template. ### To correct this error diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md index 55e73a6493..a10cb7d413 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md @@ -10,12 +10,16 @@ ms.assetid: 6676d8c0-86dd-4a39-bdda-b75a35f4d137 > 'type' : invalid operand for __uuidof +## Remarks + The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. Possible causes: 1. The argument is not a user-defined type. 1. **`__uuidof`** cannot extract the GUID from the argument. +## Example + The following sample generates C2786: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md index 1936e4201b..bbc7a22de7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md @@ -10,8 +10,12 @@ ms.assetid: 34cb57e6-cafe-4ce7-bcc6-53d194629bd0 > 'identifier' : no GUID has been associated with this object +## Remarks + The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. This error occurs when the argument is a user-defined type with no GUID. +## Example + The following sample generates C2787: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md index 9919fec7ce..c13088fb14 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md @@ -10,8 +10,12 @@ ms.assetid: 8688fc5c-e652-43b4-b407-9c488c76f2db > 'identifier' : more than one GUID associated with this object +## Remarks + The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type with a GUID attached or an object of such a user-defined type. This error occurs when the argument is an object with multiple GUIDs. +## Example + The following sample generates C2788: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md index bbf6547442..5b9a680a0b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md @@ -10,8 +10,12 @@ ms.assetid: 38d4fce1-ba00-413d-8bc1-e8aa43d7bc1f > 'super' : this keyword can only be used within the body of class member function +## Remarks + This error message appears if the user ever tries to uses the keyword [super](../../cpp/super.md) outside of the context of a member function. +## Example + The following sample generates C2790: ```cpp From 9099637fc15f53020cb2743cbf15c938706f3114 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 23:20:51 +0800 Subject: [PATCH 961/981] Replace term "sample" with "example" for error references in range [C2761, C2790] --- docs/error-messages/compiler-errors-2/compiler-error-c2761.md | 4 ++-- docs/error-messages/compiler-errors-2/compiler-error-c2762.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2764.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2765.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2766.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2767.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2768.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2770.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2774.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2775.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2776.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2777.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2778.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2779.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2780.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2781.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2782.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2783.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2784.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2785.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2786.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2787.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2788.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c2790.md | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md index 4109c387e0..63ae44b1da 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md @@ -16,7 +16,7 @@ You cannot redeclare a member function. You can define it, but not redeclare it. ## Examples -The following sample generates C2761. +The following example generates C2761. ```cpp // C2761.cpp @@ -29,7 +29,7 @@ void a::a; // C2761 void a::test; // C2761 ``` -Nonstatic members of a class or structure cannot be defined. The following sample generates C2761. +Nonstatic members of a class or structure cannot be defined. The following example generates C2761. ```cpp // C2761_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md index 51e06ab18c..7d5e0ae06c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md @@ -16,7 +16,7 @@ When using [/Za](../../build/reference/za-ze-disable-language-extensions.md), th ## Example -The following sample generates C2762: +The following example generates C2762: ```cpp // C2762.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md index 1bc89ef44e..3feffc1249 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md @@ -16,7 +16,7 @@ A template parameter is not used in a partial specialization. This makes the par ## Example -The following sample generates C2764: +The following example generates C2764: ```cpp // C2764.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md index be918132f7..46067a15fc 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2765.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2765.md @@ -15,7 +15,7 @@ Default arguments are not allowed on an explicit specialization of a function te ## Example -The following sample generates C2765: +The following example generates C2765: ```cpp // C2765.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md index ccbdafdd12..5b30a1aa0a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md @@ -16,7 +16,7 @@ Duplicate explicit specializations are not allowed. For more information, see [E ## Example -The following sample generates C2766: +The following example generates C2766: ```cpp // C2766.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md index a94755dd97..4482375489 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md @@ -16,7 +16,7 @@ A managed or WinRT array declaration was ill formed. For more information, see [ ## Example -The following sample generates C2767 and shows how to fix it: +The following example generates C2767 and shows how to fix it: ```cpp // C2767.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2768.md b/docs/error-messages/compiler-errors-2/compiler-error-c2768.md index c8ae01c2c0..64bed60ba9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2768.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2768.md @@ -18,7 +18,7 @@ This error was introduced in Visual Studio .NET 2003, as part of the compiler co ## Example -The following sample generates C2768: +The following example generates C2768: ```cpp // C2768.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md index 892cd7a855..f4124ec3b2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md @@ -16,7 +16,7 @@ Function template candidates with explicit template or generic arguments resulte ## Example -The following sample generates C2770: +The following example generates C2770: ```cpp // C2770.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md index 2c53ed6f7d..e68947b151 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md @@ -16,7 +16,7 @@ A data member declared with [property](../../cpp/property-cpp.md) has no `put` f ## Example -The following sample generates C2774: +The following example generates C2774: ```cpp // C2774.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md index 5d09b2da00..86834667cd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md @@ -16,7 +16,7 @@ A data member declared with the [property](../../cpp/property-cpp.md) extended a ## Example -The following sample generates C2775: +The following example generates C2775: ```cpp // C2775.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md index c7304738f2..5e18b92d1f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md @@ -16,7 +16,7 @@ You can only specify one `get` function in the [property](../../cpp/property-cpp ## Example -The following sample generates C2776: +The following example generates C2776: ```cpp // C2776.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md index 89a896e7b4..096cc46923 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md @@ -16,7 +16,7 @@ A [property](../../cpp/property-cpp.md) declspec modifier had more than one `put ## Example -The following sample generates C2777: +The following example generates C2777: ```cpp // C2777.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md index eb021823c2..4873bda099 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md @@ -27,7 +27,7 @@ struct __declspec(uuid("{00000000-0000-0000-0000-000000000000}")) B{}; The `uuid` extended attribute accepts strings recognized by [CLSIDFromString](/windows/win32/api/combaseapi/nf-combaseapi-clsidfromstring), with or without brace delimiters. -The following sample generates C2778: +The following example generates C2778: ```cpp // C2778b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md index 9fa794e8ff..6641f04745 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md @@ -16,7 +16,7 @@ The **`property`** extended attribute is incorrectly applied to a static data me ## Example -The following sample generates C2779: +The following example generates C2779: ```cpp // C2779.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md index 8328124370..6671fbd1b8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md @@ -16,7 +16,7 @@ A function template has too few or too many arguments. ## Example -The following sample generates C2780 and shows how to fix it: +The following example generates C2780 and shows how to fix it: ```cpp // C2780.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md index 43c3b8d29f..927f23387d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md @@ -16,7 +16,7 @@ A function template with a variable parameter list has too few arguments. ## Example -The following sample generates C2781: +The following example generates C2781: ```cpp // C2781.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md index e2e4820ef1..088e90a558 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md @@ -16,7 +16,7 @@ The compiler cannot determine the type of a template argument. ## Examples -The following sample generates C2782: +The following example generates C2782: ```cpp // C2782.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md index 38aafbb8c4..3e47e7fab4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md @@ -16,7 +16,7 @@ The compiler cannot determine a template argument. Default arguments cannot be u ## Examples -The following sample generates C2783: +The following example generates C2783: ```cpp // C2783.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md index 9805fb7257..56f8a2d465 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md @@ -16,7 +16,7 @@ The compiler cannot determine a template argument from the supplied function arg ## Example -The following sample generates C2784 and shows how to fix it: +The following example generates C2784 and shows how to fix it: ```cpp // C2784.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md index feac08b5fe..2ec516b957 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md @@ -20,7 +20,7 @@ The return type of function template specialization differs from the return type ## Example -The following sample generates C2785: +The following example generates C2785: ```cpp // C2785.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md index a10cb7d413..5170b1a656 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md @@ -20,7 +20,7 @@ The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type ## Example -The following sample generates C2786: +The following example generates C2786: ```cpp // C2786.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md index bbc7a22de7..ccfe3ba841 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md @@ -16,7 +16,7 @@ The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type ## Example -The following sample generates C2787: +The following example generates C2787: ```cpp // C2787.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md index c13088fb14..778d244d79 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md @@ -16,7 +16,7 @@ The [__uuidof](../../cpp/uuidof-operator.md) operator takes a user-defined type ## Example -The following sample generates C2788: +The following example generates C2788: ```cpp // C2788.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md index 5b9a680a0b..9226bdf4e0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md @@ -16,7 +16,7 @@ This error message appears if the user ever tries to uses the keyword [super](.. ## Example -The following sample generates C2790: +The following example generates C2790: ```cpp // C2790.cpp From b2cff3c6b1100ba9659596ddfae75a735e37e709 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 7 Aug 2025 23:24:42 +0800 Subject: [PATCH 962/981] Update metadata for error references in range [C2761, C2790] --- .../error-messages/compiler-errors-2/compiler-error-c2761.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2762.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2764.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2766.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2767.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2768.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2770.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2771.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2773.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2774.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2775.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2776.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2777.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2778.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2779.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2780.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2781.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2782.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2783.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2784.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2785.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2786.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2787.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2788.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c2790.md | 5 ++--- 25 files changed, 50 insertions(+), 75 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md index 63ae44b1da..ab82d98def 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2761.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2761.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2761" title: "Compiler Error C2761" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2761" +ms.date: 11/04/2016 f1_keywords: ["C2761"] helpviewer_keywords: ["C2761"] -ms.assetid: 38c79a05-b56d-485b-820f-95e8c0cb926f --- # Compiler Error C2761 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md index 7d5e0ae06c..6892019ad3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2762.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2762.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2762" title: "Compiler Error C2762" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2762" +ms.date: 11/04/2016 f1_keywords: ["C2762"] helpviewer_keywords: ["C2762"] -ms.assetid: 8b81a801-fd48-40a1-8bee-0748795b12e4 --- # Compiler Error C2762 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md index 3feffc1249..52a87747fd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2764.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2764.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2764" title: "Compiler Error C2764" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2764" +ms.date: 11/04/2016 f1_keywords: ["C2764"] helpviewer_keywords: ["C2764"] -ms.assetid: 3754f5af-e094-4425-be20-d0c9a9b5baec --- # Compiler Error C2764 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md index 5b30a1aa0a..f683b8433a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2766.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2766.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2766" title: "Compiler Error C2766" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2766" +ms.date: 11/04/2016 f1_keywords: ["C2766"] helpviewer_keywords: ["C2766"] -ms.assetid: 8032f4ca-6827-4f04-9c61-c44643c85cc4 --- # Compiler Error C2766 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md index 4482375489..07706df7ad 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2767.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2767.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2767" title: "Compiler Error C2767" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2767" +ms.date: 11/04/2016 f1_keywords: ["C2767"] helpviewer_keywords: ["C2767"] -ms.assetid: e8f84178-a160-4d71-a236-07e4fcc11e96 --- # Compiler Error C2767 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2768.md b/docs/error-messages/compiler-errors-2/compiler-error-c2768.md index 64bed60ba9..472b925a5e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2768.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2768.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2768" title: "Compiler Error C2768" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2768" +ms.date: 11/04/2016 f1_keywords: ["C2768"] helpviewer_keywords: ["C2768"] -ms.assetid: a7f6047a-6a80-4737-ad5c-c12868639fb5 --- # Compiler Error C2768 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md index f4124ec3b2..0e0d7839fd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2770.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2770.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2770" title: "Compiler Error C2770" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2770" +ms.date: 11/04/2016 f1_keywords: ["C2770"] helpviewer_keywords: ["C2770"] -ms.assetid: 100001b5-80b0-4971-8ff6-9023f443c926 --- # Compiler Error C2770 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md index d31cf00eec..beafafe99d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2771.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2771.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2771" title: "Compiler Error C2771" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2771" +ms.date: 11/04/2016 f1_keywords: ["C2771"] helpviewer_keywords: ["C2771"] -ms.assetid: b649cc9f-7cbc-4b42-a5e8-51dad5c55e4b --- # Compiler Error C2771 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md index 138dd245bb..01ca898623 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2773.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2773.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2773" title: "Compiler Error C2773" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2773" +ms.date: 11/04/2016 f1_keywords: ["C2773"] helpviewer_keywords: ["C2773"] -ms.assetid: 8d564b26-1623-4d92-aabc-dff33f7b1145 --- # Compiler Error C2773 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md index e68947b151..6ad8e6659e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2774.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2774.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2774" title: "Compiler Error C2774" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2774" +ms.date: 11/04/2016 f1_keywords: ["C2774"] helpviewer_keywords: ["C2774"] -ms.assetid: 10f428c6-7f49-489a-92ba-6ef978b7caaf --- # Compiler Error C2774 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md index 86834667cd..00654e73f7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2775.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2775.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2775" title: "Compiler Error C2775" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2775" +ms.date: 11/04/2016 f1_keywords: ["C2775"] helpviewer_keywords: ["C2775"] -ms.assetid: 9c488508-ade0-48f1-b94f-d538d15f807a --- # Compiler Error C2775 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md index 5e18b92d1f..a1844454df 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2776.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2776.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2776" title: "Compiler Error C2776" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2776" +ms.date: 11/04/2016 f1_keywords: ["C2776"] helpviewer_keywords: ["C2776"] -ms.assetid: 9d80addc-62c7-40fc-a2cc-60303abb87df --- # Compiler Error C2776 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md index 096cc46923..5b624a0afe 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2777.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2777.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2777" title: "Compiler Error C2777" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2777" +ms.date: 11/04/2016 f1_keywords: ["C2777"] helpviewer_keywords: ["C2777"] -ms.assetid: 5fe158c0-2a65-488a-aca2-61d4a8b32d43 --- # Compiler Error C2777 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md index 4873bda099..5988f1aa52 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2778.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2778.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2778" title: "Compiler Error C2778" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2778" +ms.date: 11/04/2016 f1_keywords: ["C2778"] helpviewer_keywords: ["C2778"] -ms.assetid: b24cb732-2914-42cc-8928-e2d87b393428 --- # Compiler Error C2778 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md index 6641f04745..8e0b8797e1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2779.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2779.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2779" title: "Compiler Error C2779" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2779" +ms.date: 11/04/2016 f1_keywords: ["C2779"] helpviewer_keywords: ["C2779"] -ms.assetid: 4a00e492-855a-41f3-8a18-5f60ee20c2f2 --- # Compiler Error C2779 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md index 6671fbd1b8..6c5c901d40 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2780.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2780.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2780" title: "Compiler Error C2780" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2780" +ms.date: 11/04/2016 f1_keywords: ["C2780"] helpviewer_keywords: ["C2780"] -ms.assetid: 423793d8-a3b2-4f35-85f8-ae1d043e2b69 --- # Compiler Error C2780 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md index 927f23387d..8af20a38e2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2781.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2781.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2781" title: "Compiler Error C2781" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2781" +ms.date: 11/04/2016 f1_keywords: ["C2781"] helpviewer_keywords: ["C2781"] -ms.assetid: f29b9963-f55b-427c-8db6-50f37713df5a --- # Compiler Error C2781 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md index 088e90a558..1437c8068c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2782.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2782.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2782" title: "Compiler Error C2782" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2782" +ms.date: 11/04/2016 f1_keywords: ["C2782"] helpviewer_keywords: ["C2782"] -ms.assetid: 8b685422-294d-4f64-9f3d-c14eaf03a93d --- # Compiler Error C2782 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md index 3e47e7fab4..d906f0cd87 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2783.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2783.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2783" title: "Compiler Error C2783" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2783" +ms.date: 11/04/2016 f1_keywords: ["C2783"] helpviewer_keywords: ["C2783"] -ms.assetid: 1ce94a11-bb8b-4be3-a222-f1f105da74b3 --- # Compiler Error C2783 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md index 56f8a2d465..289c373362 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2784.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2784.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2784" title: "Compiler Error C2784" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2784" +ms.date: 11/04/2016 f1_keywords: ["C2784"] helpviewer_keywords: ["C2784"] -ms.assetid: 3d761fe2-881c-48bd-afae-e2e714e20473 --- # Compiler Error C2784 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md index 2ec516b957..07589c43d2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2785.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2785.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2785" title: "Compiler Error C2785" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2785" +ms.date: 11/04/2016 f1_keywords: ["C2785"] helpviewer_keywords: ["C2785"] -ms.assetid: d8d13360-0d00-4815-8475-b49c7f0dc0f3 --- # Compiler Error C2785 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md index 5170b1a656..3cdd52ad9a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2786.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2786.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2786" title: "Compiler Error C2786" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2786" +ms.date: 11/04/2016 f1_keywords: ["C2786"] helpviewer_keywords: ["C2786"] -ms.assetid: 6676d8c0-86dd-4a39-bdda-b75a35f4d137 --- # Compiler Error C2786 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md index ccfe3ba841..e7e92cd8d3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2787.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2787.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2787" title: "Compiler Error C2787" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2787" +ms.date: 11/04/2016 f1_keywords: ["C2787"] helpviewer_keywords: ["C2787"] -ms.assetid: 34cb57e6-cafe-4ce7-bcc6-53d194629bd0 --- # Compiler Error C2787 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md index 778d244d79..f45b911703 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2788.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2788.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2788" title: "Compiler Error C2788" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2788" +ms.date: 11/04/2016 f1_keywords: ["C2788"] helpviewer_keywords: ["C2788"] -ms.assetid: 8688fc5c-e652-43b4-b407-9c488c76f2db --- # Compiler Error C2788 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md index 9226bdf4e0..bf32485d81 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2790.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2790.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2790" title: "Compiler Error C2790" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2790" +ms.date: 11/04/2016 f1_keywords: ["C2790"] helpviewer_keywords: ["C2790"] -ms.assetid: 38d4fce1-ba00-413d-8bc1-e8aa43d7bc1f --- # Compiler Error C2790 From c42ae099401f22e8b6f69da5df5b0419a59cb981 Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Thu, 7 Aug 2025 17:40:50 -0700 Subject: [PATCH 963/981] Update compiler-error-c2715.md added the example intro sentence --- docs/error-messages/compiler-errors-2/compiler-error-c2715.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md index 86f7e5ce73..266c4e4c71 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md @@ -15,6 +15,8 @@ Value types are not valid arguments when using exception handling in managed cod ## Example +The following example generates C2715: + ```cpp // C2715a.cpp // compile with: /clr From 36a0527b44c31f1800fbc48375095b178c000b06 Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Thu, 7 Aug 2025 17:42:23 -0700 Subject: [PATCH 964/981] Update compiler-error-c2715.md --- docs/error-messages/compiler-errors-2/compiler-error-c2715.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md index 266c4e4c71..ddb31bc681 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c2715.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c2715.md @@ -15,7 +15,7 @@ Value types are not valid arguments when using exception handling in managed cod ## Example -The following example generates C2715: +The following example generates C2715 and shows how to fix it: ```cpp // C2715a.cpp From 2050d226bcf920db1de13a11dc57a9012470d89a Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Sat, 9 Aug 2025 14:15:21 -0700 Subject: [PATCH 965/981] Update routine-mappings.md remove stray api_name metadata --- docs/c-runtime-library/routine-mappings.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/c-runtime-library/routine-mappings.md b/docs/c-runtime-library/routine-mappings.md index 8c75157b5c..e36658b739 100644 --- a/docs/c-runtime-library/routine-mappings.md +++ b/docs/c-runtime-library/routine-mappings.md @@ -3,7 +3,6 @@ title: "Generic-text function mappings" description: "Learn more about: Microsoft specific generic-text functions and the CRT functions they map to." ms.date: 11/04/2016 ms.author: twhitney -api_name: ["foo",] f1_keywords: ["_cgetts", "_cgetts_s", "_cputts", "_fgettc", "_fgettchar", "_fgetts", "_fputtc", "_fputtchar", "_fputts", "_ftscanf", "_ftscanf_s", "_gettc", "_gettch", "_gettchar", "_gettche", "_getts", "_getts_s", "_istalnum", "_istalpha", "_istascii", "_istcntrl", "_istdigit", "_istgraph", "_istlead", "_istleadbyte", "_istlegal", "_istlower", "_istprint", "_istpunct", "_istspace", "_istupper", "_istxdigit", "_itot", "_itot_s", "_ltot", "_ltot_s", "_puttc", "_puttch", "_puttchar", "_putts", "_sctprintf", "_sntprintf", "_sntprintf_s", "_sntscanf", "_sntscanf_s", "_stprintf", "_stprintf_s", "_stscanf", "_stscanf_s", "_taccess", "_tasctime", "_tasctime_s", "_tccmp", "_tccpy", "_tccpy_s", "_tchdir", "_tclen", "_tchmod", "_tcprintf", "_tcprintf_s", "_tcreat", "_tcscanf", "_tcscanf_s", "_tcscat", "_tcscat_s", "_tcschr", "_tcsclen", "_tcsclen_s", "_tcscmp", "_tcscoll", "_tcscpy", "_tcscpy_s", "_tcscspn", "_tcsdec", "_tcsdup", "_tcserror", "_tcserror_s", "_tcsftime", "_tcsicmp", "_tcsicoll", "_tcsinc", "_tcslen", "_tcslwr", "_tcslwr_s", "_tcsnbcnt", "_tcsncat", "_tcsncat_s", "_tcsnccat", "_tcsnccmp", "_tcsnccmp_s", "_tcsnccoll", "_tcsncmp", "_tcsnccnt", "_tcsnccpy", "_tcsncicmp", "_tcsncicoll", "_tcsncpy", "_tcsncset", "_tcsnextc", "_tcsnicmp", "_tcsnicoll", "_tcsninc", "_tcsnccnt", "_tcsnset", "_tcspbrk", "_tcsspnp", "_tcsrchr", "_tcsrev", "_tcsset", "_tcsspn", "_tcsstr", "_tcstod", "_tcstoi64", "_tcstok", "_tcstok_s", "_tcstol", "_tcstoui64", "_tcstoul", "_tcsupr", "_tcsupr_s", "_tcsxfrm", "_tctime", "_tctime_s", "_tctime32", "_tctime32_s", "_tctime64", "_tctime64_s", "_texecl", "_texecle", "_texeclp", "_texeclpe", "_texecv", "_texecve", "_texecvp", "_texecvpe", "_tfdopen", "_tfindfirst", "_tfindnext", "_tfindnext32", "_tfindnext64", "_tfindnexti64", "_tfindnexti6432", "_tfindnext32i64", "_tfopen", "_tfopen_s", "_tfreopen", "_tfreopen_s", "_tfsopen", "_tfullpath", "_tgetcwd", "_tgetdcwd", "_tgetenv", "_tgetenv_s", "_tmain", "_tmakepath", "_tmakepath_s", "_tmkdir", "_tmktemp", "_tmktemp_s", "_topen", "_topen_s", "_totlower", "_totupper", "_tperror", "_tpopen", "_tprintf", "_tprintf_s", "_tputenv", "_tremove", "_trename", "_trmdir", "_tsearchenv", "_tsearchenv_s", "_tscanf", "_tscanf_s", "_tsetlocale", "_tsopen", "_tsopen_s", "_tspawnl", "_tspawnle", "_tspawnlp", "_tspawnlpe", "_tspawnv", "_tspawnve", "_tspawnvp", "_tspawnvpe", "_tsplitpath", "_tstat", "_tstat32", "_tstati32", "_tstat64", "_tstati64", "_tstof", "_tstoi", "_tstoi64", "_tstol", "_tstrdate", "_tstrdate_s", "_tstrtime", "_tstrtime_s", "_tsystem", "_ttempnam", "_ttmpnam", "_ttmpnam_s", "_ttoi", "_ttoi64", "_ttol", "_tunlink", "_tutime", "_tutime32", "_tutime64", "_tWinMain", "_ui64tot", "_ui64tot_s", "_ultot", "_ultot_s", "_ungettc", "_ungettch", "_vftprintf", "_vftprintf_s", "_vsctprintf", "_vsctprintf_s", "_vsntprintf", "_vsntprintf_s", "_vstprintf", "_vtprintf", "_vtprintf_s"] helpviewer_keywords: ["_tWinMain", "TCHAR.H functions, list of generic-text function mappings", "generic-text mappings", "_cgetts function", "_cgetts_s function", "_cputts function", "_fgettc function", "_fgettchar function", "_fgetts function", "_fputtc function", "_fputtchar function", "_fputts function", "_ftscanf function", "_ftscanf_s function", "_gettc function", "_gettch function", "_gettchar function", "_gettche function", "_getts function", "_getts_s function", "_istalnum function", "_istalpha function", "_istascii function", "_istcntrl function", "_istdigit function", "_istgraph function", "_istlead function", "_istleadbyte function", "_istlegal function", "_istlower function", "_istprint function", "_istpunct function", "_istspace function", "_istupper function", "_istxdigit function", "_itot function", "_itot_s function", "_ltot function", "_ltot_s function", "_puttc function", "_puttch function", "_puttchar function", "_putts function", "_sctprintf function", "_sntprintf function", "_sntprintf_s function", "_sntscanf function", "_sntscanf_s function", "_stprintf function", "_stprintf_s function", "_stscanf function", "_stscanf_s function", "_taccess function", "_tasctime function", "_tasctime_s function", "_tccmp function", "_tccpy function", "_tccpy_s function", "_tchdir function", "_tclen function", "_tchmod function", "_tcprintf function", "_tcprintf_s function", "_tcreat function", "_tcscanf function", "_tcscanf_s function", "_tcscat function", "_tcscat_s function", "_tcschr function", "_tcsclen function", "_tcsclen_s function", "_tcscmp function", "_tcscoll function", "_tcscpy function", "_tcscpy_s function", "_tcscspn function", "_tcsdec function", "_tcsdup function", "_tcserror function", "_tcserror_s function", "_tcsftime function", "_tcsicmp function", "_tcsicoll function", "_tcsinc function", "_tcslen function", "_tcslwr function", "_tcslwr_s function", "_tcsnbcnt function", "_tcsncat function", "_tcsncat_s function", "_tcsnccat function", "_tcsnccmp function", "_tcsnccmp_s function", "_tcsnccoll function", "_tcsncmp function", "_tcsnccnt function", "_tcsnccpy function", "_tcsncicmp function", "_tcsncicoll function", "_tcsncpy function", "_tcsncset function", "_tcsnextc function", "_tcsnicmp function", "_tcsnicoll function", "_tcsninc function", "_tcsnccnt function", "_tcsnset function", "_tcspbrk function", "_tcsspnp function", "_tcsrchr function", "_tcsrev function", "_tcsset function", "_tcsspn function", "_tcsstr function", "_tcstod function", "_tcstoi64 function", "_tcstok function", "_tcstok_s function", "_tcstol function", "_tcstoui64 function", "_tcstoul function", "_tcsupr function", "_tcsupr_s function", "_tcsxfrm function", "_tctime function", "_tctime_s function", "_tctime32 function", "_tctime32_s function", "_tctime64 function", "_tctime64_s function", "_texecl function", "_texecle function", "_texeclp function", "_texeclpe function", "_texecv function", "_texecve function", "_texecvp function", "_texecvpe function", "_tfdopen function", "_tfindfirst function", "_tfindnext function", "_tfindnext32 function", "_tfindnext64 function", "_tfindnexti64 function", "_tfindnexti6432 function", "_tfindnext32i64 function", "_tfopen function", "_tfopen_s function", "_tfreopen function", "_tfreopen_s function", "_tfsopen function", "_tfullpath function", "_tgetcwd function", "_tgetdcwd function", "_tgetenv function", "_tgetenv_s function", "_tmain function", "_tmakepath function", "_tmakepath_s function", "_tmkdir function", "_tmktemp function", "_tmktemp_s function", "_topen function", "_topen_s function", "_totlower function", "_totupper function", "_tperror function", "_tpopen function", "_tprintf function", "_tprintf_s function", "_tputenv function", "_tremove function", "_trename function", "_trmdir function", "_tsearchenv function", "_tsearchenv_s function", "_tscanf function", "_tscanf_s function", "_tsetlocale function", "_tsopen function", "_tsopen_s function", "_tspawnl function", "_tspawnle function", "_tspawnlp function", "_tspawnlpe function", "_tspawnv function", "_tspawnve function", "_tspawnvp function", "_tspawnvpe function", "_tsplitpath function", "_tstat function", "_tstat32 function", "_tstati32 function", "_tstat64 function", "_tstati64 function", "_tstof function", "_tstoi function", "_tstoi64 function", "_tstol function", "_tstrdate function", "_tstrdate_s function", "_tstrtime function", "_tstrtime_s function", "_tsystem function", "_ttempnam function", "_ttmpnam function", "_ttmpnam_s function", "_ttoi function", "_ttoi64 function", "_ttol function", "_tunlink function", "_tutime function", "_tutime32 function", "_tutime64 function", "_tWinMain function", "_ui64tot function", "_ui64tot_s function", "_ultot function", "_ultot_s function", "_ungettc function", "_ungettch function", "_vftprintf function", "_vftprintf_s function", "_vsctprintf function", "_vsctprintf_s function", "_vsntprintf function", "_vsntprintf_s function", "_vstprintf function", "_vtprintf function", "_vtprintf_s function"] --- From 5b7deee6b2311ab96904c5d1337cd62dcc6a1eb4 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:52:56 +0800 Subject: [PATCH 966/981] Fix mix up of `title` and `description` in "Create an icon or other image" --- .../creating-an-icon-or-other-image-image-editor-for-icons.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md index 19767ebd32..f6b11d3d2e 100644 --- a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md +++ b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md @@ -1,6 +1,6 @@ --- -description: "Create an Icon or Other Image" -title: "Learn how to create a new image, bitmap, icon, cursor, or toolbar, and then use the Image Editor to customize its appearance." +title: "Create an Icon or Other Image" +description: "Learn how to create a new image, bitmap, icon, cursor, or toolbar, and then use the Image Editor to customize its appearance." ms.date: 03/21/2025 ms.topic: how-to helpviewer_keywords: ["bitmaps [C++]", "images [C++], creating", "resources [C++], creating images", "bitmaps [C++], creating", "graphics [C++], creating", "Image editor [C++], creating images", "cursors [C++], creating", "image resources [C++], display devices", "icons [C++], creating", "cursors [C++], types", "icons [C++]", "Image editor [C++], icons and cursors", "cursors [C++]", "display devices [C++], creating icons for", "cursors [C++], hot spots", "icons [C++], types", "icons [C++], creating", "display devices [C++], creating image", "images [C++], creating for display devices", "icons [C++], inserting", "New Image Type dialog box [C++]", "Custom Image dialog box [C++]", "Open Image dialog box [C++]", "New Device Image command", "display devices [C++], adding images", "cursors [C++], adding", "icons, adding", "display devices [C++], copying images", "cursors [C++], copying", "icons, copying", "cursors [C++], deleting", "display devices [C++], deleting device image", "icons, erasing", "icons, deleting", "cursors [C++], undoing changes", "icons, undoing changes", "cursors [C++], screen regions", "inverse colors [C++], device images", "transparent regions, device images", "transparency, device images", "Image editor [C++], device images", "inverse regions, device images", "cursors [C++], transparent regions", "screen colors", "regions, transparent", "icons [C++], transparent regions", "display devices [C++], transparent and screen regions", "transparent regions in devices", "regions, inverse", "colors [C++], Image editor", "device projects [C++], transparent images", "icons [C++], screen regions", "256-color palette", "cursors [C++], color", "colors [C++], icons", "colors [C++], cursors", "icons, color", "colors [C++], icons and cursors", "color palettes, 256-color", "palettes, 256-color", "cursors [C++], hot spots", "hot spots", ".gif files [C++], saving bitmaps as", "jpg files [C++], saving bitmaps as", "jpeg files [C++], saving bitmaps as", ".jpg files [C++], saving bitmaps as", "Image editor [C++], converting image formats", "gif files [C++], saving bitmaps as", "bitmaps [C++], converting formats", ".jpeg files [C++], saving bitmaps as", "graphics [C++], converting formats", "images [C++], converting formats", "images [C++], stand-alone editing", "Image editor [C++], converting image formats", "graphics [C++], converting formats", "images [C++], converting formats"] From ad4ab31a4edaa65b1f61a6dfd10acc95e2e5be65 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sun, 10 Aug 2025 21:53:36 +0800 Subject: [PATCH 967/981] Tweak metadata in "Create an icon or other image" --- .../creating-an-icon-or-other-image-image-editor-for-icons.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md index f6b11d3d2e..5c47728979 100644 --- a/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md +++ b/docs/windows/creating-an-icon-or-other-image-image-editor-for-icons.md @@ -1,10 +1,9 @@ --- -title: "Create an Icon or Other Image" +title: "Create an icon or other image" description: "Learn how to create a new image, bitmap, icon, cursor, or toolbar, and then use the Image Editor to customize its appearance." ms.date: 03/21/2025 ms.topic: how-to helpviewer_keywords: ["bitmaps [C++]", "images [C++], creating", "resources [C++], creating images", "bitmaps [C++], creating", "graphics [C++], creating", "Image editor [C++], creating images", "cursors [C++], creating", "image resources [C++], display devices", "icons [C++], creating", "cursors [C++], types", "icons [C++]", "Image editor [C++], icons and cursors", "cursors [C++]", "display devices [C++], creating icons for", "cursors [C++], hot spots", "icons [C++], types", "icons [C++], creating", "display devices [C++], creating image", "images [C++], creating for display devices", "icons [C++], inserting", "New Image Type dialog box [C++]", "Custom Image dialog box [C++]", "Open Image dialog box [C++]", "New Device Image command", "display devices [C++], adding images", "cursors [C++], adding", "icons, adding", "display devices [C++], copying images", "cursors [C++], copying", "icons, copying", "cursors [C++], deleting", "display devices [C++], deleting device image", "icons, erasing", "icons, deleting", "cursors [C++], undoing changes", "icons, undoing changes", "cursors [C++], screen regions", "inverse colors [C++], device images", "transparent regions, device images", "transparency, device images", "Image editor [C++], device images", "inverse regions, device images", "cursors [C++], transparent regions", "screen colors", "regions, transparent", "icons [C++], transparent regions", "display devices [C++], transparent and screen regions", "transparent regions in devices", "regions, inverse", "colors [C++], Image editor", "device projects [C++], transparent images", "icons [C++], screen regions", "256-color palette", "cursors [C++], color", "colors [C++], icons", "colors [C++], cursors", "icons, color", "colors [C++], icons and cursors", "color palettes, 256-color", "palettes, 256-color", "cursors [C++], hot spots", "hot spots", ".gif files [C++], saving bitmaps as", "jpg files [C++], saving bitmaps as", "jpeg files [C++], saving bitmaps as", ".jpg files [C++], saving bitmaps as", "Image editor [C++], converting image formats", "gif files [C++], saving bitmaps as", "bitmaps [C++], converting formats", ".jpeg files [C++], saving bitmaps as", "graphics [C++], converting formats", "images [C++], converting formats", "images [C++], stand-alone editing", "Image editor [C++], converting image formats", "graphics [C++], converting formats", "images [C++], converting formats"] -ms.assetid: 66db3fb2-cfc1-48a2-9bdd-53f61eb7ee30 --- # Create an icon or other image From c47a61b4213ce5fd05d29539f6da5f9684cb176b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 12 Aug 2025 23:28:13 +0800 Subject: [PATCH 968/981] Add blockquotes for error messages in range [C3011, C3030] --- docs/error-messages/compiler-errors-2/compiler-error-c3011.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3013.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3014.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3015.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3016.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3017.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3018.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3019.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3020.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3021.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3022.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3023.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3024.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3025.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3026.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3027.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3028.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3029.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3030.md | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md index 830e14b086..184908ef9f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md @@ -8,7 +8,7 @@ ms.assetid: 24c3a917-ebff-4deb-9155-23adf6468531 --- # Compiler Error C3011 -inline assembly not allowed directly within a parallel region +> inline assembly not allowed directly within a parallel region An `omp` parallel region cannot contain inline assembly instructions. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md index cd9019d1f1..e24b4b609d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md @@ -8,7 +8,7 @@ ms.assetid: f896777d-27e6-4b6d-baab-1567317f3374 --- # Compiler Error C3013 -'clause' : clause may only appear once on OpenMP 'directive' directive +> 'clause' : clause may only appear once on OpenMP 'directive' directive A clause appeared twice on the same directive. Delete one occurrence of the clause. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md index 6f59ffd243..7f753b9204 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md @@ -8,7 +8,7 @@ ms.assetid: af1c5b0c-dbf9-4274-b06a-c6c2cdcf2a52 --- # Compiler Error C3014 -expected a for loop following OpenMP 'directive' directive +> expected a for loop following OpenMP 'directive' directive It is an error for anything other than a **`for`** loop to immediately follow a `#pragma omp for` directive. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md index cbc3d828a3..c5cb3b1181 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md @@ -8,7 +8,7 @@ ms.assetid: d5e8e50b-7542-4b2d-8665-1b22072a5bc6 --- # Compiler Error C3015 -initialization in OpenMP 'for' statement has improper form +> initialization in OpenMP 'for' statement has improper form A **`for`** loop in an OpenMP statement must be fully and explicitly specified. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md index ef990e16bb..20d461bc7c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md @@ -8,7 +8,7 @@ ms.assetid: 3423467e-e8bb-4f35-b4db-7925cafa74c1 --- # Compiler Error C3016 -'var' : index variable in OpenMP 'for' statement must have signed integral type +> 'var' : index variable in OpenMP 'for' statement must have signed integral type The index variable in an OpenMP **`for`** statement must be a signed integral type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md index 35ffc5aecf..23f6a183d7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md @@ -8,7 +8,7 @@ ms.assetid: 12ab2c2a-d0d2-4900-9cbf-39be0af590dd --- # Compiler Error C3017 -termination test in OpenMP 'for' statement has improper form +> termination test in OpenMP 'for' statement has improper form A **`for`** loop in an OpenMP statement must be fully and explicitly specified. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md index 9843c07518..1451896ed8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md @@ -8,7 +8,7 @@ ms.assetid: 685be45f-f116-43a8-a88d-05ab6616e2f1 --- # Compiler Error C3018 -'var1' : OpenMP 'for' test or increment must use index variable 'var2' +> 'var1' : OpenMP 'for' test or increment must use index variable 'var2' A **`for`** loop in an OpenMP statement must use the same variable for its test and increment as it uses for its index. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md index 72a6e03a16..96ce0b9966 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md @@ -8,7 +8,7 @@ ms.assetid: 31a6d9b6-d29f-4499-9ad8-48dd751e87c7 --- # Compiler Error C3019 -increment in OpenMP 'for' statement has improper form +> increment in OpenMP 'for' statement has improper form The increment part of an OpenMP **`for`** loop must use the index variable both on the left and right side of the operator. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md index 4f67e28e54..c465b030a0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md @@ -8,7 +8,7 @@ ms.assetid: f625c7a3-afaa-4bd8-9c1b-51891b832f36 --- # Compiler Error C3020 -'var' : index variable of OpenMP 'for' loop cannot be modified in loop body +> 'var' : index variable of OpenMP 'for' loop cannot be modified in loop body An OpenMP **`for`** loop may not modify the index (loop counter) in the body of the **`for`** loop. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md index 5a016f5608..64cdebd628 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md @@ -8,7 +8,7 @@ ms.assetid: 0cef6d97-e267-438a-ac8b-0daf5bbbc2cf --- # Compiler Error C3021 -'arg' : argument is empty on OpenMP directive 'directive' +> 'arg' : argument is empty on OpenMP directive 'directive' An argument is required for an OpenMP directive. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md index ca6749b8ab..91aca931e2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md @@ -8,7 +8,7 @@ ms.assetid: 9f1d444c-6c6e-48d9-9346-69128390aa33 --- # Compiler Error C3022 -'clause' : invalid schedule kind of 'value' on OpenMP 'directive' directive +> 'clause' : invalid schedule kind of 'value' on OpenMP 'directive' directive An unsupported value was passed to a clause. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md index 5cc79ab4b5..d0a4b21be8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md @@ -8,7 +8,7 @@ ms.assetid: 89dcce98-3cd7-4931-a50f-87df1d2ebc9b --- # Compiler Error C3023 -'value' : unexpected token encountered in argument to OpenMP 'clause' clause +> 'value' : unexpected token encountered in argument to OpenMP 'clause' clause The values passed to a clause were not valid. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md index a9c91358b3..c906fc8ca2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md @@ -8,7 +8,7 @@ ms.assetid: 1c031c28-ce37-4de3-aead-cfe76b261856 --- # Compiler Error C3024 -'schedule(runtime)' : chunk_size expression is not allowed +> 'schedule(runtime)' : chunk_size expression is not allowed A value cannot be passed to the run-time parameter of the schedule clause. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md index ef52fb5415..2f289eb5a3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md @@ -8,7 +8,7 @@ ms.assetid: 4442f5a3-d9ea-4873-b1fb-e7e5bd3cbe5e --- # Compiler Error C3025 -'clause' : integral expression expected +> 'clause' : integral expression expected A clause requires an integer expression but was given a noninteger expression. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md index cf7c548723..a646594517 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md @@ -8,7 +8,7 @@ ms.assetid: 3297060e-cc5b-4600-a2db-09bfc4ffa21f --- # Compiler Error C3026 -'clause' : constant expression must be positive +> 'clause' : constant expression must be positive A clause was passed an integer value, but the value was not a positive number. The number must be positive. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md index 8276f6de60..1066399f1c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md @@ -8,7 +8,7 @@ ms.assetid: 6562a5c2-2f28-4b36-91ca-2a64c0f0501a --- # Compiler Error C3027 -'clause' : arithmetic or pointer expression expected +> 'clause' : arithmetic or pointer expression expected A clause that requires an arithmetic or pointer expression was passed another kind of expression. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md index d64d33f200..9c18838cbd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md @@ -8,7 +8,7 @@ ms.assetid: 175e697f-8e8f-492a-8456-6240ffbbb900 --- # Compiler Error C3028 -'member' : only a variable or static data member can be used in a data-sharing clause +> 'member' : only a variable or static data member can be used in a data-sharing clause A symbol other than a variable or static data member was passed to the reduction clause. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md index 8b2b019ed4..9b7d863271 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md @@ -8,7 +8,7 @@ ms.assetid: 655eb04d-504a-468d-8c0c-bda1e5f297b7 --- # Compiler Error C3029 -'symbol' : can only appear once in data-sharing clauses in an OpenMP directive +> 'symbol' : can only appear once in data-sharing clauses in an OpenMP directive A symbol was used more than once in one or more clauses in a directive. The symbol can only be used once in the directive. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md index daf295ebe7..5d197ced09 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md @@ -8,7 +8,7 @@ ms.assetid: de92fd7e-29ba-46e8-b43b-f4b985cd74de --- # Compiler Error C3030 -'var' : variable in 'reduction' clause/directive cannot have reference type +> 'var' : variable in 'reduction' clause/directive cannot have reference type You can only pass value parameters to certain clauses, such as the reduction clause. From 87e152c6e6afd5c90ad1ef77ef9f5defa0e1b593 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 12 Aug 2025 23:33:11 +0800 Subject: [PATCH 969/981] Add "Remarks" and "Example" headings for error references in range [C3011, C3030] --- docs/error-messages/compiler-errors-2/compiler-error-c3011.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3012.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3013.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3014.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3015.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3016.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3017.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3018.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3019.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3020.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3021.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3022.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3023.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3024.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3025.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3026.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3027.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3028.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3029.md | 4 ++++ docs/error-messages/compiler-errors-2/compiler-error-c3030.md | 4 ++++ 20 files changed, 70 insertions(+) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md index 184908ef9f..27ca8b1ad4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md @@ -10,8 +10,12 @@ ms.assetid: 24c3a917-ebff-4deb-9155-23adf6468531 > inline assembly not allowed directly within a parallel region +## Remarks + An `omp` parallel region cannot contain inline assembly instructions. +## Example + The following sample generates C3011: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md index 8754ce80f9..c0e3ad5038 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md @@ -10,6 +10,8 @@ ms.assetid: cc7040b1-b3fb-4da6-a474-877914d30332 > '*intrinsic*' : intrinsic function not allowed directly within a parallel region +## Remarks + A [compiler intrinsic](../../intrinsics/compiler-intrinsics.md) function is not allowed in an `omp parallel` region. To fix this issue, move intrinsics out of the region, or replace them with non-intrinsic equivalents. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md index e24b4b609d..2c8d9745f1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md @@ -10,8 +10,12 @@ ms.assetid: f896777d-27e6-4b6d-baab-1567317f3374 > 'clause' : clause may only appear once on OpenMP 'directive' directive +## Remarks + A clause appeared twice on the same directive. Delete one occurrence of the clause. +## Example + The following sample generates C3013: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md index 7f753b9204..66db6d4d0a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md @@ -10,8 +10,12 @@ ms.assetid: af1c5b0c-dbf9-4274-b06a-c6c2cdcf2a52 > expected a for loop following OpenMP 'directive' directive +## Remarks + It is an error for anything other than a **`for`** loop to immediately follow a `#pragma omp for` directive. +## Example + The following sample generates C3014: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md index c5cb3b1181..395e5bf21b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md @@ -10,8 +10,12 @@ ms.assetid: d5e8e50b-7542-4b2d-8665-1b22072a5bc6 > initialization in OpenMP 'for' statement has improper form +## Remarks + A **`for`** loop in an OpenMP statement must be fully and explicitly specified. +## Example + The following sample generates C3015: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md index 20d461bc7c..eebec69cde 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md @@ -10,8 +10,12 @@ ms.assetid: 3423467e-e8bb-4f35-b4db-7925cafa74c1 > 'var' : index variable in OpenMP 'for' statement must have signed integral type +## Remarks + The index variable in an OpenMP **`for`** statement must be a signed integral type. +## Example + The following sample generates C3016: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md index 23f6a183d7..cc236ebc24 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md @@ -10,8 +10,12 @@ ms.assetid: 12ab2c2a-d0d2-4900-9cbf-39be0af590dd > termination test in OpenMP 'for' statement has improper form +## Remarks + A **`for`** loop in an OpenMP statement must be fully and explicitly specified. +## Example + The following sample generates C3017: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md index 1451896ed8..7e0760e031 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md @@ -10,8 +10,12 @@ ms.assetid: 685be45f-f116-43a8-a88d-05ab6616e2f1 > 'var1' : OpenMP 'for' test or increment must use index variable 'var2' +## Remarks + A **`for`** loop in an OpenMP statement must use the same variable for its test and increment as it uses for its index. +## Example + The following sample generates C3018: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md index 96ce0b9966..5e26f0053a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md @@ -10,8 +10,12 @@ ms.assetid: 31a6d9b6-d29f-4499-9ad8-48dd751e87c7 > increment in OpenMP 'for' statement has improper form +## Remarks + The increment part of an OpenMP **`for`** loop must use the index variable both on the left and right side of the operator. +## Example + The following sample generates C3019: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md index c465b030a0..4dd37d8ea9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md @@ -10,8 +10,12 @@ ms.assetid: f625c7a3-afaa-4bd8-9c1b-51891b832f36 > 'var' : index variable of OpenMP 'for' loop cannot be modified in loop body +## Remarks + An OpenMP **`for`** loop may not modify the index (loop counter) in the body of the **`for`** loop. +## Examples + The following sample generates C3020: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md index 64cdebd628..4ce78cd3f7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md @@ -10,6 +10,8 @@ ms.assetid: 0cef6d97-e267-438a-ac8b-0daf5bbbc2cf > 'arg' : argument is empty on OpenMP directive 'directive' +## Remarks + An argument is required for an OpenMP directive. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md index 91aca931e2..ca958d5229 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md @@ -10,8 +10,12 @@ ms.assetid: 9f1d444c-6c6e-48d9-9346-69128390aa33 > 'clause' : invalid schedule kind of 'value' on OpenMP 'directive' directive +## Remarks + An unsupported value was passed to a clause. +## Example + The following sample generates C3022: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md index d0a4b21be8..dc55a9ee9e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md @@ -10,8 +10,12 @@ ms.assetid: 89dcce98-3cd7-4931-a50f-87df1d2ebc9b > 'value' : unexpected token encountered in argument to OpenMP 'clause' clause +## Remarks + The values passed to a clause were not valid. +## Example + The following sample generates C3023: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md index c906fc8ca2..33f5f906d8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md @@ -10,8 +10,12 @@ ms.assetid: 1c031c28-ce37-4de3-aead-cfe76b261856 > 'schedule(runtime)' : chunk_size expression is not allowed +## Remarks + A value cannot be passed to the run-time parameter of the schedule clause. +## Example + The following sample generates C3024: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md index 2f289eb5a3..7b7b120976 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md @@ -10,6 +10,8 @@ ms.assetid: 4442f5a3-d9ea-4873-b1fb-e7e5bd3cbe5e > 'clause' : integral expression expected +## Remarks + A clause requires an integer expression but was given a noninteger expression. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md index a646594517..e80366db2f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md @@ -10,6 +10,8 @@ ms.assetid: 3297060e-cc5b-4600-a2db-09bfc4ffa21f > 'clause' : constant expression must be positive +## Remarks + A clause was passed an integer value, but the value was not a positive number. The number must be positive. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md index 1066399f1c..be2f51da20 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md @@ -10,6 +10,8 @@ ms.assetid: 6562a5c2-2f28-4b36-91ca-2a64c0f0501a > 'clause' : arithmetic or pointer expression expected +## Remarks + A clause that requires an arithmetic or pointer expression was passed another kind of expression. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md index 9c18838cbd..9ea3e8e09b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md @@ -10,8 +10,12 @@ ms.assetid: 175e697f-8e8f-492a-8456-6240ffbbb900 > 'member' : only a variable or static data member can be used in a data-sharing clause +## Remarks + A symbol other than a variable or static data member was passed to the reduction clause. +## Example + The following sample generates C3028: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md index 9b7d863271..584966be5d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md @@ -10,8 +10,12 @@ ms.assetid: 655eb04d-504a-468d-8c0c-bda1e5f297b7 > 'symbol' : can only appear once in data-sharing clauses in an OpenMP directive +## Remarks + A symbol was used more than once in one or more clauses in a directive. The symbol can only be used once in the directive. +## Example + The following sample generates C3029: ```cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md index 5d197ced09..c7adbe2808 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md @@ -10,8 +10,12 @@ ms.assetid: de92fd7e-29ba-46e8-b43b-f4b985cd74de > 'var' : variable in 'reduction' clause/directive cannot have reference type +## Remarks + You can only pass value parameters to certain clauses, such as the reduction clause. +## Example + The following sample generates C3030: ```cpp From b8f0ae746a348c8084fe9b5e13f8c95cf385d4a0 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 12 Aug 2025 23:34:40 +0800 Subject: [PATCH 970/981] Replace term "sample" with "example" for error references in range [C3011, C3030] --- .../compiler-errors-2/compiler-error-c3011.md | 2 +- .../compiler-errors-2/compiler-error-c3012.md | 2 +- .../compiler-errors-2/compiler-error-c3013.md | 2 +- .../compiler-errors-2/compiler-error-c3014.md | 2 +- .../compiler-errors-2/compiler-error-c3015.md | 2 +- .../compiler-errors-2/compiler-error-c3016.md | 2 +- .../compiler-errors-2/compiler-error-c3017.md | 2 +- .../compiler-errors-2/compiler-error-c3018.md | 2 +- .../compiler-errors-2/compiler-error-c3019.md | 2 +- .../compiler-errors-2/compiler-error-c3020.md | 6 +++--- .../compiler-errors-2/compiler-error-c3021.md | 2 +- .../compiler-errors-2/compiler-error-c3022.md | 2 +- .../compiler-errors-2/compiler-error-c3023.md | 2 +- .../compiler-errors-2/compiler-error-c3024.md | 2 +- .../compiler-errors-2/compiler-error-c3025.md | 2 +- .../compiler-errors-2/compiler-error-c3026.md | 2 +- .../compiler-errors-2/compiler-error-c3027.md | 2 +- .../compiler-errors-2/compiler-error-c3028.md | 2 +- .../compiler-errors-2/compiler-error-c3029.md | 2 +- .../compiler-errors-2/compiler-error-c3030.md | 2 +- 20 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md index 27ca8b1ad4..db0c349c4c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md @@ -16,7 +16,7 @@ An `omp` parallel region cannot contain inline assembly instructions. ## Example -The following sample generates C3011: +The following example generates C3011: ```cpp // C3011.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md index c0e3ad5038..2948a59c08 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md @@ -16,7 +16,7 @@ A [compiler intrinsic](../../intrinsics/compiler-intrinsics.md) function is not ## Example -The following sample generates C3012, and shows one way to fix it: +The following example generates C3012, and shows one way to fix it: ```cpp // C3012.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md index 2c8d9745f1..ecd9bae656 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md @@ -16,7 +16,7 @@ A clause appeared twice on the same directive. Delete one occurrence of the clau ## Example -The following sample generates C3013: +The following example generates C3013: ```cpp // C3013.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md index 66db6d4d0a..e245421fe5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md @@ -16,7 +16,7 @@ It is an error for anything other than a **`for`** loop to immediately follow a ## Example -The following sample generates C3014: +The following example generates C3014: ```cpp // C3014.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md index 395e5bf21b..a169793ab6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md @@ -16,7 +16,7 @@ A **`for`** loop in an OpenMP statement must be fully and explicitly specified. ## Example -The following sample generates C3015: +The following example generates C3015: ```cpp // C3015.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md index eebec69cde..b601657146 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md @@ -16,7 +16,7 @@ The index variable in an OpenMP **`for`** statement must be a signed integral ty ## Example -The following sample generates C3016: +The following example generates C3016: ```cpp // C3016.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md index cc236ebc24..54cc4adfc1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md @@ -16,7 +16,7 @@ A **`for`** loop in an OpenMP statement must be fully and explicitly specified. ## Example -The following sample generates C3017: +The following example generates C3017: ```cpp // C3017.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md index 7e0760e031..6d90acaad6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md @@ -16,7 +16,7 @@ A **`for`** loop in an OpenMP statement must use the same variable for its test ## Example -The following sample generates C3018: +The following example generates C3018: ```cpp // C3018.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md index 5e26f0053a..5fe8229786 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md @@ -16,7 +16,7 @@ The increment part of an OpenMP **`for`** loop must use the index variable both ## Example -The following sample generates C3019: +The following example generates C3019: ```cpp // C3019.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md index 4dd37d8ea9..300cdf6c83 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md @@ -16,7 +16,7 @@ An OpenMP **`for`** loop may not modify the index (loop counter) in the body of ## Examples -The following sample generates C3020: +The following example generates C3020: ```cpp // C3020.cpp @@ -37,7 +37,7 @@ int main() { A variable declared with [lastprivate](../../parallel/openmp/reference/openmp-clauses.md#lastprivate) cannot be used as the index inside a parallelized loop. -The following sample will give C3020 for the second lastprivate because that lastprivate will trigger a write to idx_a within the outermost for loop. The first lastprivate doesn't give an error because that lastprivate triggers a write to idx_a outside the outermost for loop (technically, at the very end of the last iteration). The following sample generates C3020. +The following example will give C3020 for the second lastprivate because that lastprivate will trigger a write to idx_a within the outermost for loop. The first lastprivate doesn't give an error because that lastprivate triggers a write to idx_a outside the outermost for loop (technically, at the very end of the last iteration). The following example generates C3020. ```cpp // C3020b.cpp @@ -56,7 +56,7 @@ void test(int first, int last) } ``` -The following sample demonstrates a possible resolution: +The following example demonstrates a possible resolution: ```cpp // C3020c.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md index 4ce78cd3f7..968c628c7a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md @@ -16,7 +16,7 @@ An argument is required for an OpenMP directive. ## Example -The following sample generates C3021: +The following example generates C3021: ```cpp // C3021.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md index ca958d5229..7c352d250d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md @@ -16,7 +16,7 @@ An unsupported value was passed to a clause. ## Example -The following sample generates C3022: +The following example generates C3022: ```cpp // C3022.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md index dc55a9ee9e..f99d1ac39e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md @@ -16,7 +16,7 @@ The values passed to a clause were not valid. ## Example -The following sample generates C3023: +The following example generates C3023: ```cpp // C3023.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md index 33f5f906d8..0f6864ed9c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md @@ -16,7 +16,7 @@ A value cannot be passed to the run-time parameter of the schedule clause. ## Example -The following sample generates C3024: +The following example generates C3024: ```cpp // C3024.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md index 7b7b120976..619083a1f1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md @@ -16,7 +16,7 @@ A clause requires an integer expression but was given a noninteger expression. ## Example -The following sample generates C3025. +The following example generates C3025. ```cpp // C3025.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md index e80366db2f..102e9ef052 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md @@ -16,7 +16,7 @@ A clause was passed an integer value, but the value was not a positive number. T ## Example -The following sample generates C3026: +The following example generates C3026: ```cpp // C3026.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md index be2f51da20..3a36d706f3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md @@ -16,7 +16,7 @@ A clause that requires an arithmetic or pointer expression was passed another ki ## Example -The following sample generates C3027: +The following example generates C3027: ```cpp // C3027.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md index 9ea3e8e09b..953ff6ac40 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md @@ -16,7 +16,7 @@ A symbol other than a variable or static data member was passed to the reduction ## Example -The following sample generates C3028: +The following example generates C3028: ```cpp // C3028.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md index 584966be5d..399a2bf04f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md @@ -16,7 +16,7 @@ A symbol was used more than once in one or more clauses in a directive. The symb ## Example -The following sample generates C3029: +The following example generates C3029: ```cpp // C3029.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md index c7adbe2808..2bb0c9c44f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md @@ -16,7 +16,7 @@ You can only pass value parameters to certain clauses, such as the reduction cla ## Example -The following sample generates C3030: +The following example generates C3030: ```cpp // C3030.cpp From 23617912fe18a23bc57bc5b9db1fe33220eaea7b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 12 Aug 2025 23:37:40 +0800 Subject: [PATCH 971/981] Update metadata for error references in range [C3011, C3030] --- .../error-messages/compiler-errors-2/compiler-error-c3011.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3012.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3013.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3014.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3015.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3016.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3017.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3018.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3019.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3020.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3021.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3022.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3023.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3024.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3025.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3026.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3027.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3028.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3029.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3030.md | 5 ++--- 20 files changed, 40 insertions(+), 60 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md index db0c349c4c..65e8f9cd82 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3011.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3011.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3011" title: "Compiler Error C3011" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3011" +ms.date: 11/04/2016 f1_keywords: ["C3011"] helpviewer_keywords: ["C3011"] -ms.assetid: 24c3a917-ebff-4deb-9155-23adf6468531 --- # Compiler Error C3011 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md index 2948a59c08..e6abf61a31 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3012.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3012.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3012" title: "Compiler Error C3012" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3012" +ms.date: 11/04/2016 f1_keywords: ["C3012"] helpviewer_keywords: ["C3012"] -ms.assetid: cc7040b1-b3fb-4da6-a474-877914d30332 --- # Compiler Error C3012 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md index ecd9bae656..744d28b348 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3013.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3013.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3013" title: "Compiler Error C3013" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3013" +ms.date: 11/04/2016 f1_keywords: ["C3013"] helpviewer_keywords: ["C3013"] -ms.assetid: f896777d-27e6-4b6d-baab-1567317f3374 --- # Compiler Error C3013 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md index e245421fe5..b57685ca12 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3014.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3014.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3014" title: "Compiler Error C3014" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3014" +ms.date: 11/04/2016 f1_keywords: ["C3014"] helpviewer_keywords: ["C3014"] -ms.assetid: af1c5b0c-dbf9-4274-b06a-c6c2cdcf2a52 --- # Compiler Error C3014 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md index a169793ab6..57be2b65cd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3015.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3015.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3015" title: "Compiler Error C3015" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3015" +ms.date: 11/04/2016 f1_keywords: ["C3015"] helpviewer_keywords: ["C3015"] -ms.assetid: d5e8e50b-7542-4b2d-8665-1b22072a5bc6 --- # Compiler Error C3015 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md index b601657146..4da397545b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3016.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3016.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3016" title: "Compiler Error C3016" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3016" +ms.date: 11/04/2016 f1_keywords: ["C3016"] helpviewer_keywords: ["C3016"] -ms.assetid: 3423467e-e8bb-4f35-b4db-7925cafa74c1 --- # Compiler Error C3016 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md index 54cc4adfc1..5a9bcff846 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3017.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3017.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3017" title: "Compiler Error C3017" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3017" +ms.date: 11/04/2016 f1_keywords: ["C3017"] helpviewer_keywords: ["C3017"] -ms.assetid: 12ab2c2a-d0d2-4900-9cbf-39be0af590dd --- # Compiler Error C3017 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md index 6d90acaad6..4dc33cbf6a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3018.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3018.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3018" title: "Compiler Error C3018" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3018" +ms.date: 11/04/2016 f1_keywords: ["C3018"] helpviewer_keywords: ["C3018"] -ms.assetid: 685be45f-f116-43a8-a88d-05ab6616e2f1 --- # Compiler Error C3018 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md index 5fe8229786..ad39fe669a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3019.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3019.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3019" title: "Compiler Error C3019" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3019" +ms.date: 11/04/2016 f1_keywords: ["C3019"] helpviewer_keywords: ["C3019"] -ms.assetid: 31a6d9b6-d29f-4499-9ad8-48dd751e87c7 --- # Compiler Error C3019 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md index 300cdf6c83..ca7e3d3f78 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3020.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3020.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3020" title: "Compiler Error C3020" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3020" +ms.date: 11/04/2016 f1_keywords: ["C3020"] helpviewer_keywords: ["C3020"] -ms.assetid: f625c7a3-afaa-4bd8-9c1b-51891b832f36 --- # Compiler Error C3020 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md index 968c628c7a..c144f99147 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3021.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3021.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3021" title: "Compiler Error C3021" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3021" +ms.date: 11/04/2016 f1_keywords: ["C3021"] helpviewer_keywords: ["C3021"] -ms.assetid: 0cef6d97-e267-438a-ac8b-0daf5bbbc2cf --- # Compiler Error C3021 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md index 7c352d250d..a833519ab1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3022.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3022.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3022" title: "Compiler Error C3022" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3022" +ms.date: 11/04/2016 f1_keywords: ["C3022"] helpviewer_keywords: ["C3022"] -ms.assetid: 9f1d444c-6c6e-48d9-9346-69128390aa33 --- # Compiler Error C3022 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md index f99d1ac39e..76419763f3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3023.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3023.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3023" title: "Compiler Error C3023" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3023" +ms.date: 11/04/2016 f1_keywords: ["C3023"] helpviewer_keywords: ["C3023"] -ms.assetid: 89dcce98-3cd7-4931-a50f-87df1d2ebc9b --- # Compiler Error C3023 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md index 0f6864ed9c..4fd7152b8f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3024.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3024.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3024" title: "Compiler Error C3024" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3024" +ms.date: 11/04/2016 f1_keywords: ["C3024"] helpviewer_keywords: ["C3024"] -ms.assetid: 1c031c28-ce37-4de3-aead-cfe76b261856 --- # Compiler Error C3024 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md index 619083a1f1..5f8148aa80 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3025.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3025.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3025" title: "Compiler Error C3025" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3025" +ms.date: 11/04/2016 f1_keywords: ["C3025"] helpviewer_keywords: ["C3025"] -ms.assetid: 4442f5a3-d9ea-4873-b1fb-e7e5bd3cbe5e --- # Compiler Error C3025 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md index 102e9ef052..458980db4a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3026.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3026.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3026" title: "Compiler Error C3026" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3026" +ms.date: 11/04/2016 f1_keywords: ["C3026"] helpviewer_keywords: ["C3026"] -ms.assetid: 3297060e-cc5b-4600-a2db-09bfc4ffa21f --- # Compiler Error C3026 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md index 3a36d706f3..853563e4b6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3027.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3027.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3027" title: "Compiler Error C3027" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3027" +ms.date: 11/04/2016 f1_keywords: ["C3027"] helpviewer_keywords: ["C3027"] -ms.assetid: 6562a5c2-2f28-4b36-91ca-2a64c0f0501a --- # Compiler Error C3027 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md index 953ff6ac40..c4a24a6afb 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3028.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3028.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3028" title: "Compiler Error C3028" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3028" +ms.date: 11/04/2016 f1_keywords: ["C3028"] helpviewer_keywords: ["C3028"] -ms.assetid: 175e697f-8e8f-492a-8456-6240ffbbb900 --- # Compiler Error C3028 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md index 399a2bf04f..a92c60fda2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3029.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3029.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3029" title: "Compiler Error C3029" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3029" +ms.date: 11/04/2016 f1_keywords: ["C3029"] helpviewer_keywords: ["C3029"] -ms.assetid: 655eb04d-504a-468d-8c0c-bda1e5f297b7 --- # Compiler Error C3029 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md index 2bb0c9c44f..96dde7dad6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3030.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3030.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3030" title: "Compiler Error C3030" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3030" +ms.date: 11/04/2016 f1_keywords: ["C3030"] helpviewer_keywords: ["C3030"] -ms.assetid: de92fd7e-29ba-46e8-b43b-f4b985cd74de --- # Compiler Error C3030 From 9b148297b02e0924b942cd9e85234114a0fded7f Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 19 Aug 2025 23:31:14 +0800 Subject: [PATCH 972/981] Add blockquotes for error messages in range [C3421, C3480] --- docs/error-messages/compiler-errors-2/compiler-error-c3421.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3446.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3450.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3451.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3452.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3453.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3454.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3455.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3456.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3457.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3458.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3459.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3460.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3461.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3462.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3463.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3464.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3465.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3466.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3467.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3468.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3469.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3470.md | 2 +- docs/error-messages/compiler-errors-2/compiler-error-c3480.md | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md index f80f790e6b..e20123508d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md @@ -8,7 +8,7 @@ ms.assetid: b52050c6-17a4-424a-8894-337b0cec7010 --- # Compiler Error C3421 -'type' : you cannot call the finalizer for this class as it is either inaccessible or it does not exist +> 'type' : you cannot call the finalizer for this class as it is either inaccessible or it does not exist A finalizer is implicitly private, so it cannot be called from outside its enclosing type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md index 0a6ae8b11e..d8d09f1ec6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md @@ -8,7 +8,7 @@ ms.assetid: 33064548-24e4-46f1-beb1-476e3c3b3fbf --- # Compiler Error C3446 ->'*class*': a default member initializer is not allowed for a member of a value class +> '*class*': a default member initializer is not allowed for a member of a value class In Visual Studio 2015 and earlier, the compiler permitted (but ignored) a default member initializer for a member of a value class. Default initialization of a value class always zero-initializes the members; a default constructor is not permitted. In Visual Studio 2017, default member initializers raise a compiler error, as shown in this example: diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md index ffdbc286a2..594dd01637 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md @@ -8,7 +8,7 @@ ms.assetid: 78892cf7-0b82-4589-90d0-e06666247003 --- # Compiler Error C3450 -'type': not an attribute; cannot specify [System::AttributeUsageAttribute] or [Windows::Foundation::Metadata::AttributeUsageAttribute] +> 'type': not an attribute; cannot specify [System::AttributeUsageAttribute] or [Windows::Foundation::Metadata::AttributeUsageAttribute] A user-defined managed attribute must inherit from . A Windows Runtime attribute must be defined in the `Windows::Foundation::Metadata` namespace. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md index 6e7e9dbe75..e69f0fbcf7 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md @@ -8,7 +8,7 @@ ms.assetid: a4897a69-e3e7-40bb-bb1c-598644904012 --- # Compiler Error C3451 -'attribute': cannot apply unmanaged attribute to 'type' +> 'attribute': cannot apply unmanaged attribute to 'type' A C++ attribute cannot be applied to a CLR type. See [C++ Attributes Reference](../../windows/attributes/attributes-alphabetical-reference.md) for more information. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md index b40ab656fc..68161f69e8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md @@ -8,7 +8,7 @@ ms.assetid: e5293dcf-cb70-4133-ae2a-0bb496950ba0 --- # Compiler Error C3452 -list argument member not constant +> list argument member not constant An argument was passed to an attribute that expected a constant, a value that can be evaluated at compile time. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md index edd640d730..f22bddca96 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md @@ -8,7 +8,7 @@ ms.assetid: dbefdbcf-f697-4239-b7a5-1d99b85e9e7f --- # Compiler Error C3453 -'attribute': attribute not applied because qualifier 'assembly' did not match +> 'attribute': attribute not applied because qualifier 'assembly' did not match Assembly or module level attributes can only be specified as stand-alone instructions. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md index f051c32753..5812da5a58 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md @@ -8,7 +8,7 @@ ms.assetid: dc4e6d57-5b4d-4114-8d6f-22f9ae62925b --- # Compiler Error C3454 -[attribute] not allowed on class declaration +> [attribute] not allowed on class declaration A class must be defined for it to be an attribute. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md index f32ad44b44..55e237683c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md @@ -8,7 +8,7 @@ ms.assetid: 218e5cfe-5391-4eeb-81c2-85c47e3a6cd2 --- # Compiler Error C3455 -'attribute': none of the attribute constructors matched the arguments +> 'attribute': none of the attribute constructors matched the arguments An invalid value was used to declare an attribute. See [attribute](../../windows/attributes/attribute.md) for more information. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md index 73d326827f..613e6e3d74 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md @@ -8,7 +8,7 @@ ms.assetid: 9f781919-aaf2-4725-94a4-44a0b80cc64a --- # Compiler Error C3456 -[source_annotation_attribute] not allowed on managed or WinRT class declaration +> [source_annotation_attribute] not allowed on managed or WinRT class declaration source_annotation_attribute is used to define custom attributes to be used by code analysis. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md index 4b97bea6db..2c35ac62ec 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md @@ -7,7 +7,7 @@ helpviewer_keywords: ["C3457"] --- # Compiler Error C3457 -'attribute': attribute does not support unnamed arguments +> 'attribute': attribute does not support unnamed arguments Source annotation attributes, unlike CLR custom attribute or compiler attributes, only support named arguments. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md index 345783c0e1..582fbd665b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md @@ -8,7 +8,7 @@ ms.assetid: 940202fd-8dcc-4042-9c96-3f9e9127d2f1 --- # Compiler Error C3458 -'attribute1': attribute 'attribute2' already specified for 'construct' +> 'attribute1': attribute 'attribute2' already specified for 'construct' Two attributes that are mutually exclusive were specified for the same construct. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md index 98298a38e2..ede887604c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md @@ -8,7 +8,7 @@ ms.assetid: 3d290a20-d313-4c07-9bd8-c5c159cb169f --- # Compiler Error C3459 -'attribute': attribute allowed only on class indexer (default indexed property) +> 'attribute': attribute allowed only on class indexer (default indexed property) An attribute that is designed to be applied to a class indexer property was used incorrectly. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md index 58c67af4f7..4cda0e3dd3 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md @@ -8,7 +8,7 @@ ms.assetid: adbf8775-10ca-4654-acdf-58dd765351cd --- # Compiler Error C3460 -'type': only a user-defined type can be forwarded +> 'type': only a user-defined type can be forwarded For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md index 4c45c0a6ea..8da9d17dda 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md @@ -8,7 +8,7 @@ ms.assetid: bd66833a-545d-445a-bdfe-dee771a450a4 --- # Compiler Error C3461 -'type': only a managed type can be forwarded +> 'type': only a managed type can be forwarded Type forwarding can only occur on CLR types. See [Classes and Structs](../../extensions/classes-and-structs-cpp-component-extensions.md) for more information. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md index 1711df90e8..91ce5a45bd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md @@ -8,7 +8,7 @@ ms.assetid: 56b75f35-9fad-42d9-a969-eeca5d709bec --- # Compiler Error C3462 -'type': only an imported type can be forwarded +> 'type': only an imported type can be forwarded The TypeForwardedTo attribute must be applied to a type in referenced metadata. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md index 96fbcf90c5..f209848268 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md @@ -8,7 +8,7 @@ ms.assetid: 153efcc0-085c-4615-84ea-d22942618bdf --- # Compiler Error C3463 -'type': type not allowed in attribute 'implements' +> 'type': type not allowed in attribute 'implements' An invalid type was passed to the [implements](../../windows/attributes/implements-cpp.md) attribute. For example, you can pass an interface to `implements`, but you cannot pass a pointer to an interface. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md index 4def91d259..663e5dca04 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md @@ -8,7 +8,7 @@ ms.assetid: 0ede05dc-4486-4921-8e8c-78ab5a2e09c5 --- # Compiler Error C3464 -'type' a nested type cannot be forwarded +> 'type' a nested type cannot be forwarded Type forwarding does not work on nested types. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md index 453ced5d66..8e0d41e10a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md @@ -8,7 +8,7 @@ ms.assetid: aeb815e5-b3fc-4525-afe2-d738e9321df1 --- # Compiler Error C3465 -to use type 'type' you must reference the assembly 'assembly' +> to use type 'type' you must reference the assembly 'assembly' Type forwarding will work for a client application until you recompile the client. When you recompile, you will need a reference for every assembly containing the definition of a type used in your client application. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md index 2f1b223aa9..faf02207e2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md @@ -8,7 +8,7 @@ ms.assetid: 69a877d9-a749-474b-bfc3-8d3fd53ba8fd --- # Compiler Error C3466 -'type' : a specialization of a generic class cannot be forwarded +> 'type' : a specialization of a generic class cannot be forwarded You cannot use type forwarding on a specialization of a generic class. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md index 05af0ad696..ab6612626f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md @@ -8,7 +8,7 @@ ms.assetid: e2b844d0-4920-412f-99fd-cd8051c4aa41 --- # Compiler Error C3467 -'type' : this type has already been forwarded +> 'type' : this type has already been forwarded The compiler found more than one forward type declaration for the same type. Only one declaration per type is allowed. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md index 62e82fd913..be90bee5ab 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md @@ -8,7 +8,7 @@ ms.assetid: cfd320db-2f6e-4e0d-ba02-e79ece87e1e0 --- # Compiler Error C3468 -'type' : you can only forward a type to an assembly: +> 'type' : you can only forward a type to an assembly: '`file`' is not an assembly diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md index e45fb32a38..790b564a83 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md @@ -8,7 +8,7 @@ ms.assetid: e23b0e5c-c704-4e67-a868-bf02c2055d85 --- # Compiler Error C3469 -'type' : a generic class cannot be forwarded +> 'type' : a generic class cannot be forwarded You cannot use type forwarding on a generic class. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md index a487c4e889..758f0fd8ad 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md @@ -8,7 +8,7 @@ ms.assetid: 170c7a9d-214d-41b1-8f15-d4a4fc38aaa5 --- # Compiler Error C3470 -'type' : a class cannot have both an indexer (default indexed property) and an operator[] +> 'type' : a class cannot have both an indexer (default indexed property) and an operator[] A type cannot define both a default indexer and an operator[]. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md index 261faca8ab..c970a90b76 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md @@ -8,7 +8,7 @@ ms.assetid: 7b2e055a-9604-4d13-861b-b38bda1a6940 --- # Compiler Error C3480 -'var': a lambda capture variable must be from an enclosing function scope +> 'var': a lambda capture variable must be from an enclosing function scope The lambda capture variable is not from an enclosing function scope. From ce25a975f76d73363cf6e924a32666b9b9f35ab3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 19 Aug 2025 23:37:34 +0800 Subject: [PATCH 973/981] Add "Remarks" and "Example" headings for error references in range [C3421, C3480] --- docs/error-messages/compiler-errors-2/compiler-error-c3421.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3445.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3446.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3450.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3451.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3452.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3453.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3454.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3455.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3456.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3457.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3458.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3459.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3460.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3461.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3462.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3463.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3464.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3465.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3466.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3467.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3468.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3469.md | 4 +++- docs/error-messages/compiler-errors-2/compiler-error-c3470.md | 2 ++ docs/error-messages/compiler-errors-2/compiler-error-c3480.md | 4 +++- 25 files changed, 60 insertions(+), 10 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md index e20123508d..af2fef6438 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md @@ -10,6 +10,8 @@ ms.assetid: b52050c6-17a4-424a-8894-337b0cec7010 > 'type' : you cannot call the finalizer for this class as it is either inaccessible or it does not exist +## Remarks + A finalizer is implicitly private, so it cannot be called from outside its enclosing type. For more information, see [Destructors and finalizers in How to: Define and consume classes and structs (C++/CLI)](../../dotnet/how-to-define-and-consume-classes-and-structs-cpp-cli.md#BKMK_Destructors_and_finalizers). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md index 3fc2bcb631..4628a74f9f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md @@ -10,6 +10,8 @@ ms.assetid: 0d272bfc-136b-4025-a9ba-5e4eea5f8215 > copy-list-initialization of '*type*' cannot use an explicit constructor +## Remarks + According to the ISO C++17 standard, the compiler is required to consider an explicit constructor for overload resolution in copy-list-initialization, but must raise an error if that overload is actually chosen. Starting in Visual Studio 2017, the compiler finds errors related to object creation by using an initializer list that were not found by Visual Studio 2015. These errors could lead to crashes or undefined behavior at runtime. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md index d8d09f1ec6..0b2121841b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md @@ -10,6 +10,8 @@ ms.assetid: 33064548-24e4-46f1-beb1-476e3c3b3fbf > '*class*': a default member initializer is not allowed for a member of a value class +## Remarks + In Visual Studio 2015 and earlier, the compiler permitted (but ignored) a default member initializer for a member of a value class. Default initialization of a value class always zero-initializes the members; a default constructor is not permitted. In Visual Studio 2017, default member initializers raise a compiler error, as shown in this example: ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md index 594dd01637..ac97c365ed 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md @@ -10,6 +10,8 @@ ms.assetid: 78892cf7-0b82-4589-90d0-e06666247003 > 'type': not an attribute; cannot specify [System::AttributeUsageAttribute] or [Windows::Foundation::Metadata::AttributeUsageAttribute] +## Remarks + A user-defined managed attribute must inherit from . A Windows Runtime attribute must be defined in the `Windows::Foundation::Metadata` namespace. For more information, see [User-Defined Attributes](../../extensions/user-defined-attributes-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md index e69f0fbcf7..8213335625 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md @@ -10,6 +10,8 @@ ms.assetid: a4897a69-e3e7-40bb-bb1c-598644904012 > 'attribute': cannot apply unmanaged attribute to 'type' +## Remarks + A C++ attribute cannot be applied to a CLR type. See [C++ Attributes Reference](../../windows/attributes/attributes-alphabetical-reference.md) for more information. For more information, see [User-Defined Attributes](../../extensions/user-defined-attributes-cpp-component-extensions.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md index 68161f69e8..fadee495aa 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md @@ -10,6 +10,8 @@ ms.assetid: e5293dcf-cb70-4133-ae2a-0bb496950ba0 > list argument member not constant +## Remarks + An argument was passed to an attribute that expected a constant, a value that can be evaluated at compile time. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md index f22bddca96..a63ec87155 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md @@ -10,6 +10,8 @@ ms.assetid: dbefdbcf-f697-4239-b7a5-1d99b85e9e7f > 'attribute': attribute not applied because qualifier 'assembly' did not match +## Remarks + Assembly or module level attributes can only be specified as stand-alone instructions. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md index 5812da5a58..f32b69c58e 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md @@ -10,6 +10,8 @@ ms.assetid: dc4e6d57-5b4d-4114-8d6f-22f9ae62925b > [attribute] not allowed on class declaration +## Remarks + A class must be defined for it to be an attribute. For more information, see [attribute](../../windows/attributes/attribute.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md index 55e237683c..47c3ef98d1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md @@ -10,6 +10,8 @@ ms.assetid: 218e5cfe-5391-4eeb-81c2-85c47e3a6cd2 > 'attribute': none of the attribute constructors matched the arguments +## Remarks + An invalid value was used to declare an attribute. See [attribute](../../windows/attributes/attribute.md) for more information. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md index 613e6e3d74..98b8c04eb8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md @@ -10,6 +10,8 @@ ms.assetid: 9f781919-aaf2-4725-94a4-44a0b80cc64a > [source_annotation_attribute] not allowed on managed or WinRT class declaration +## Remarks + source_annotation_attribute is used to define custom attributes to be used by code analysis. These custom attributes are only useful if there is a corresponding plugin that understands the attribute. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md index 2c35ac62ec..fbf417ec4c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md @@ -9,6 +9,8 @@ helpviewer_keywords: ["C3457"] > 'attribute': attribute does not support unnamed arguments +## Remarks + Source annotation attributes, unlike CLR custom attribute or compiler attributes, only support named arguments. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md index 582fbd665b..4af142f2f4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md @@ -10,6 +10,8 @@ ms.assetid: 940202fd-8dcc-4042-9c96-3f9e9127d2f1 > 'attribute1': attribute 'attribute2' already specified for 'construct' +## Remarks + Two attributes that are mutually exclusive were specified for the same construct. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md index ede887604c..628f915439 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md @@ -10,6 +10,8 @@ ms.assetid: 3d290a20-d313-4c07-9bd8-c5c159cb169f > 'attribute': attribute allowed only on class indexer (default indexed property) +## Remarks + An attribute that is designed to be applied to a class indexer property was used incorrectly. For more information, see [How to: Use Properties in C++/CLI](../../dotnet/how-to-use-properties-in-cpp-cli.md). diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md index 4cda0e3dd3..9efb6ceb0d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md @@ -10,9 +10,11 @@ ms.assetid: adbf8775-10ca-4654-acdf-58dd765351cd > 'type': only a user-defined type can be forwarded +## Remarks + For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md index 8da9d17dda..15a9db450f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md @@ -10,11 +10,13 @@ ms.assetid: bd66833a-545d-445a-bdfe-dee771a450a4 > 'type': only a managed type can be forwarded +## Remarks + Type forwarding can only occur on CLR types. See [Classes and Structs](../../extensions/classes-and-structs-cpp-component-extensions.md) for more information. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md index 91ce5a45bd..fc70d1b34c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md @@ -10,11 +10,13 @@ ms.assetid: 56b75f35-9fad-42d9-a969-eeca5d709bec > 'type': only an imported type can be forwarded +## Remarks + The TypeForwardedTo attribute must be applied to a type in referenced metadata. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md index f209848268..89e1cdb147 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md @@ -10,6 +10,8 @@ ms.assetid: 153efcc0-085c-4615-84ea-d22942618bdf > 'type': type not allowed in attribute 'implements' +## Remarks + An invalid type was passed to the [implements](../../windows/attributes/implements-cpp.md) attribute. For example, you can pass an interface to `implements`, but you cannot pass a pointer to an interface. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md index 663e5dca04..2bbc916577 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md @@ -10,11 +10,13 @@ ms.assetid: 0ede05dc-4486-4921-8e8c-78ab5a2e09c5 > 'type' a nested type cannot be forwarded +## Remarks + Type forwarding does not work on nested types. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md index 8e0d41e10a..ee62fb4652 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md @@ -10,11 +10,13 @@ ms.assetid: aeb815e5-b3fc-4525-afe2-d738e9321df1 > to use type 'type' you must reference the assembly 'assembly' +## Remarks + Type forwarding will work for a client application until you recompile the client. When you recompile, you will need a reference for every assembly containing the definition of a type used in your client application. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample builds an assembly that contains the new location of a type. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md index faf02207e2..388a253eb4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md @@ -10,11 +10,13 @@ ms.assetid: 69a877d9-a749-474b-bfc3-8d3fd53ba8fd > 'type' : a specialization of a generic class cannot be forwarded +## Remarks + You cannot use type forwarding on a specialization of a generic class. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md index ab6612626f..4cb0758565 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md @@ -10,11 +10,13 @@ ms.assetid: e2b844d0-4920-412f-99fd-cd8051c4aa41 > 'type' : this type has already been forwarded +## Remarks + The compiler found more than one forward type declaration for the same type. Only one declaration per type is allowed. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md index be90bee5ab..0a53403737 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md @@ -10,13 +10,15 @@ ms.assetid: cfd320db-2f6e-4e0d-ba02-e79ece87e1e0 > 'type' : you can only forward a type to an assembly: +## Remarks + '`file`' is not an assembly Only types in an assembly can be forwarded. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a module. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md index 790b564a83..7591100ec6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md @@ -10,11 +10,13 @@ ms.assetid: e23b0e5c-c704-4e67-a868-bf02c2055d85 > 'type' : a generic class cannot be forwarded +## Remarks + You cannot use type forwarding on a generic class. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). -## Examples +## Example The following sample creates a component. diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md index 758f0fd8ad..fabcbfa4ea 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md @@ -10,6 +10,8 @@ ms.assetid: 170c7a9d-214d-41b1-8f15-d4a4fc38aaa5 > 'type' : a class cannot have both an indexer (default indexed property) and an operator[] +## Remarks + A type cannot define both a default indexer and an operator[]. ## Example diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md index c970a90b76..08162d54df 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md @@ -10,13 +10,15 @@ ms.assetid: 7b2e055a-9604-4d13-861b-b38bda1a6940 > 'var': a lambda capture variable must be from an enclosing function scope +## Remarks + The lambda capture variable is not from an enclosing function scope. ### To correct this error - Remove the variable from the capture list of the lambda expression. -## Examples +## Example The following example generates C3480 because the variable `global` is not from an enclosing function scope: From 186328912abf9c58458d41584fc570b0eb8aac05 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 19 Aug 2025 23:39:21 +0800 Subject: [PATCH 974/981] Replace term "sample" with "example" for error references in range [C3421, C3480] --- .../compiler-errors-2/compiler-error-c3421.md | 2 +- .../compiler-errors-2/compiler-error-c3445.md | 2 +- .../compiler-errors-2/compiler-error-c3446.md | 2 +- .../compiler-errors-2/compiler-error-c3450.md | 2 +- .../compiler-errors-2/compiler-error-c3451.md | 2 +- .../compiler-errors-2/compiler-error-c3452.md | 2 +- .../compiler-errors-2/compiler-error-c3453.md | 2 +- .../compiler-errors-2/compiler-error-c3454.md | 2 +- .../compiler-errors-2/compiler-error-c3455.md | 2 +- .../compiler-errors-2/compiler-error-c3457.md | 2 +- .../compiler-errors-2/compiler-error-c3458.md | 2 +- .../compiler-errors-2/compiler-error-c3459.md | 2 +- .../compiler-errors-2/compiler-error-c3460.md | 4 ++-- .../compiler-errors-2/compiler-error-c3461.md | 4 ++-- .../compiler-errors-2/compiler-error-c3462.md | 4 ++-- .../compiler-errors-2/compiler-error-c3463.md | 2 +- .../compiler-errors-2/compiler-error-c3464.md | 4 ++-- .../compiler-errors-2/compiler-error-c3465.md | 6 +++--- .../compiler-errors-2/compiler-error-c3466.md | 4 ++-- .../compiler-errors-2/compiler-error-c3467.md | 4 ++-- .../compiler-errors-2/compiler-error-c3468.md | 4 ++-- .../compiler-errors-2/compiler-error-c3469.md | 4 ++-- .../compiler-errors-2/compiler-error-c3470.md | 2 +- 23 files changed, 33 insertions(+), 33 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md index af2fef6438..cdc579a65f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md @@ -18,7 +18,7 @@ For more information, see [Destructors and finalizers in How to: Define and cons ## Example -The following sample generates C3421. +The following example generates C3421. ```cpp // C3421.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md index 4628a74f9f..c797df5068 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md @@ -18,7 +18,7 @@ Starting in Visual Studio 2017, the compiler finds errors related to object crea ## Example -The following sample generates C3445. +The following example generates C3445. ```cpp // C3445.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md index 0b2121841b..17008c480f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md @@ -16,7 +16,7 @@ In Visual Studio 2015 and earlier, the compiler permitted (but ignored) a defaul ## Example -The following sample generates C3446 in Visual Studio 2017 and later: +The following example generates C3446 in Visual Studio 2017 and later: ```cpp // C3446.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md index ac97c365ed..3c845a4550 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md @@ -18,7 +18,7 @@ For more information, see [User-Defined Attributes](../../extensions/user-define ## Example -The following sample generates C3450 and shows how to fix it. +The following example generates C3450 and shows how to fix it. ```cpp // C3450.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md index 8213335625..cf4730e1d1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md @@ -20,7 +20,7 @@ This error can be generated as a result of compiler conformance work that was do ## Example -The following sample generates C3451. +The following example generates C3451. ```cpp // C3451.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md index fadee495aa..3a21f15cdd 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md @@ -16,7 +16,7 @@ An argument was passed to an attribute that expected a constant, a value that ca ## Example -The following sample generates C3452. +The following example generates C3452. ```cpp // C3452.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md index a63ec87155..db00cabe18 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md @@ -16,7 +16,7 @@ Assembly or module level attributes can only be specified as stand-alone instruc ## Example -The following sample generates C3453. +The following example generates C3453. ```cpp // C3453.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md index f32b69c58e..d9d08cf5c5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md @@ -18,7 +18,7 @@ For more information, see [attribute](../../windows/attributes/attribute.md). ## Example -The following sample generates C3454. +The following example generates C3454. ```cpp // C3454.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md index 47c3ef98d1..13b86851c1 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md @@ -16,7 +16,7 @@ An invalid value was used to declare an attribute. See [attribute](../../window ## Example -The following sample generates C3455. +The following example generates C3455. ```cpp // C3455.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md index fbf417ec4c..dc7ffe0c88 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3457.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3457.md @@ -15,7 +15,7 @@ Source annotation attributes, unlike CLR custom attribute or compiler attributes ## Example -The following sample generates C3457. +The following example generates C3457. ```cpp #include "SourceAnnotations.h" diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md index 4af142f2f4..91cb6118b6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md @@ -16,7 +16,7 @@ Two attributes that are mutually exclusive were specified for the same construct ## Example -The following sample generates C3458 +The following example generates C3458 ```cpp // C3458.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md index 628f915439..d011066886 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md @@ -18,7 +18,7 @@ For more information, see [How to: Use Properties in C++/CLI](../../dotnet/how-t ## Example -The following sample generates C3459. +The following example generates C3459. ```cpp // C3459.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md index 9efb6ceb0d..1529a7c765 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md @@ -16,7 +16,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3460.cpp @@ -24,7 +24,7 @@ The following sample creates a component. public ref class R {}; ``` -The following sample generates C3460. +The following example generates C3460. ```cpp // C3460_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md index 15a9db450f..3cfda7fc45 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3461.cpp @@ -26,7 +26,7 @@ The following sample creates a component. public ref class R {}; ``` -The following sample generates C3461. +The following example generates C3461. ```cpp // C3461b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md index fc70d1b34c..342153306c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3462.cpp @@ -26,7 +26,7 @@ The following sample creates a component. public ref class R {}; ``` -The following sample generates C3462. +The following example generates C3462. ```cpp // C3462b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md index 89e1cdb147..214d73195a 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md @@ -16,7 +16,7 @@ An invalid type was passed to the [implements](../../windows/attributes/implemen ## Example -The following sample generates C3463. +The following example generates C3463. ```cpp // C3463.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md index 2bbc916577..2c69155da2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3464.cpp @@ -29,7 +29,7 @@ public: }; ``` -The following sample generates C3464. +The following example generates C3464. ```cpp // C3464_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md index ee62fb4652..bd0a359033 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample builds an assembly that contains the new location of a type. +The following example builds an assembly that contains the new location of a type. ```cpp // C3465.cpp @@ -29,7 +29,7 @@ public: }; ``` -The following sample builds an assembly that used to contain the definition of the type, but now contains forwarding syntax for the type. +The following example builds an assembly that used to contain the definition of the type, but now contains forwarding syntax for the type. ```cpp // C3465_b.cpp @@ -38,7 +38,7 @@ The following sample builds an assembly that used to contain the definition of t [ assembly:TypeForwardedTo(R::typeid) ]; ``` -The following sample generates C3465. +The following example generates C3465. ```cpp // C3465_c.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md index 388a253eb4..a9bbb5a9d8 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3466.cpp @@ -29,7 +29,7 @@ public ref class GR {}; public ref class GR2 {}; ``` -The following sample generates C3466. +The following example generates C3466. ```cpp // C3466_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md index 4cb0758565..adc2cec0ed 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3467.cpp @@ -26,7 +26,7 @@ The following sample creates a component. public ref class R {}; ``` -The following sample generates C3467. +The following example generates C3467. ```cpp // C3467_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md index 0a53403737..2b842a0fb0 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md @@ -20,7 +20,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a module. +The following example creates a module. ```cpp // C3468.cpp @@ -28,7 +28,7 @@ The following sample creates a module. public ref class R {}; ``` -The following sample generates C3468. +The following example generates C3468. ```cpp // C3468_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md index 7591100ec6..80e7a7bc06 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md @@ -18,7 +18,7 @@ For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forw ## Example -The following sample creates a component. +The following example creates a component. ```cpp // C3469.cpp @@ -29,7 +29,7 @@ public ref class GR {}; public ref class GR2 {}; ``` -The following sample generates C3466. +The following example generates C3466. ```cpp // C3469_b.cpp diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md index fabcbfa4ea..71f1d4cfed 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md @@ -16,7 +16,7 @@ A type cannot define both a default indexer and an operator[]. ## Example -The following sample generates C3470 +The following example generates C3470 ```cpp // C3470.cpp From 2b2b997f1934fec245fbb9b62c71d104dc7a16d4 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Tue, 19 Aug 2025 23:43:31 +0800 Subject: [PATCH 975/981] Update metadata for error references in range [C3421, C3480] --- .../error-messages/compiler-errors-2/compiler-error-c3421.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3445.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3446.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3450.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3451.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3452.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3453.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3454.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3455.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3456.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3458.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3459.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3460.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3461.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3462.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3463.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3464.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3465.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3466.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3467.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3468.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3469.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3470.md | 5 ++--- .../error-messages/compiler-errors-2/compiler-error-c3480.md | 5 ++--- 24 files changed, 48 insertions(+), 72 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md index cdc579a65f..d3c41e7bda 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3421.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3421.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3421" title: "Compiler Error C3421" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3421" +ms.date: 11/04/2016 f1_keywords: ["C3421"] helpviewer_keywords: ["C3421"] -ms.assetid: b52050c6-17a4-424a-8894-337b0cec7010 --- # Compiler Error C3421 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md index c797df5068..7add75b031 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3445.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3445.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3445" title: "Compiler Error C3445" -ms.date: "04/10/2017" +description: "Learn more about: Compiler Error C3445" +ms.date: 04/10/2017 f1_keywords: ["C3445"] helpviewer_keywords: ["C3445"] -ms.assetid: 0d272bfc-136b-4025-a9ba-5e4eea5f8215 --- # Compiler Error C3445 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md index 17008c480f..46fe4603c2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3446.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3446.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3446" title: "Compiler Error C3446" -ms.date: "07/21/2017" +description: "Learn more about: Compiler Error C3446" +ms.date: 07/21/2017 f1_keywords: ["C3446"] helpviewer_keywords: ["C3446"] -ms.assetid: 33064548-24e4-46f1-beb1-476e3c3b3fbf --- # Compiler Error C3446 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md index 3c845a4550..1b8c1d6bf6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3450.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3450.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3450" title: "Compiler Error C3450" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3450" +ms.date: 11/04/2016 f1_keywords: ["C3450"] helpviewer_keywords: ["C3450"] -ms.assetid: 78892cf7-0b82-4589-90d0-e06666247003 --- # Compiler Error C3450 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md index cf4730e1d1..17b42bf6a5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3451.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3451.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3451" title: "Compiler Error C3451" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3451" +ms.date: 11/04/2016 f1_keywords: ["C3451"] helpviewer_keywords: ["C3451"] -ms.assetid: a4897a69-e3e7-40bb-bb1c-598644904012 --- # Compiler Error C3451 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md index 3a21f15cdd..4a112bc393 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3452.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3452.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3452" title: "Compiler Error C3452" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3452" +ms.date: 11/04/2016 f1_keywords: ["C3452"] helpviewer_keywords: ["C3452"] -ms.assetid: e5293dcf-cb70-4133-ae2a-0bb496950ba0 --- # Compiler Error C3452 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md index db00cabe18..d04287ade5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3453.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3453.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3453" title: "Compiler Error C3453" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3453" +ms.date: 11/04/2016 f1_keywords: ["C3453"] helpviewer_keywords: ["C3453"] -ms.assetid: dbefdbcf-f697-4239-b7a5-1d99b85e9e7f --- # Compiler Error C3453 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md index d9d08cf5c5..c7034d1663 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3454.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3454.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3454" title: "Compiler Error C3454" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3454" +ms.date: 11/04/2016 f1_keywords: ["C3454"] helpviewer_keywords: ["C3454"] -ms.assetid: dc4e6d57-5b4d-4114-8d6f-22f9ae62925b --- # Compiler Error C3454 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md index 13b86851c1..5cdd85744c 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3455.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3455.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3455" title: "Compiler Error C3455" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3455" +ms.date: 11/04/2016 f1_keywords: ["C3455"] helpviewer_keywords: ["C3455"] -ms.assetid: 218e5cfe-5391-4eeb-81c2-85c47e3a6cd2 --- # Compiler Error C3455 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md index 98b8c04eb8..996bf27c05 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3456.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3456.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3456" title: "Compiler Error C3456" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3456" +ms.date: 11/04/2016 f1_keywords: ["C3456"] helpviewer_keywords: ["C3456"] -ms.assetid: 9f781919-aaf2-4725-94a4-44a0b80cc64a --- # Compiler Error C3456 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md index 91cb6118b6..a6d8238079 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3458.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3458.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3458" title: "Compiler Error C3458" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3458" +ms.date: 11/04/2016 f1_keywords: ["C3458"] helpviewer_keywords: ["C3458"] -ms.assetid: 940202fd-8dcc-4042-9c96-3f9e9127d2f1 --- # Compiler Error C3458 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md index d011066886..4c8ad60d6f 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3459.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3459.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3459" title: "Compiler Error C3459" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3459" +ms.date: 11/04/2016 f1_keywords: ["C3459"] helpviewer_keywords: ["C3459"] -ms.assetid: 3d290a20-d313-4c07-9bd8-c5c159cb169f --- # Compiler Error C3459 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md index 1529a7c765..e002f487f9 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3460.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3460.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3460" title: "Compiler Error C3460" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3460" +ms.date: 11/04/2016 f1_keywords: ["C3460"] helpviewer_keywords: ["C3460"] -ms.assetid: adbf8775-10ca-4654-acdf-58dd765351cd --- # Compiler Error C3460 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md index 3cfda7fc45..9c801ba167 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3461.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3461.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3461" title: "Compiler Error C3461" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3461" +ms.date: 11/04/2016 f1_keywords: ["C3461"] helpviewer_keywords: ["C3461"] -ms.assetid: bd66833a-545d-445a-bdfe-dee771a450a4 --- # Compiler Error C3461 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md index 342153306c..1c48adb2f4 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3462.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3462.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3462" title: "Compiler Error C3462" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3462" +ms.date: 11/04/2016 f1_keywords: ["C3462"] helpviewer_keywords: ["C3462"] -ms.assetid: 56b75f35-9fad-42d9-a969-eeca5d709bec --- # Compiler Error C3462 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md index 214d73195a..e2b9d5fff2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3463.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3463.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3463" title: "Compiler Error C3463" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3463" +ms.date: 11/04/2016 f1_keywords: ["C3463"] helpviewer_keywords: ["C3463"] -ms.assetid: 153efcc0-085c-4615-84ea-d22942618bdf --- # Compiler Error C3463 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md index 2c69155da2..684c143ea6 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3464.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3464.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3464" title: "Compiler Error C3464" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3464" +ms.date: 11/04/2016 f1_keywords: ["C3464"] helpviewer_keywords: ["C3464"] -ms.assetid: 0ede05dc-4486-4921-8e8c-78ab5a2e09c5 --- # Compiler Error C3464 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md index bd0a359033..b49fc9e1f2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3465.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3465.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3465" title: "Compiler Error C3465" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3465" +ms.date: 11/04/2016 f1_keywords: ["C3465"] helpviewer_keywords: ["C3465"] -ms.assetid: aeb815e5-b3fc-4525-afe2-d738e9321df1 --- # Compiler Error C3465 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md index a9bbb5a9d8..9183287145 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3466.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3466.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3466" title: "Compiler Error C3466" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3466" +ms.date: 11/04/2016 f1_keywords: ["C3466"] helpviewer_keywords: ["C3466"] -ms.assetid: 69a877d9-a749-474b-bfc3-8d3fd53ba8fd --- # Compiler Error C3466 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md index adc2cec0ed..4b253247f2 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3467.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3467.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3467" title: "Compiler Error C3467" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3467" +ms.date: 11/04/2016 f1_keywords: ["C3467"] helpviewer_keywords: ["C3467"] -ms.assetid: e2b844d0-4920-412f-99fd-cd8051c4aa41 --- # Compiler Error C3467 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md index 2b842a0fb0..fcde4b999d 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3468" title: "Compiler Error C3468" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3468" +ms.date: 11/04/2016 f1_keywords: ["C3468"] helpviewer_keywords: ["C3468"] -ms.assetid: cfd320db-2f6e-4e0d-ba02-e79ece87e1e0 --- # Compiler Error C3468 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md index 80e7a7bc06..3977e7f2c5 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3469.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3469.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3469" title: "Compiler Error C3469" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3469" +ms.date: 11/04/2016 f1_keywords: ["C3469"] helpviewer_keywords: ["C3469"] -ms.assetid: e23b0e5c-c704-4e67-a868-bf02c2055d85 --- # Compiler Error C3469 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md index 71f1d4cfed..ebbbfbe209 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3470.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3470.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3470" title: "Compiler Error C3470" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3470" +ms.date: 11/04/2016 f1_keywords: ["C3470"] helpviewer_keywords: ["C3470"] -ms.assetid: 170c7a9d-214d-41b1-8f15-d4a4fc38aaa5 --- # Compiler Error C3470 diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md index 08162d54df..a032ea4e1b 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3480.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3480.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C3480" title: "Compiler Error C3480" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C3480" +ms.date: 11/04/2016 f1_keywords: ["C3480"] helpviewer_keywords: ["C3480"] -ms.assetid: 7b2e055a-9604-4d13-861b-b38bda1a6940 --- # Compiler Error C3480 From ac75298c1700358d71bfabb98993f2c8c97948ab Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Tue, 19 Aug 2025 18:09:05 -0700 Subject: [PATCH 976/981] add metdata to classify freshness tiers --- docs/docfx.json | 166 +++++++++++++++++++++++++++--------------------- 1 file changed, 92 insertions(+), 74 deletions(-) diff --git a/docs/docfx.json b/docs/docfx.json index 1621b18044..1dd4d169a4 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -38,7 +38,7 @@ "externalReference": [], "globalMetadata": { "breadcrumb_path": "~/_breadcrumb/toc.yml", -  "uhfHeaderId": "MSDocsHeader-CPP", + "uhfHeaderId": "MSDocsHeader-CPP", "ROBOTS": "INDEX,FOLLOW", "manager": "coxford", "ms.date": "11/16/2016", @@ -116,9 +116,7 @@ "intrinsics/**.md": "reference", "mfc/reference/**.md": "reference", "overview/**.md": "overview", - "parallel/amp/reference/**.md": "reference", - "parallel/concrt/reference/**.md": "reference", - "parallel/openmp/reference/**.md": "reference", + "parallel/**.md": "reference", "preprocessor/**.md": "reference", "safeint/**.md": "reference", "sanitizers/**.md": "reference", @@ -151,8 +149,6 @@ "linux/**.md": "linux-development", "mfc/**.md": "mfc-library", "overview/**.md": "tools", - "parallel/amp/**.md": "parallel-programming", - "parallel/concrt/**.md": "parallel-programming", "parallel/**.md": "parallel-programming", "porting/**.md": "cpp-lang", "preprocessor/**.md": "cpp-lang", @@ -163,79 +159,101 @@ "text/**.md": "windows-development", "windows/**.md": "windows-development" }, + "ms.update-cycle": { + "assembler/**.{md,yml}": "3650-days", + "attributes/**.{md,yml}": "3650-days", + "atl/**.{md,yml}": "3650-days", + "atl-mfc-shared/**.{md,yml}": "3650-days", + "build/**.{md,yml}": "1825-days", + "c-language/**.{md,yml}": "3650-days", + "c-runtime-library/**.{md,yml}": "3650-days", + "cpp/**.md": "1095-days", + "cppcx/**.{md,yml}": "3650-days", + "cross-platform/**.{md,yml}": "1825-days", + "data/**.{md,yml}": "3650-days", + "dotnet/**.{md,yml}": "3650-days", + "embedded/**.{md,yml}": "3650-days", + "error-messages/**.{md,yml}": "3650-days", + "extensions/**.{md,yml}": "3650-days", + "intrinsics/**.{md,yml}": "3650-days", + "mfc/**.{md,yml}": "3650-days", + "parallel/**.{md,yml}": "3650-days", + "porting/**.{md,yml}": "1095-days", + "preprocessor/**.{md,yml}": "3650-days", + "safeint/**.{md,yml}": "3650-days", + "standard-library/**.{md,yml}": "3650-days", + "text/**.{md,yml}": "3650-days", + "windows/**.{md,yml}": "1825-days" + }, "author": { "index.md": "tylermsft", - "assembler/**.md": "tylermsft", - "attributes/**.md": "tylermsft", - "atl/**.md": "tylermsft", - "atl-mfc-shared/**.md": "tylermsft", - "build/**.md": "tylermsft", - "build-insights/**.md": "tylermsft", - "c-language/**.md": "tylermsft", - "c-runtime-library/**.md": "tylermsft", - "cloud/**.md": "tylermsft", - "code-quality/**.md": "tylermsft", - "cpp/**.md": "tylermsft", - "cppcx/**.md": "tylermsft", - "cross-platform/**.md": "tylermsft", - "data/**.md": "tylermsft", - "dotnet/**.md": "tylermsft", - "error-messages/**.md": "tylermsft", - "extensions/**.md": "tylermsft", - "get-started/**.md": "tylermsft", - "ide/**.md": "tylermsft", - "intrinsics/**.md": "tylermsft", - "linux/**.md": "tylermsft", - "mfc/**.md": "tylermsft", - "overview/**.md": "tylermsft", - "parallel/amp/**.md": "tylermsft", - "parallel/concrt/**.md": "tylermsft", - "parallel/**.md": "tylermsft", - "porting/**.md": "tylermsft", - "preprocessor/**.md": "tylermsft", - "safeint/**.md": "tylermsft", - "sanitizers/**.md": "tylermsft", - "security/**.md": "tylermsft", - "standard-library/**.md": "tylermsft", - "text/**.md": "tylermsft", - "windows/**.md": "tylermsft" + "assembler/**.{md,yml}": "tylermsft", + "attributes/**.{md,yml}": "tylermsft", + "atl/**.{md,yml}": "tylermsft", + "atl-mfc-shared/**.{md,yml}": "tylermsft", + "build/**.{md,yml}": "tylermsft", + "build-insights/**.{md,yml}": "tylermsft", + "c-language/**.{md,yml}": "tylermsft", + "c-runtime-library/**.{md,yml}": "tylermsft", + "cloud/**.{md,yml}": "tylermsft", + "code-quality/**.{md,yml}": "tylermsft", + "cpp/**.{md,yml}": "tylermsft", + "cppcx/**.{md,yml}": "tylermsft", + "cross-platform/**.{md,yml}": "tylermsft", + "data/**.{md,yml}": "tylermsft", + "dotnet/**.{md,yml}": "tylermsft", + "error-messages/**.{md,yml}": "tylermsft", + "extensions/**.{md,yml}": "tylermsft", + "get-started/**.{md,yml}": "tylermsft", + "ide/**.{md,yml}": "tylermsft", + "intrinsics/**.{md,yml}": "tylermsft", + "linux/**.{md,yml}": "tylermsft", + "mfc/**.{md,yml}": "tylermsft", + "overview/**.{md,yml}": "tylermsft", + "parallel/**.{md,yml}": "tylermsft", + "porting/**.{md,yml}": "tylermsft", + "preprocessor/**.{md,yml}": "tylermsft", + "safeint/**.{md,yml}": "tylermsft", + "sanitizers/**.{md,yml}": "tylermsft", + "security/**.{md,yml}": "tylermsft", + "standard-library/**.{md,yml}": "tylermsft", + "text/**.{md,yml}": "tylermsft", + "windows/**.{md,yml}": "tylermsft" }, "ms.author": { "index.md": "twhitney", - "assembler/**.md": "twhitney", - "atl/**.md": "twhitney", - "atl-mfc-shared/**.md": "twhitney", - "attributes/**.md": "twhitney", - "build/**.md": "twhitney", - "build-insights/**.md": "twhitney", - "c-language/**.md": "twhitney", - "c-runtime-library/**.md": "twhitney", - "cloud/**.md": "twhitney", - "code-quality/**.md": "twhitney", - "cpp/**.md": "twhitney", - "cppcx/**.md": "twhitney", - "cross-platform/**.md": "twhitney", - "data/**.md": "twhitney", - "dotnet/**.md": "twhitney", - "error-messages/**.md": "twhitney", - "extensions/**.md": "twhitney", - "get-started/**.md": "twhitney", - "ide/**.md": "twhitney", - "intrinsics/**.md": "twhitney", - "linux/**.md": "twhitney", - "mfc/**.md": "twhitney", - "overview/**.md": "twhitney", - "parallel/amp/**.md": "twhitney", - "parallel/concrt/**.md": "twhitney", - "parallel/**.md": "twhitney", - "porting/**.md": "twhitney", - "preprocessor/**.md": "twhitney", - "safeint/**.md": "twhitney", - "sanitizers/**.md": "twhitney", - "security/**.md": "twhitney", - "standard-library/**.md": "twhitney", - "text/**.md": "twhitney", - "windows/**.md": "twhitney" + "assembler/**.{md,yml}": "twhitney", + "atl/**.{md,yml}": "twhitney", + "atl-mfc-shared/**.{md,yml}": "twhitney", + "attributes/**.{md,yml}": "twhitney", + "build/**.{md,yml}": "twhitney", + "build-insights/**.{md,yml}": "twhitney", + "c-language/**.{md,yml}": "twhitney", + "c-runtime-library/**.{md,yml}": "twhitney", + "cloud/**.{md,yml}": "twhitney", + "code-quality/**.{md,yml}": "twhitney", + "cpp/**.{md,yml}": "twhitney", + "cppcx/**.{md,yml}": "twhitney", + "cross-platform/**.{md,yml}": "twhitney", + "data/**.{md,yml}": "twhitney", + "dotnet/**.{md,yml}": "twhitney", + "error-messages/**.{md,yml}": "twhitney", + "extensions/**.{md,yml}": "twhitney", + "get-started/**.{md,yml}": "twhitney", + "ide/**.{md,yml}": "twhitney", + "intrinsics/**.{md,yml}": "twhitney", + "linux/**.{md,yml}": "twhitney", + "mfc/**.{md,yml}": "twhitney", + "overview/**.{md,yml}": "twhitney", + "parallel/**.{md,yml}": "twhitney", + "porting/**.{md,yml}": "twhitney", + "preprocessor/**.{md,yml}": "twhitney", + "safeint/**.{md,yml}": "twhitney", + "sanitizers/**.{md,yml}": "twhitney", + "security/**.{md,yml}": "twhitney", + "standard-library/**.{md,yml}": "twhitney", + "text/**.{md,yml}": "twhitney", + "windows/**.{md,yml}": "twhitney" } }, "template": [], From f1f16e2e7a8ec2ba5b9f5bbf0f8a33e14254894b Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Wed, 20 Aug 2025 17:15:34 +0800 Subject: [PATCH 977/981] Merge wrongly split error message in C3468 error reference --- docs/error-messages/compiler-errors-2/compiler-error-c3468.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md index fcde4b999d..e101a28857 100644 --- a/docs/error-messages/compiler-errors-2/compiler-error-c3468.md +++ b/docs/error-messages/compiler-errors-2/compiler-error-c3468.md @@ -7,12 +7,10 @@ helpviewer_keywords: ["C3468"] --- # Compiler Error C3468 -> 'type' : you can only forward a type to an assembly: +> '*type*': you can only forward a type to an assembly: '*identifier*' is not an assembly ## Remarks -'`file`' is not an assembly - Only types in an assembly can be forwarded. For more information, see [Type Forwarding (C++/CLI)](../../extensions/type-forwarding-cpp-cli.md). From 20ed867bcee116d3fc783d8000ce68863354672c Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 23 Aug 2025 01:41:56 +0800 Subject: [PATCH 978/981] Structure error references in range [C2291, C2320] (#5570) * Add blockquotes for error messages in range [C2291, C2320] * Add "Remarks" and "Example" headings for error references in range [C2291, C2320] * Replace term "sample" with "example" for error references in range [C2291, C2320] * Update metadata for error references in range [C2291, C2320] --- .../compiler-errors-1/compiler-error-c2292.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2293.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2295.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2296.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2297.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2298.md | 13 +++++++------ .../compiler-errors-1/compiler-error-c2299.md | 7 +++---- .../compiler-errors-1/compiler-error-c2300.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2301.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2302.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2307.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2308.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2309.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2310.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2311.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2312.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2313.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2315.md | 9 +++++---- .../compiler-errors-1/compiler-error-c2316.md | 11 +++++------ .../compiler-errors-1/compiler-error-c2317.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2318.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2319.md | 13 ++++++++----- .../compiler-errors-1/compiler-error-c2320.md | 7 ++++--- 23 files changed, 147 insertions(+), 106 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2292.md b/docs/error-messages/compiler-errors-1/compiler-error-c2292.md index 45784ec91f..1b9d0e238d 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2292.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2292.md @@ -1,14 +1,15 @@ --- -description: "Learn more about: Compiler Error C2292" title: "Compiler Error C2292" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2292" +ms.date: 11/04/2016 f1_keywords: ["C2292"] helpviewer_keywords: ["C2292"] -ms.assetid: 256b392f-2b8f-4162-b578-e7633984e162 --- # Compiler Error C2292 -'identifier': best case inheritance representation: 'representation1' declared but 'representation2' required +> 'identifier': best case inheritance representation: 'representation1' declared but 'representation2' required + +## Example Compiling the following code with [/vmb](../../build/reference/vmb-vmg-representation-method.md) ("Best-case always" representation) causes C2292. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2293.md b/docs/error-messages/compiler-errors-1/compiler-error-c2293.md index 6e0833a07e..d5eb84b0f5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2293.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2293.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2293" title: "Compiler Error C2293" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2293" +ms.date: 11/04/2016 f1_keywords: ["C2293"] helpviewer_keywords: ["C2293"] -ms.assetid: 17e7b4e2-368b-4dd7-a01b-d82be60f8e56 --- # Compiler Error C2293 -'identifier': illegal to have a member variable as a __based specifier +> 'identifier': illegal to have a member variable as a __based specifier + +## Remarks Specifiers for **`__based`** modifier must be nonmember pointers. -The following sample generates C2293: +## Example + +The following example generates C2293: ```cpp // C2293.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2295.md b/docs/error-messages/compiler-errors-1/compiler-error-c2295.md index 484d1908b7..f67e522223 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2295.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2295.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2295" title: "Compiler Error C2295" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2295" +ms.date: 11/04/2016 f1_keywords: ["C2295"] helpviewer_keywords: ["C2295"] -ms.assetid: faddf446-5924-401e-b719-93390d5cd084 --- # Compiler Error C2295 -escaped 'character' : is illegal in macro definition +> escaped 'character' : is illegal in macro definition + +## Remarks A macro definition cannot contain an escape sequence with the specified character. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2296.md b/docs/error-messages/compiler-errors-1/compiler-error-c2296.md index bdd1b4b3d2..a37e7a959b 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2296.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2296.md @@ -1,20 +1,23 @@ --- -description: "Learn more about: Compiler Error C2296" title: "Compiler Error C2296" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2296" +ms.date: 11/04/2016 f1_keywords: ["C2296"] helpviewer_keywords: ["C2296"] -ms.assetid: 47d270f4-13ce-4c16-81e2-7d67c6c4a540 --- # Compiler Error C2296 -'operator' : bad left operand +> 'operator' : bad left operand + +## Remarks The left operand used with `operator` is invalid. For example, the compiler may see a declaration where you intended a function call. -The following sample generates C2296: +## Example + +The following example generates C2296: ```cpp // C2296.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2297.md b/docs/error-messages/compiler-errors-1/compiler-error-c2297.md index 97ed907a34..8ce344ccd8 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2297.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2297.md @@ -1,20 +1,23 @@ --- -description: "Learn more about: Compiler Error C2297" title: "Compiler Error C2297" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2297" +ms.date: 11/04/2016 f1_keywords: ["C2297"] helpviewer_keywords: ["C2297"] -ms.assetid: 65849fe5-17e1-4b7e-b50c-f508b05ddaa4 --- # Compiler Error C2297 -'operator' : bad right operand +> 'operator' : bad right operand + +## Remarks The right operand used with `operator` is invalid. For example, the compiler may see a declaration where you intended a function call. -The following sample generates C2297: +## Example + +The following example generates C2297: ```cpp // C2297.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2298.md b/docs/error-messages/compiler-errors-1/compiler-error-c2298.md index 529c6f15eb..cddce97fed 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2298.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2298.md @@ -1,20 +1,21 @@ --- -description: "Learn more about: Compiler Error C2298" title: "Compiler Error C2298" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2298" +ms.date: 11/04/2016 f1_keywords: ["C2298"] helpviewer_keywords: ["C2298"] -ms.assetid: eb0120ad-c850-4bdd-911d-0361229cc859 --- # Compiler Error C2298 -'operation' : illegal operation on pointer to member function expression +> 'operation' : illegal operation on pointer to member function expression + +## Remarks A pointer to member-function expression must call the member function. ## Examples -The following sample generates C2298. +The following example generates C2298. ```cpp // C2298.cpp @@ -48,7 +49,7 @@ int main() { } ``` -The following sample generates C2298. +The following example generates C2298. ```cpp // C2298_b.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2299.md b/docs/error-messages/compiler-errors-1/compiler-error-c2299.md index 16cf37d4d9..ae1494b403 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2299.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2299.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Compiler Error C2299" title: "Compiler Error C2299" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2299" +ms.date: 11/04/2016 f1_keywords: ["C2299"] helpviewer_keywords: ["C2299"] -ms.assetid: d001c2bc-f6fd-47aa-8e42-0eb824d6441d --- # Compiler Error C2299 @@ -18,7 +17,7 @@ To resolve C2299, don't make the copy constructor or assignment operator a funct ## Example -The following sample generates C2299: +The following example generates C2299: ```cpp // C2299.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2300.md b/docs/error-messages/compiler-errors-1/compiler-error-c2300.md index 38fcc87e79..5727f9ee37 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2300.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2300.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2300" title: "Compiler Error C2300" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2300" +ms.date: 11/04/2016 f1_keywords: ["C2300"] helpviewer_keywords: ["C2300"] -ms.assetid: bb8fed56-feb0-412b-ae7b-04d48b202b78 --- # Compiler Error C2300 -'identifier' : class does not have a destructor called '~identifier' +> 'identifier' : class does not have a destructor called '~identifier' + +## Remarks The class does not have a destructor with the required name. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2301.md b/docs/error-messages/compiler-errors-1/compiler-error-c2301.md index d95b81771a..95225fd76a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2301.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2301.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2301" title: "Compiler Error C2301" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2301" +ms.date: 11/04/2016 f1_keywords: ["C2301"] helpviewer_keywords: ["C2301"] -ms.assetid: d294a1a2-dc7a-4e18-90b3-747e1a8c51ee --- # Compiler Error C2301 -left of '->~identifier' must point to class/struct/union +> left of '->~identifier' must point to class/struct/union + +## Remarks The expression to the left of the `->` operator does not evaluate to a pointer to a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2302.md b/docs/error-messages/compiler-errors-1/compiler-error-c2302.md index b496d9de75..18abffb5de 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2302.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2302.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2302" title: "Compiler Error C2302" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2302" +ms.date: 11/04/2016 f1_keywords: ["C2302"] helpviewer_keywords: ["C2302"] -ms.assetid: 74a54bab-9d5c-446e-9b1f-c92fb57090a8 --- # Compiler Error C2302 -left of '.~identifier' must have class/struct/union type +> left of '.~identifier' must have class/struct/union type + +## Remarks The expression to the left of the period (.) operator is not a class, structure, or union. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2307.md b/docs/error-messages/compiler-errors-1/compiler-error-c2307.md index 469a7facd9..69e3890ef3 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2307.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2307.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2307" title: "Compiler Error C2307" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2307" +ms.date: 11/04/2016 f1_keywords: ["C2307"] helpviewer_keywords: ["C2307"] -ms.assetid: ce6c8033-a673-4679-9883-bedec36ae385 --- # Compiler Error C2307 -pragma 'pragma' must be outside function if incremental compilation is enabled +> pragma 'pragma' must be outside function if incremental compilation is enabled + +## Remarks You must place the `data_seg` pragma between functions if you're using incremental compilation. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2308.md b/docs/error-messages/compiler-errors-1/compiler-error-c2308.md index 83af91881d..60d5d48ec7 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2308.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2308.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2308" title: "Compiler Error C2308" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2308" +ms.date: 11/04/2016 f1_keywords: ["C2308"] helpviewer_keywords: ["C2308"] -ms.assetid: d1eaf101-077d-4c43-97ac-410efd5b6fc9 --- # Compiler Error C2308 -concatenating mismatched strings +> concatenating mismatched strings + +## Remarks Both wide and non-wide character strings were specified for concatenation. You cannot concatenate a wide character string and non-wide character string. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2309.md b/docs/error-messages/compiler-errors-1/compiler-error-c2309.md index 631119862e..e2d392ca6a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2309.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2309.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2309" title: "Compiler Error C2309" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2309" +ms.date: 11/04/2016 f1_keywords: ["C2309"] helpviewer_keywords: ["C2309"] -ms.assetid: 6303d5b5-72cf-42b8-92ce-b1eb48e80d48 --- # Compiler Error C2309 -catch handler expected a parenthesized exception declaration +> catch handler expected a parenthesized exception declaration + +## Remarks A catch handler has no parenthesized type. -The following sample generates C2309: +## Example + +The following example generates C2309: ```cpp // C2309.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2310.md b/docs/error-messages/compiler-errors-1/compiler-error-c2310.md index b66045af5f..401f545625 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2310.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2310.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2310" title: "Compiler Error C2310" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2310" +ms.date: 11/04/2016 f1_keywords: ["C2310"] helpviewer_keywords: ["C2310"] -ms.assetid: 1969c682-b97e-43fb-b9a9-f783e7ff1710 --- # Compiler Error C2310 -catch handlers must specify one type +> catch handlers must specify one type + +## Remarks A catch handler specified no type or multiple types. -The following sample generates C2310: +## Example + +The following example generates C2310: ```cpp // C2310.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2311.md b/docs/error-messages/compiler-errors-1/compiler-error-c2311.md index 1593deabd6..8b13232259 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2311.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2311.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2311" title: "Compiler Error C2311" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2311" +ms.date: 11/04/2016 f1_keywords: ["C2311"] helpviewer_keywords: ["C2311"] -ms.assetid: 1aff9bd5-ed0b-4db6-bbc0-01ac89850cf2 --- # Compiler Error C2311 -'exception' : is caught by '...' on line number +> 'exception' : is caught by '...' on line number + +## Remarks The catch handler for the ellipsis (...) must be the last handler for a throw. -The following sample generates C2311: +## Example + +The following example generates C2311: ```cpp // C2311.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2312.md b/docs/error-messages/compiler-errors-1/compiler-error-c2312.md index 39b2968286..81b15ceb6f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2312.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2312.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2312" title: "Compiler Error C2312" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2312" +ms.date: 11/04/2016 f1_keywords: ["C2312"] helpviewer_keywords: ["C2312"] -ms.assetid: c8bcfd06-12c1-4323-bb53-ba392d36daa4 --- # Compiler Error C2312 -'exception1' : is caught by 'exception2' on line number +> 'exception1' : is caught by 'exception2' on line number + +## Remarks Two handlers catch the same exception type. -The following sample generates C2312: +## Example + +The following example generates C2312: ```cpp // C2312.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2313.md b/docs/error-messages/compiler-errors-1/compiler-error-c2313.md index 01c0b6c573..2d71495167 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2313.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2313.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2313" title: "Compiler Error C2313" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2313" +ms.date: 11/04/2016 f1_keywords: ["C2313"] helpviewer_keywords: ["C2313"] -ms.assetid: f70eb19b-c0a3-4fb2-ade1-3890a589928d --- # Compiler Error C2313 -'type1' : is caught by reference ('type2') on line number +> 'type1' : is caught by reference ('type2') on line number + +## Remarks The exception type has two handlers. The type for the second catch is a reference to the type of the first. -The following sample generates C2313: +## Example + +The following example generates C2313: ```cpp // C2313.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2315.md b/docs/error-messages/compiler-errors-1/compiler-error-c2315.md index fc0b04c563..d6ea11e2f9 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2315.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2315.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2315" title: "Compiler Error C2315" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2315" +ms.date: 11/04/2016 f1_keywords: ["C2315"] helpviewer_keywords: ["C2315"] -ms.assetid: a0d91b81-944c-4a69-9a24-fd484aabcc5c --- # Compiler Error C2315 -'type1' : reference is caught by 'type2' on line number +> 'type1' : reference is caught by 'type2' on line number + +## Remarks The exception type is handled by a previous handler. The reference for the second catch has the type of the first. diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2316.md b/docs/error-messages/compiler-errors-1/compiler-error-c2316.md index 6163529aca..4e208a5fc5 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2316.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2316.md @@ -1,24 +1,23 @@ --- -description: "Learn more about: Compiler Error C2316" title: "Compiler Error C2316" -ms.date: "07/08/2019" +description: "Learn more about: Compiler Error C2316" +ms.date: 07/08/2019 f1_keywords: ["C2316"] helpviewer_keywords: ["C2316"] -ms.assetid: 9ad08eb5-060b-4eb0-8d66-0dc134f7bf67 --- # Compiler Error C2316 > '*class_type*' : cannot be caught as the destructor and/or copy constructor are inaccessible or deleted -An exception was caught by value or by reference, but the copy constructor, the assignment operator, or both were inaccessible. - ## Remarks +An exception was caught by value or by reference, but the copy constructor, the assignment operator, or both were inaccessible. + Conformance changes in Visual Studio 2015 made this error apply to bad catch statements of MFC exceptions derived from `CException`. Because `CException` has an inherited private copy constructor, the class and its derivatives aren't copyable, and can't be passed by value, which also means they can't be caught by value. Catch statements that caught MFC exceptions by value previously led to uncaught exceptions at runtime. Now the compiler correctly identifies this situation and reports error C2316. To fix this issue, we recommend you use the MFC TRY/CATCH macros rather than write your own exception handlers. If that's not appropriate for your code, catch MFC exceptions by reference instead. ## Example -The following sample generates C2316, and shows a way to fix it: +The following example generates C2316, and shows a way to fix it: ```cpp // C2316.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2317.md b/docs/error-messages/compiler-errors-1/compiler-error-c2317.md index 79f823cb0e..fc575b588a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2317.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2317.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2317" title: "Compiler Error C2317" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2317" +ms.date: 11/04/2016 f1_keywords: ["C2317"] helpviewer_keywords: ["C2317"] -ms.assetid: e44d129b-8d3e-4ce9-9d79-6791ee77f25e --- # Compiler Error C2317 -'try' block starting on line 'number' has no catch handlers +> 'try' block starting on line 'number' has no catch handlers + +## Remarks A **`try`** block must have at least one catch handler. -The following sample generates C2317: +## Example + +The following example generates C2317: ```cpp // C2317.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2318.md b/docs/error-messages/compiler-errors-1/compiler-error-c2318.md index b5482c8358..5a67e8cb5a 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2318.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2318.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2318" title: "Compiler Error C2318" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2318" +ms.date: 11/04/2016 f1_keywords: ["C2318"] helpviewer_keywords: ["C2318"] -ms.assetid: 169e30b9-df78-46cb-90bf-576ad3c32fd4 --- # Compiler Error C2318 -no try block associated with this catch handler +> no try block associated with this catch handler + +## Remarks A **`catch`** handler is defined but not preceded by a **`try`** block. -The following sample generates C2318: +## Example + +The following example generates C2318: ```cpp // C2318.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2319.md b/docs/error-messages/compiler-errors-1/compiler-error-c2319.md index 0a9d138184..87a4c1537f 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2319.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2319.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2319" title: "Compiler Error C2319" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2319" +ms.date: 11/04/2016 f1_keywords: ["C2319"] helpviewer_keywords: ["C2319"] -ms.assetid: 25263e6e-f5ba-4d2c-8727-8c2d8ca2e5ce --- # Compiler Error C2319 -'try/catch' must be followed by a compound statement. Missing '{' +> 'try/catch' must be followed by a compound statement. Missing '{' + +## Remarks A **`try`** or **`catch`** block is not found following the **`try`** or **`catch`** statement. The block must be enclosed in curly braces. -The following sample generates C2319: +## Example + +The following example generates C2319: ```cpp // C2319.cpp diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2320.md b/docs/error-messages/compiler-errors-1/compiler-error-c2320.md index 1b9cf5a105..ea08646bec 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2320.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2320.md @@ -1,13 +1,14 @@ --- -description: "Learn more about: Compiler Error C2320" title: "Compiler Error C2320" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2320" +ms.date: 11/04/2016 f1_keywords: ["C2320"] helpviewer_keywords: ["C2320"] -ms.assetid: ae78ae1b-364f-4b65-bfb8-8809d5151ca5 --- # Compiler Error C2320 > expected ':' to follow access specifier '*specifier*' +## Remarks + The keyword **`public`**, **`protected`**, or **`private`** must be followed by a colon. From b3fb9c6330f286c9bb0600fa180ffd27b89c4387 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Sat, 23 Aug 2025 01:42:27 +0800 Subject: [PATCH 979/981] Add `cmd` language for CL and LINK invocations (#5568) * Add `cmd` language for CL invocations * Add `cmd` language for LINK invocations * Update metadata in 13 topics --- docs/build/reference/c-compile-without-linking.md | 9 ++++----- docs/build/reference/cl-invokes-the-linker.md | 7 +++---- docs/build/reference/compiler-command-line-syntax.md | 7 +++---- docs/build/reference/e-preprocess-to-stdout.md | 9 ++++----- ...-preprocess-to-stdout-without-hash-line-directives.md | 7 +++---- docs/build/reference/fd-program-database-file-name.md | 7 +++---- docs/build/reference/fe-name-exe-file.md | 9 ++++----- docs/build/reference/p-preprocess-to-a-file.md | 7 +++---- docs/build/reference/specifying-the-pathname.md | 7 +++---- .../yd-place-debug-information-in-object-file.md | 9 ++++----- .../tool-errors/command-line-warning-d9027.md | 9 ++++----- .../tool-errors/linker-tools-error-lnk2011.md | 7 +++---- .../tool-errors/linker-tools-warning-lnk4105.md | 7 +++---- 13 files changed, 44 insertions(+), 57 deletions(-) diff --git a/docs/build/reference/c-compile-without-linking.md b/docs/build/reference/c-compile-without-linking.md index e552d6a30e..e1d0795232 100644 --- a/docs/build/reference/c-compile-without-linking.md +++ b/docs/build/reference/c-compile-without-linking.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /c (Compile Without Linking)" title: "/c (Compile Without Linking)" -ms.date: "11/04/2016" +description: "Learn more about: /c (Compile Without Linking)" +ms.date: 11/04/2016 f1_keywords: ["/c"] helpviewer_keywords: ["suppress link", "cl.exe compiler, compiling without linking", "-c compiler option [C++]", "c compiler option [C++]", "/c compiler option [C++]"] -ms.assetid: 8017fc3d-e5dd-4668-a1f7-3120daa95d20 --- # /c (Compile Without Linking) @@ -34,13 +33,13 @@ Any internal project created in the development environment uses the **/c** opti The following command line creates the object files FIRST.obj and SECOND.obj. THIRD.obj is ignored. -``` +```cmd CL /c FIRST.C SECOND.C THIRD.OBJ ``` To create an executable file, you must invoke LINK: -``` +```cmd LINK first.obj second.obj third.obj /OUT:filename.exe ``` diff --git a/docs/build/reference/cl-invokes-the-linker.md b/docs/build/reference/cl-invokes-the-linker.md index 8f01f044f2..df402a7015 100644 --- a/docs/build/reference/cl-invokes-the-linker.md +++ b/docs/build/reference/cl-invokes-the-linker.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: CL Invokes the Linker" title: "CL Invokes the Linker" -ms.date: "11/04/2016" +description: "Learn more about: CL Invokes the Linker" +ms.date: 11/04/2016 helpviewer_keywords: ["compiling source code [C++], without linking", "invoking linker from the compiler", "LINK tool [C++], invoking from CL compiler", "cl.exe compiler [C++], compiling without linking", "cl.exe compiler [C++], controlling linker"] -ms.assetid: eae47ef7-09eb-40c9-b318-7c714cd452fc --- # CL Invokes the Linker @@ -30,7 +29,7 @@ Assume that you are compiling three C source files: MAIN.c, MOD1.c, and MOD2.c. To build this program, compile with the following command line: -``` +```cmd CL MAIN.c MOD1.C MOD2.C MYGRAPH.lib ``` diff --git a/docs/build/reference/compiler-command-line-syntax.md b/docs/build/reference/compiler-command-line-syntax.md index 0f56baaed5..e34ddaab59 100644 --- a/docs/build/reference/compiler-command-line-syntax.md +++ b/docs/build/reference/compiler-command-line-syntax.md @@ -1,15 +1,14 @@ --- -description: "Learn more about: Compiler Command-Line Syntax" title: "MSVC Compiler Command-Line Syntax" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Command-Line Syntax" +ms.date: 11/04/2016 helpviewer_keywords: ["syntax, CL compiler command line", "cl.exe compiler, command-line syntax"] -ms.assetid: acba2c1c-0803-4a3a-af25-63e849b930a2 --- # Compiler Command-Line Syntax The CL command line uses the following syntax: -``` +```cmd CL [option...] file... [option | file]... [lib...] [@command-file] [/link link-opt...] ``` diff --git a/docs/build/reference/e-preprocess-to-stdout.md b/docs/build/reference/e-preprocess-to-stdout.md index c2e2f9d98f..7426af0346 100644 --- a/docs/build/reference/e-preprocess-to-stdout.md +++ b/docs/build/reference/e-preprocess-to-stdout.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /E (Preprocess to stdout)" title: "/E (Preprocess to stdout)" -ms.date: "11/04/2016" +description: "Learn more about: /E (Preprocess to stdout)" +ms.date: 11/04/2016 f1_keywords: ["/e"] helpviewer_keywords: ["-E compiler option [C++]", "/E compiler option [C++]", "preprocessor output, copy to stdout", "preprocessor output"] -ms.assetid: ddbb1725-d950-4978-ab2f-30a5cd7b778c --- # /E (Preprocess to stdout) @@ -44,7 +43,7 @@ m(int)main( ) However, if you compile with: -``` +```cmd cl -E test.cpp > test2.cpp ``` @@ -66,7 +65,7 @@ cl -E test.cpp > test2.cpp The following command line preprocesses `ADD.C`, preserves comments, adds `#line` directives, and displays the result on the standard output device: -``` +```cmd CL /E /C ADD.C ``` diff --git a/docs/build/reference/ep-preprocess-to-stdout-without-hash-line-directives.md b/docs/build/reference/ep-preprocess-to-stdout-without-hash-line-directives.md index 0c1deff9db..61d030c081 100644 --- a/docs/build/reference/ep-preprocess-to-stdout-without-hash-line-directives.md +++ b/docs/build/reference/ep-preprocess-to-stdout-without-hash-line-directives.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /EP (Preprocess to stdout Without #line Directives)" title: "/EP (Preprocess to stdout Without #line Directives)" -ms.date: "11/04/2016" +description: "Learn more about: /EP (Preprocess to stdout Without #line Directives)" +ms.date: 11/04/2016 f1_keywords: ["/ep", "VC.Project.VCCLCompilerTool.GeneratePreprocessedFileNoLines"] helpviewer_keywords: ["copy preprocessor output to stdout", "preprocessor output, copy to stdout", "-EP compiler option [C++]", "EP compiler option [C++]", "/EP compiler option [C++]"] -ms.assetid: 6ec411ae-e33d-4ef5-956e-0054635eabea --- # /EP (Preprocess to stdout Without #line Directives) @@ -46,7 +45,7 @@ You cannot use precompiled headers with the **/EP** option. The following command line preprocesses file `ADD.C`, preserves comments, and displays the result on the standard output device: -``` +```cmd CL /EP /C ADD.C ``` diff --git a/docs/build/reference/fd-program-database-file-name.md b/docs/build/reference/fd-program-database-file-name.md index 7bc387dcf5..c9027012f2 100644 --- a/docs/build/reference/fd-program-database-file-name.md +++ b/docs/build/reference/fd-program-database-file-name.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /Fd (Program Database File Name)" title: "/Fd (Program Database File Name)" -ms.date: "11/04/2016" +description: "Learn more about: /Fd (Program Database File Name)" +ms.date: 11/04/2016 f1_keywords: ["/FD", "VC.Project.VCCLWCECompilerTool.ProgramDataBaseFileName", "VC.Project.VCCLCompilerTool.ProgramDataBaseFileName"] helpviewer_keywords: ["/FD compiler option [C++]", "program database file name [C++]", "-FD compiler option [C++]", "PDB files, creating", "program database compiler option [C++]", ".pdb files, creating", "FD compiler option [C++]"] -ms.assetid: 3977a9ed-f0ac-45df-bf06-01cedd2ba85a --- # /Fd (Program Database File Name) @@ -42,7 +41,7 @@ This option also names the state (.idb) file used for minimal rebuild and increm This command line creates a .pdb file named PROG.pdb and an .idb file named PROG.idb: -``` +```cmd CL /DDEBUG /Zi /FdPROG.PDB PROG.CPP ``` diff --git a/docs/build/reference/fe-name-exe-file.md b/docs/build/reference/fe-name-exe-file.md index 3defab99e3..02c71317a5 100644 --- a/docs/build/reference/fe-name-exe-file.md +++ b/docs/build/reference/fe-name-exe-file.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /Fe (Name EXE File)" title: "/Fe (Name EXE File)" -ms.date: "11/04/2016" +description: "Learn more about: /Fe (Name EXE File)" +ms.date: 11/04/2016 f1_keywords: ["/fe"] helpviewer_keywords: ["-Fe compiler option [C++]", "executable files, renaming", "rename file compiler option [C++]", "/Fe compiler option [C++]", "Fe compiler option [C++]"] -ms.assetid: 49f594fd-5e94-45fe-a1bf-7c9f2abb6437 --- # /Fe (Name EXE File) @@ -44,13 +43,13 @@ If you specify the [/c (Compile Without Linking)](c-compile-without-linking.md) The following command line compiles and links all C source files in the current directory. The resulting executable file is named PROCESS.exe and is created in the directory "C:\Users\User Name\repos\My Project\bin". -``` +```cmd CL /Fe"C:\Users\User Name\repos\My Project\bin\PROCESS" *.C ``` The following command line creates an executable file in `C:\BIN` with the same base name as the first source file in the current directory: -``` +```cmd CL /FeC:\BIN\ *.C ``` diff --git a/docs/build/reference/p-preprocess-to-a-file.md b/docs/build/reference/p-preprocess-to-a-file.md index e65e5a00d0..3f8c51279b 100644 --- a/docs/build/reference/p-preprocess-to-a-file.md +++ b/docs/build/reference/p-preprocess-to-a-file.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /P (Preprocess to a File)" title: "/P (Preprocess to a File)" -ms.date: "11/04/2016" +description: "Learn more about: /P (Preprocess to a File)" +ms.date: 11/04/2016 f1_keywords: ["VC.Project.VCCLCompilerTool.GeneratePreprocessedFile", "/p", "VC.Project.VCCLWCECompilerTool.GeneratePreprocessedFile"] helpviewer_keywords: ["/P compiler option [C++]", "-P compiler option [C++]", "P compiler option [C++]", "output files, preprocessor", "preprocessing output files"] -ms.assetid: 123ee54f-8219-4a6f-9876-4227023d83fc --- # /P (Preprocess to a File) @@ -40,7 +39,7 @@ The **/P** option suppresses compilation. It does not produce an .obj file, even The following command line preprocesses `ADD.C`, preserves comments, adds `#line` directives, and writes the result to a file, `ADD.I`: -``` +```cmd CL /P /C ADD.C ``` diff --git a/docs/build/reference/specifying-the-pathname.md b/docs/build/reference/specifying-the-pathname.md index 98293ee2a4..55be6dfec9 100644 --- a/docs/build/reference/specifying-the-pathname.md +++ b/docs/build/reference/specifying-the-pathname.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: Specifying the Pathname" title: "Specifying the Pathname" -ms.date: "11/04/2016" +description: "Learn more about: Specifying the Pathname" +ms.date: 11/04/2016 helpviewer_keywords: ["names [C++], compiler output files", "cl.exe compiler, output files", "output files, specifying pathnames"] -ms.assetid: 7a6595ce-3383-44ae-957a-466bfa29c343 --- # Specifying the Pathname @@ -24,7 +23,7 @@ Alternatively, the *pathname* argument can be a device name (AUX, CON, PRN, or N The following command line sends a mapfile to the printer: -``` +```cmd CL /FmPRN HELLO.CPP ``` diff --git a/docs/build/reference/yd-place-debug-information-in-object-file.md b/docs/build/reference/yd-place-debug-information-in-object-file.md index b3e9699bb7..ced560abe3 100644 --- a/docs/build/reference/yd-place-debug-information-in-object-file.md +++ b/docs/build/reference/yd-place-debug-information-in-object-file.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: /Yd (Place Debug Information in Object File)" title: "/Yd (Place Debug Information in Object File)" -ms.date: "11/04/2016" +description: "Learn more about: /Yd (Place Debug Information in Object File)" +ms.date: 11/04/2016 f1_keywords: ["/yd"] helpviewer_keywords: ["/Yd compiler option [C++]", "-Yd compiler option [C++]", "debugging [C++], debug information files", "Yd compiler option [C++]"] -ms.assetid: c5a699fe-65ce-461e-964c-7f5eb2a8320a --- # /Yd (Place Debug Information in Object File) @@ -55,13 +54,13 @@ Suppose you have two base files, F.cpp and G.cpp, each containing these **#inclu The following command creates the precompiled header file ETC.pch and the object file F.obj: -``` +```cmd CL /YcETC.H /Z7 F.CPP ``` The object file F.obj includes type and symbol information for WINDOWS.h and ETC.h (and any other header files they include). Now you can use the precompiled header ETC.pch to compile the source file G.cpp: -``` +```cmd CL /YuETC.H /Z7 G.CPP ``` diff --git a/docs/error-messages/tool-errors/command-line-warning-d9027.md b/docs/error-messages/tool-errors/command-line-warning-d9027.md index a4eefa4180..a50befaede 100644 --- a/docs/error-messages/tool-errors/command-line-warning-d9027.md +++ b/docs/error-messages/tool-errors/command-line-warning-d9027.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Command-Line Warning D9027" title: "Command-Line Warning D9027" -ms.date: "11/04/2016" +description: "Learn more about: Command-Line Warning D9027" +ms.date: 11/04/2016 f1_keywords: ["D9027"] helpviewer_keywords: ["D9027"] -ms.assetid: 2a29edc5-5649-48f2-9058-2057c747284c --- # Command-Line Warning D9027 @@ -14,12 +13,12 @@ CL.exe ignored the input source file. This warning can be caused by a space between the /Fo option and an output filename on a command line with the /c option. For example: -``` +```cmd cl /c /Fo output.obj input.c ``` Because there is a space between /Fo and `output.obj`, CL.exe takes `output.obj` as the name of the input file. To fix the problem, remove the space: -``` +```cmd cl /c /Fooutput.obj input.c ``` diff --git a/docs/error-messages/tool-errors/linker-tools-error-lnk2011.md b/docs/error-messages/tool-errors/linker-tools-error-lnk2011.md index aee174c784..d19042b921 100644 --- a/docs/error-messages/tool-errors/linker-tools-error-lnk2011.md +++ b/docs/error-messages/tool-errors/linker-tools-error-lnk2011.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Linker Tools Error LNK2011" title: "Linker Tools Error LNK2011" -ms.date: "11/04/2016" +description: "Learn more about: Linker Tools Error LNK2011" +ms.date: 11/04/2016 f1_keywords: ["LNK2011"] helpviewer_keywords: ["LNK2011"] -ms.assetid: 04991ef5-49d5-46c7-8eee-a9d1d3fc541e --- # Linker Tools Error LNK2011 @@ -14,7 +13,7 @@ If you use precompiled headers, LINK requires that all of the object files creat For example, if you compile a file called STUB.cpp to create a precompiled header for use with other source files, you must link with STUB.obj or you will get this error. In the following command lines, line one is used to create a precompiled header, COMMON.pch, which is used with PROG1.cpp and PROG2.cpp in lines two and three. The file STUB.cpp contains only `#include` lines (the same `#include` lines as in PROG1.cpp and PROG2.cpp) and is used only to generate precompiled headers. In the last line, STUB.obj must be linked in to avoid LNK2011. -``` +```cmd cl /c /Yccommon.h stub.cpp cl /c /Yucommon.h prog1.cpp cl /c /Yucommon.h prog2.cpp diff --git a/docs/error-messages/tool-errors/linker-tools-warning-lnk4105.md b/docs/error-messages/tool-errors/linker-tools-warning-lnk4105.md index eb82ea21e7..260ed1245f 100644 --- a/docs/error-messages/tool-errors/linker-tools-warning-lnk4105.md +++ b/docs/error-messages/tool-errors/linker-tools-warning-lnk4105.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: Linker Tools Warning LNK4105" title: "Linker Tools Warning LNK4105" -ms.date: "11/04/2016" +description: "Learn more about: Linker Tools Warning LNK4105" +ms.date: 11/04/2016 f1_keywords: ["LNK4105"] helpviewer_keywords: ["LNK4105"] -ms.assetid: 6c7bebf4-4ea6-4533-a6ed-e563d43abbd7 --- # Linker Tools Warning LNK4105 @@ -16,7 +15,7 @@ If you do not need to override the existing environmental library settings, remo ## Example -``` +```cmd link /libpath:c:\filepath\lib bar.obj ``` From 8713c009c5e20544758f2232b6289dccdd5e149c Mon Sep 17 00:00:00 2001 From: Tyler Whitney Date: Fri, 22 Aug 2025 17:50:05 +0000 Subject: [PATCH 980/981] fix syntax (#6055) --- docs/docfx.json | 174 ++++++++++++++++++++++++------------------------ 1 file changed, 87 insertions(+), 87 deletions(-) diff --git a/docs/docfx.json b/docs/docfx.json index 1dd4d169a4..23b40c4fd3 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -160,100 +160,100 @@ "windows/**.md": "windows-development" }, "ms.update-cycle": { - "assembler/**.{md,yml}": "3650-days", - "attributes/**.{md,yml}": "3650-days", - "atl/**.{md,yml}": "3650-days", - "atl-mfc-shared/**.{md,yml}": "3650-days", - "build/**.{md,yml}": "1825-days", - "c-language/**.{md,yml}": "3650-days", - "c-runtime-library/**.{md,yml}": "3650-days", + "assembler/**/**.{md,yml}": "3650-days", + "attributes/**/**.{md,yml}": "3650-days", + "atl/**/**.{md,yml}": "3650-days", + "atl-mfc-shared/**/**.{md,yml}": "3650-days", + "build/**/**.{md,yml}": "1825-days", + "c-language/**/**.{md,yml}": "3650-days", + "c-runtime-library/**/**.{md,yml}": "3650-days", "cpp/**.md": "1095-days", - "cppcx/**.{md,yml}": "3650-days", - "cross-platform/**.{md,yml}": "1825-days", - "data/**.{md,yml}": "3650-days", - "dotnet/**.{md,yml}": "3650-days", - "embedded/**.{md,yml}": "3650-days", - "error-messages/**.{md,yml}": "3650-days", - "extensions/**.{md,yml}": "3650-days", - "intrinsics/**.{md,yml}": "3650-days", - "mfc/**.{md,yml}": "3650-days", - "parallel/**.{md,yml}": "3650-days", - "porting/**.{md,yml}": "1095-days", - "preprocessor/**.{md,yml}": "3650-days", - "safeint/**.{md,yml}": "3650-days", - "standard-library/**.{md,yml}": "3650-days", - "text/**.{md,yml}": "3650-days", - "windows/**.{md,yml}": "1825-days" + "cppcx/**/**.{md,yml}": "3650-days", + "cross-platform/**/**.{md,yml}": "1825-days", + "data/**/**.{md,yml}": "3650-days", + "dotnet/**/**.{md,yml}": "3650-days", + "embedded/**/**.{md,yml}": "3650-days", + "error-messages/**/**.{md,yml}": "3650-days", + "extensions/**/**.{md,yml}": "3650-days", + "intrinsics/**/**.{md,yml}": "3650-days", + "mfc/**/**.{md,yml}": "3650-days", + "parallel/**/**.{md,yml}": "3650-days", + "porting/**/**.{md,yml}": "1095-days", + "preprocessor/**/**.{md,yml}": "3650-days", + "safeint/**/**.{md,yml}": "3650-days", + "standard-library/**/**.{md,yml}": "3650-days", + "text/**/**.{md,yml}": "3650-days", + "windows/**/**.{md,yml}": "1825-days" }, "author": { "index.md": "tylermsft", - "assembler/**.{md,yml}": "tylermsft", - "attributes/**.{md,yml}": "tylermsft", - "atl/**.{md,yml}": "tylermsft", - "atl-mfc-shared/**.{md,yml}": "tylermsft", - "build/**.{md,yml}": "tylermsft", - "build-insights/**.{md,yml}": "tylermsft", - "c-language/**.{md,yml}": "tylermsft", - "c-runtime-library/**.{md,yml}": "tylermsft", - "cloud/**.{md,yml}": "tylermsft", - "code-quality/**.{md,yml}": "tylermsft", - "cpp/**.{md,yml}": "tylermsft", - "cppcx/**.{md,yml}": "tylermsft", - "cross-platform/**.{md,yml}": "tylermsft", - "data/**.{md,yml}": "tylermsft", - "dotnet/**.{md,yml}": "tylermsft", - "error-messages/**.{md,yml}": "tylermsft", - "extensions/**.{md,yml}": "tylermsft", - "get-started/**.{md,yml}": "tylermsft", - "ide/**.{md,yml}": "tylermsft", - "intrinsics/**.{md,yml}": "tylermsft", - "linux/**.{md,yml}": "tylermsft", - "mfc/**.{md,yml}": "tylermsft", - "overview/**.{md,yml}": "tylermsft", - "parallel/**.{md,yml}": "tylermsft", - "porting/**.{md,yml}": "tylermsft", - "preprocessor/**.{md,yml}": "tylermsft", - "safeint/**.{md,yml}": "tylermsft", - "sanitizers/**.{md,yml}": "tylermsft", - "security/**.{md,yml}": "tylermsft", - "standard-library/**.{md,yml}": "tylermsft", - "text/**.{md,yml}": "tylermsft", - "windows/**.{md,yml}": "tylermsft" + "assembler/**/**.{md,yml}": "tylermsft", + "attributes/**/**.{md,yml}": "tylermsft", + "atl/**/**.{md,yml}": "tylermsft", + "atl-mfc-shared/**/**.{md,yml}": "tylermsft", + "build/**/**.{md,yml}": "tylermsft", + "build-insights/**/**.{md,yml}": "tylermsft", + "c-language/**/**.{md,yml}": "tylermsft", + "c-runtime-library/**/**.{md,yml}": "tylermsft", + "cloud/**/**.{md,yml}": "tylermsft", + "code-quality/**/**.{md,yml}": "tylermsft", + "cpp/**/**.{md,yml}": "tylermsft", + "cppcx/**/**.{md,yml}": "tylermsft", + "cross-platform/**/**.{md,yml}": "tylermsft", + "data/**/**.{md,yml}": "tylermsft", + "dotnet/**/**.{md,yml}": "tylermsft", + "error-messages/**/**.{md,yml}": "tylermsft", + "extensions/**/**.{md,yml}": "tylermsft", + "get-started/**/**.{md,yml}": "tylermsft", + "ide/**/**.{md,yml}": "tylermsft", + "intrinsics/**/**.{md,yml}": "tylermsft", + "linux/**/**.{md,yml}": "tylermsft", + "mfc/**/**.{md,yml}": "tylermsft", + "overview/**/**.{md,yml}": "tylermsft", + "parallel/**/**.{md,yml}": "tylermsft", + "porting/**/**.{md,yml}": "tylermsft", + "preprocessor/**/**.{md,yml}": "tylermsft", + "safeint/**/**.{md,yml}": "tylermsft", + "sanitizers/**/**.{md,yml}": "tylermsft", + "security/**/**.{md,yml}": "tylermsft", + "standard-library/**/**.{md,yml}": "tylermsft", + "text/**/**.{md,yml}": "tylermsft", + "windows/**/**.{md,yml}": "tylermsft" }, "ms.author": { "index.md": "twhitney", - "assembler/**.{md,yml}": "twhitney", - "atl/**.{md,yml}": "twhitney", - "atl-mfc-shared/**.{md,yml}": "twhitney", - "attributes/**.{md,yml}": "twhitney", - "build/**.{md,yml}": "twhitney", - "build-insights/**.{md,yml}": "twhitney", - "c-language/**.{md,yml}": "twhitney", - "c-runtime-library/**.{md,yml}": "twhitney", - "cloud/**.{md,yml}": "twhitney", - "code-quality/**.{md,yml}": "twhitney", - "cpp/**.{md,yml}": "twhitney", - "cppcx/**.{md,yml}": "twhitney", - "cross-platform/**.{md,yml}": "twhitney", - "data/**.{md,yml}": "twhitney", - "dotnet/**.{md,yml}": "twhitney", - "error-messages/**.{md,yml}": "twhitney", - "extensions/**.{md,yml}": "twhitney", - "get-started/**.{md,yml}": "twhitney", - "ide/**.{md,yml}": "twhitney", - "intrinsics/**.{md,yml}": "twhitney", - "linux/**.{md,yml}": "twhitney", - "mfc/**.{md,yml}": "twhitney", - "overview/**.{md,yml}": "twhitney", - "parallel/**.{md,yml}": "twhitney", - "porting/**.{md,yml}": "twhitney", - "preprocessor/**.{md,yml}": "twhitney", - "safeint/**.{md,yml}": "twhitney", - "sanitizers/**.{md,yml}": "twhitney", - "security/**.{md,yml}": "twhitney", - "standard-library/**.{md,yml}": "twhitney", - "text/**.{md,yml}": "twhitney", - "windows/**.{md,yml}": "twhitney" + "assembler/**/**.{md,yml}": "twhitney", + "atl/**/**.{md,yml}": "twhitney", + "atl-mfc-shared/**/**.{md,yml}": "twhitney", + "attributes/**/**.{md,yml}": "twhitney", + "build/**/**.{md,yml}": "twhitney", + "build-insights/**/**.{md,yml}": "twhitney", + "c-language/**/**.{md,yml}": "twhitney", + "c-runtime-library/**/**.{md,yml}": "twhitney", + "cloud/**/**.{md,yml}": "twhitney", + "code-quality/**/**.{md,yml}": "twhitney", + "cpp/**/**.{md,yml}": "twhitney", + "cppcx/**/**.{md,yml}": "twhitney", + "cross-platform/**/**.{md,yml}": "twhitney", + "data/**/**.{md,yml}": "twhitney", + "dotnet/**/**.{md,yml}": "twhitney", + "error-messages/**/**.{md,yml}": "twhitney", + "extensions/**/**.{md,yml}": "twhitney", + "get-started/**/**.{md,yml}": "twhitney", + "ide/**/**.{md,yml}": "twhitney", + "intrinsics/**/**.{md,yml}": "twhitney", + "linux/**/**.{md,yml}": "twhitney", + "mfc/**/**.{md,yml}": "twhitney", + "overview/**/**.{md,yml}": "twhitney", + "parallel/**/**.{md,yml}": "twhitney", + "porting/**/**.{md,yml}": "twhitney", + "preprocessor/**/**.{md,yml}": "twhitney", + "safeint/**/**.{md,yml}": "twhitney", + "sanitizers/**/**.{md,yml}": "twhitney", + "security/**/**.{md,yml}": "twhitney", + "standard-library/**/**.{md,yml}": "twhitney", + "text/**/**.{md,yml}": "twhitney", + "windows/**/**.{md,yml}": "twhitney" } }, "template": [], From b963f1d07c0305fc9dd4922dd6219af7c70eaf40 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 22 Aug 2025 14:18:27 -0700 Subject: [PATCH 981/981] fix typos and remove bad example --- .../compiler-errors-1/compiler-error-c2274.md | 28 ++++--------------- .../compiler-errors-1/compiler-error-c2289.md | 13 +++++---- 2 files changed, 14 insertions(+), 27 deletions(-) diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md index 52cd5d4fca..1724a0006e 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2274.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2274.md @@ -1,32 +1,16 @@ --- -description: "Learn more about: Compiler Error C2274" title: "Compiler Error C2274" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2274" +ms.date: 11/04/2016 f1_keywords: ["C2274"] helpviewer_keywords: ["C2274"] -ms.assetid: 8e874903-f499-45ef-8291-f821eee4cc1c --- # Compiler Error C2274 -'type' : illegal as right side of '.' operator - -A type appears as the right operand of a member-access (.) operator. - -This error can be caused by trying to access a user-defined type conversion. Use the keyword **`operator`** between the period and `type`. +> 'type' : illegal as right side of '.' operator -The following sample generates C2286: +## Remarks -```cpp -// C2274.cpp -struct MyClass { - operator int() { - return 0; - } -}; +A type appears as the right operand of a member-access (.) operator. -int main() { - MyClass ClassName; - int i = ClassName.int(); // C2274 - int j = ClassName.operator int(); // OK -} -``` +This error can be caused by trying to access a user-defined type conversion. Use the keyword **`operator`** between the period and `type`. \ No newline at end of file diff --git a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md index 485af60194..25fe25f0f2 100644 --- a/docs/error-messages/compiler-errors-1/compiler-error-c2289.md +++ b/docs/error-messages/compiler-errors-1/compiler-error-c2289.md @@ -1,18 +1,21 @@ --- -description: "Learn more about: Compiler Error C2289" title: "Compiler Error C2289" -ms.date: "11/04/2016" +description: "Learn more about: Compiler Error C2289" +ms.date: 11/04/2016 f1_keywords: ["C2289"] helpviewer_keywords: ["C2289"] -ms.assetid: cb41a29e-1b06-47dc-bfce-8d73bd63a0df --- # Compiler Error C2289 -same type qualifier used more than once +> same type qualifier used more than once + +## Remarks A type declaration or definition uses a type qualifier (**`const`**, **`volatile`**, **`signed`**, or **`unsigned`**) more than once, causing an error under ANSI compatibility (**/Za**). -The following sample generates C2286: +## Example + +The following example generates C2289: ```cpp // C2289.cpp