Skip to content

Commit c4559da

Browse files
author
3836425+corob-msft@users.noreply.github.com
committed
Fix lt-gt entity pairs
1 parent 153f7ed commit c4559da

File tree

185 files changed

+198
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+198
-198
lines changed

docs/code-quality/quick-start-code-analysis-for-c-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Visual Studio includes these standard sets of rules for native code:
3838
| **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). |
3939
| **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). |
4040
| **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). |
4242
| **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). |
4343
| **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. |
4444
| **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). |

docs/cppcx/platform-box-class.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ ref class Box abstract;
2727
|Member|Description|
2828
|------------|-----------------|
2929
|[Box](#ctor) | Creates a `Box` that can encapsulate a value of the specified type. |
30-
|[operator Box&lt;const T&gt;^](#box-const-t) | Enables boxing conversions from a **`const`** value class `T` or **`enum`** class `T` to `Box<T>`. |
31-
|[operator Box&lt;const volatile T&gt;^](#box-const-volatile-t) | Enables boxing conversions from a **`const volatile`** value class `T` or **`enum`** type `T` to `Box<T>`. |
32-
|[operator Box&lt;T&gt;^](#box-t) | Enables boxing conversions from a value class `T` to `Box<T>`. |
33-
|[operator Box&lt;volatile T&gt;^](#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>`. |
3434
|[Box::operator T](#t) | Enables boxing conversions from a value class `T` or **`enum`** class `T` to `Box<T>`. |
3535
|[Value property](#value) | Returns the value that is encapsulated in the `Box` object. |
3636
@@ -49,7 +49,7 @@ Box(T valueArg);
4949
*valueArg*<br/>
5050
The type of value to be boxed—for example, **`int`**, **`bool`**, `float64`, `DateTime`.
5151

52-
## <a name="box-const-t"></a> Box::operator Box&lt;const T&gt;^ Operator
52+
## <a name="box-const-t"></a> `Box::operator Box<const T>^` Operator
5353

5454
Enables boxing conversions from a **`const`** value class `T` or **`enum`** class `T` to `Box<T>`.
5555

@@ -68,7 +68,7 @@ Any value class, value struct, or enum type. Includes the built-in types in the
6868

6969
A `Platform::Box<T>^` instance that represents the original value boxed in a ref class.
7070

71-
## <a name="box-const-volatile-t"></a> Box::operator Box&lt;const volatile T&gt;^ Operator
71+
## <a name="box-const-volatile-t"></a> `Box::operator Box<const volatile T>^` Operator
7272

7373
Enables boxing conversions from a **`const volatile`** value class `T` or **`enum`** type `T` to `Box<T>`.
7474

@@ -87,7 +87,7 @@ Any enum type, value class, or value struct. Includes the built-in types in the
8787

8888
A `Platform::Box<T>^` instance that represents the original value boxed in a ref class.
8989

90-
## <a name="box-t"></a> Box::operator Box&lt;T&gt;^ Operator
90+
## <a name="box-t"></a> `Box::operator Box<T>^` Operator
9191

9292
Enables boxing conversions from a value class `T` to `Box<T>`.
9393

@@ -106,7 +106,7 @@ Any enum type, value class, or value struct. Includes the built-in types in the
106106

107107
A `Platform::Box<T>^` instance that represents the original value boxed in a ref class.
108108

109-
## <a name="box-volatile-t"></a> Box::operator Box&lt;volatile T&gt;^ Operator
109+
## <a name="box-volatile-t"></a> `Box::operator Box<volatile T>^` Operator
110110

111111
Enables boxing conversions from a **`volatile`** value class `T` or **`enum`** type `T` to `Box<T>`.
112112

docs/overview/what-s-new-for-cpp-2019.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ The new IntelliCode features (Custom Models, C++ support, and EditorConfig infer
337337

338338
### Code Analysis
339339

340-
- New quick fixes for uninitialized variable checks were added. Code Analysis warnings [C6001: using uninitialized memory &lt;variable&gt;](../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/).
341341

342342
### Remote builds
343343

docs/parallel/amp/reference/array-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The rank of the array.
5252

5353
|Name|Description|
5454
|----------|-----------------|
55-
|[operator std::vector&lt;value_type&gt;](#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.|
5656
|[operator()](#operator_call)|Returns the element value that is specified by the parameters.|
5757
|[operator\[\]](#operator_at)|Returns the element that is at the specified index.|
5858
|[operator=](#operator_eq)|Copies the contents of the specified `array` object into this one.|
@@ -520,7 +520,7 @@ Concurrency::extent<_Rank> get_extent() const restrict(amp,cpu);
520520

521521
The `extent` object of the `array`.
522522

523-
## <a name="operator_vec"></a> operator std::vector&lt;value_type&gt;
523+
## <a name="operator_vec"></a> `operator std::vector<value_type>`
524524

525525
Uses `copy(*this, vector)` to implicitly convert the array to a std::vector object.
526526

docs/standard-library/allocators-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["allocators/std::ALLOCATOR_DECL", "allocators/std::CACHE_CHUNKLIST
66
ms.assetid: 9cb5ee07-1ff9-4594-ae32-3c8c6efb511a
77
helpviewer_keywords: ["std::ALLOCATOR_DECL [C++]", "std::CACHE_CHUNKLIST [C++]", "std::CACHE_FREELIST [C++]", "std::CACHE_SUBALLOC [C++]", "std::SYNC_DEFAULT [C++]"]
88
---
9-
# &lt;allocators&gt; macros
9+
# `<allocators>` macros
1010

1111
:::row:::
1212
:::column span="":::

docs/standard-library/allocators-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["<allocators>"]
66
helpviewer_keywords: ["allocators header"]
77
ms.assetid: 4393a607-4df8-4278-bbb2-c8ec52e60b83
88
---
9-
# &lt;allocators&gt;
9+
# `<allocators>`
1010

1111
Defines several templates that help allocate and free memory blocks for node-based containers.
1212

docs/standard-library/allocators-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ms.date: "11/04/2016"
55
f1_keywords: ["allocators/std::operator!=", "allocators/std::operator=="]
66
ms.assetid: b55d67cb-3c69-46bf-ad40-e845fb096c4e
77
---
8-
# &lt;allocators&gt; operators
8+
# `<allocators>` operators
99

10-
These are the global template operator functions defined in &lt;allocators&gt;. For class member operator functions, see the class documentation.
10+
These are the global template operator functions defined in `<allocators>`. For class member operator functions, see the class documentation.
1111

1212
[operator!=](#op_neq)\
1313
[operator==](#op_eq_eq)

docs/standard-library/array-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["array/std::array::get", "array/std::get", "array/std::swap"]
66
ms.assetid: e0700a33-a833-4655-8735-16e71175efc8
77
helpviewer_keywords: ["std::array [C++], get", "std::get [C++]", "std::swap [C++]"]
88
---
9-
# &lt;array&gt; functions
9+
# `<array>` functions
1010

1111
The \<array> header includes two non-member functions, `get` and `swap`, that operate on **array** objects.
1212

docs/standard-library/array-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "11/04/2016"
55
f1_keywords: ["array/std::array::operator!=", "array/std::array::operator<", "array/std::array::operator<=", "array/std::array::operator>", "array/std::array::operator>=", "array/std::array::operator=="]
66
ms.assetid: c8f46282-f179-4909-9a01-639cb8e18c27
77
---
8-
# &lt;array&gt; operators
8+
# `<array>` operators
99

1010
The \<array> header includes these **array** non-member comparison template functions.
1111

docs/standard-library/array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["<array>"]
66
helpviewer_keywords: ["array header"]
77
ms.assetid: 084147c1-e805-478e-8201-76846020f187
88
---
9-
# &lt;array&gt;
9+
# `<array>`
1010

1111
Defines the container class template **array** and several supporting templates.
1212

0 commit comments

Comments
 (0)