You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -42,7 +42,17 @@ When **/sdl** is enabled, the compiler generates code to perform these checks at
42
42
43
43
- Performs limited pointer sanitization. In expressions that do not involve dereferences and in types that have no user-defined destructor, pointer references are set to a non-valid address after a call to `delete`. This helps to prevent the reuse of stale pointer references.
44
44
45
-
- Performs class member initialization. Automatically initializes all class members to zero on object instantiation (before the constructor runs). This helps prevent the use of uninitialized data associated with class members that the constructor does not explicitly initialize.
45
+
- Performs class member pointer initialization. Automatically initializes class members of pointer type to **nullptr** on object instantiation (before the constructor runs). This helps prevent the use of uninitialized pointers that the constructor does not explicitly initialize. The compiler-generated member pointer initialization is called as long as:
46
+
47
+
- The object is not allocated using a custom (user defined) `operator new`
48
+
49
+
- The object is not allocated as part of an array (for example `new A[x]`)
50
+
51
+
- The class is not managed or imported
52
+
53
+
- The class has a user-defined default constructor.
54
+
55
+
To be initialized by the compiler-generated class initialization function, a member must be a pointer, and not a property or constant.
Copy file name to clipboardExpand all lines: docs/build/reference/std-specify-language-standard-version.md
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ Enable supported C++ language features from the specified version of the C++ lan
10
10
11
11
## Syntax
12
12
13
-
> /std:[c++14|c++17|c++latest]
13
+
> /std:\[c++14\|c++17\|c++latest]
14
14
15
15
## Remarks
16
16
17
-
The **/std** option is available in Visual Studio 2017 and later. It is used to control the version-specific ISO C++ programming language standard features enabled during compilation of your code. This option allows you to disable support for certain new language and library features that may break your existing code that conforms to a particular version of the language standard. By default, **/std:c++14** is specified, which disables language and standard library features found in later versions of the C++ language standard. Use **/std:c++17** to enable C++17 standard-specific features and behavior. To explicitly enable the latest supported compiler and standard library features, use **/std:c++latest**.
17
+
The **/std** option is available in Visual Studio 2017 and later. It is used to control the version-specific ISO C++ programming language standard features enabled during compilation of your code. This option allows you to disable support for certain new language and library features that may break your existing code that conforms to a particular version of the language standard. By default, **/std:c++14** is specified, which disables language and standard library features found in later versions of the C++ language standard. Use **/std:c++17** to enable C++17 standard-specific features and behavior. To explicitly enable the currently implemented compiler and standard library features proposed for the next draft standard, use **/std:c++latest**.
18
18
19
19
The default **/std:c++14** option enables the set of C++14 features implemented by the Visual C++ compiler. This option disables compiler and standard library support for features that are changed or new in more recent versions of the language standard, with the exception of some C++17 features already implemented in previous releases of the Visual C++ compiler. To avoid breaking changes for users who have already taken dependencies on the features available as of Visual Studio 2015 Update 2, these features remain enabled when the **/std:c++14** option is specified:
20
20
@@ -32,7 +32,10 @@ For additional information on which C++14 and C++17 features are enabled when **
32
32
33
33
The **/std:c++17** option enables the full set of C++17 features implemented by the Visual C++ compiler. This option disables compiler and standard library support for features that are changed or new in versions of the Working Draft and defect updates of the C++ Standard after C++17.
34
34
35
-
The **/std:c++latest** option enables the set of C++ language and library features implemented by Visual C++ to track the most recent C++20 Working Draft and defect updates of the C++ Standard that are not included in C++17. Use this switch to get the post-C++17 language features supported by the compiler and standard library. For a list of supported language and library features, see [What's New for Visual C++](../../what-s-new-for-visual-cpp-in-visual-studio.md). The **/std:c++latest** option does not enable features guarded by the **/experimental** switch.
35
+
The **/std:c++latest** option enables the post-C++17 language and library features currently implemented in the compiler and libraries. These may include features from the C++20 Working Draft and defect updates of the C++ Standard that are not included in C++17, as well as experimental proposals for the draft standard. For a list of supported language and library features, see [What's New for Visual C++](../../what-s-new-for-visual-cpp-in-visual-studio.md). The **/std:c++latest** option does not enable features guarded by the **/experimental** switch, but may be required to enable them.
36
+
37
+
> [!IMPORTANT]
38
+
> The compiler and library features enabled by **/std:c++latest** are provided as-is and without support. They are subject to breaking changes or removal without notice. They are intended as a preview of language features that may appear in the next version of the standard, but the standard is a work in progress. Use **/std:c++17** to use the features in the latest ISO C++ standard.
36
39
37
40
The **/std** option in effect during a C++ compilation can be detected by use of the [\_MSVC\_LANG](../../preprocessor/predefined-macros.md) preprocessor macro. For more information, see [Preprocessor Macros](../../preprocessor/predefined-macros.md).
0 commit comments