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
Copy file name to clipboardExpand all lines: docs/code-quality/quick-start-code-analysis-for-c-cpp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ Visual Studio includes these standard sets of rules for native code:
38
38
|**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). |
39
39
|**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). |
40
40
|**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). |
41
-
|**C++ Core Check Owner Pointer Rules**| These rules enforce resource-management checks related to [owner<T> from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |
41
+
|**C++ Core Check Owner Pointer Rules**| These rules enforce resource-management checks related to [`owner<T?` from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |
42
42
|**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). |
43
43
|**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. |
44
44
|**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). |
Copy file name to clipboardExpand all lines: docs/cppcx/platform-box-class.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,10 @@ ref class Box abstract;
27
27
|Member|Description|
28
28
|------------|-----------------|
29
29
|[Box](#ctor) | Creates a `Box` that can encapsulate a value of the specified type. |
30
-
|[operator Box<const T>^](#box-const-t) | Enables boxing conversions from a **`const`** value class `T` or **`enum`** class `T` to `Box<T>`. |
31
-
|[operator Box<const volatile T>^](#box-const-volatile-t) | Enables boxing conversions from a **`const volatile`** value class `T` or **`enum`** type `T` to `Box<T>`. |
32
-
|[operator Box<T>^](#box-t) | Enables boxing conversions from a value class `T` to `Box<T>`. |
33
-
|[operator Box<volatile T>^](#box-volatile-t) | Enables boxing conversions from a **`volatile`** value class `T` or **`enum`** type `T` to `Box<T>`. |
30
+
|[`operator Box<const T>^`](#box-const-t) | Enables boxing conversions from a **`const`** value class `T` or **`enum`** class `T` to `Box<T>`. |
31
+
|[`operator Box<const volatile T>^`](#box-const-volatile-t) | Enables boxing conversions from a **`const volatile`** value class `T` or **`enum`** type `T` to `Box<T>`. |
32
+
|[`operator Box<T>^`](#box-t) | Enables boxing conversions from a value class `T` to `Box<T>`. |
33
+
|[`operator Box<volatile T>^`](#box-volatile-t) | Enables boxing conversions from a **`volatile`** value class `T` or **`enum`** type `T` to `Box<T>`. |
34
34
|[Box::operator T](#t) | Enables boxing conversions from a value class `T` or **`enum`** class `T` to `Box<T>`. |
35
35
|[Value property](#value) | Returns the value that is encapsulated in the `Box` object. |
36
36
@@ -49,7 +49,7 @@ Box(T valueArg);
49
49
*valueArg*<br/>
50
50
The type of value to be boxed—for example, **`int`**, **`bool`**, `float64`, `DateTime`.
Copy file name to clipboardExpand all lines: docs/overview/what-s-new-for-cpp-2019.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -337,7 +337,7 @@ The new IntelliCode features (Custom Models, C++ support, and EditorConfig infer
337
337
338
338
### Code Analysis
339
339
340
-
- New quick fixes for uninitialized variable checks were added. Code Analysis warnings [C6001: using uninitialized memory <variable>](../code-quality/c6001.md) and [C26494 VAR_USE_BEFORE_INIT](../code-quality/c26494.md) are available in the lightbulb menu on relevant lines. They're enabled by default in the Microsoft Native Minimum ruleset and C++ Core Check Type rulesets, respectively. For more information, see [New code analysis quick fixes for uninitialized memory (C6001) and use before init (C26494) warnings](https://devblogs.microsoft.com/cppblog/new-code-analysis-quick-fixes-for-uninitialized-memory-c6001-and-use-before-init-c26494-warnings/).
340
+
- New quick fixes for uninitialized variable checks were added. Code Analysis warnings [C6001: using uninitialized memory `<variable>`](../code-quality/c6001.md) and [C26494 VAR_USE_BEFORE_INIT](../code-quality/c26494.md) are available in the lightbulb menu on relevant lines. They're enabled by default in the Microsoft Native Minimum ruleset and C++ Core Check Type rulesets, respectively. For more information, see [New code analysis quick fixes for uninitialized memory (C6001) and use before init (C26494) warnings](https://devblogs.microsoft.com/cppblog/new-code-analysis-quick-fixes-for-uninitialized-memory-c6001-and-use-before-init-c26494-warnings/).
Copy file name to clipboardExpand all lines: docs/parallel/amp/reference/array-class.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ The rank of the array.
52
52
53
53
|Name|Description|
54
54
|----------|-----------------|
55
-
|[operator std::vector<value_type>](#operator_vec)|Uses `copy(*this, vector)` to implicitly convert the array to a std::[vector](../../../standard-library/vector-class.md) object.|
55
+
|[`operator std::vector<value_type>`](#operator_vec)|Uses `copy(*this, vector)` to implicitly convert the array to a std::[vector](../../../standard-library/vector-class.md) object.|
56
56
|[operator()](#operator_call)|Returns the element value that is specified by the parameters.|
57
57
|[operator\[\]](#operator_at)|Returns the element that is at the specified index.|
58
58
|[operator=](#operator_eq)|Copies the contents of the specified `array` object into this one.|
0 commit comments