Skip to content

Commit 24392fe

Browse files
replacing this keyword (#4367)
1 parent f78a906 commit 24392fe

4 files changed

Lines changed: 16 additions & 8 deletions

File tree

docs/data/oledb/user-record.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
description: "Learn more about: User Record"
33
title: "User Record"
4-
ms.date: "05/09/2019"
4+
ms.date: 06/21/2022
55
helpviewer_keywords: ["records, user", "OLE DB providers, user record", "user records", "user records, described", "rowsets, user record"]
66
ms.assetid: 9c0d2864-2738-4f62-a750-1016d9c3523f
7+
ms.custom: devdivchpfy22
78
---
9+
810
# User Record
911

1012
> [!NOTE]
@@ -53,7 +55,7 @@ The PROVIDER_COLUMN_MAP macros aid in creating a `GetColumnInfo` function:
5355
5456
- END_PROVIDER_COLUMN_MAP closes the array and the function. It also places the array element count into the *pcCols* parameter.
5557
56-
When a user record is created at run time, `GetColumnInfo` uses the *pThis* parameter to receive a pointer to a rowset or command instance. Commands and rowsets must support the `IColumnsInfo` interface, so column information can be taken from this pointer.
58+
When a user record is created at run time, `GetColumnInfo` uses the *`pThis`* parameter to receive a pointer to a rowset or command instance. Commands and rowsets must support the `IColumnsInfo` interface, so column information can be taken from this pointer.
5759
5860
`CommandClass` and `RowsetClass` are the command and rowset that use the user record.
5961

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: "Learn more about: index Class"
33
title: "index Class"
4-
ms.date: "03/27/2019"
4+
ms.date: 06/21/2022
55
f1_keywords: ["AMP/index", "AMP/Concurrency::index::index", "AMP/Concurrency::index::rank"]
66
helpviewer_keywords: ["index structure"]
77
ms.assetid: cbe79b08-0ba7-474c-9828-f1a71da39eb3
8+
ms.custom: devdivchpfy22
89
---
10+
911
# index Class
1012

1113
Defines an *N*-dimensional index vector.

docs/standard-library/weak-ptr-class.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
description: "Learn more about: weak_ptr Class"
33
title: "weak_ptr Class"
4-
ms.date: "07/29/2019"
4+
ms.date: 06/21/2022
55
f1_keywords: ["memory/std::weak_ptr", "memory/std::weak_ptr::element_type", "memory/std::weak_ptr::expired", "memory/std::weak_ptr::lock", "memory/std::weak_ptr::owner_before", "memory/std::weak_ptr::reset", "memory/std::weak_ptr::swap", "memory/std::weak_ptr::use_count", "memory/std::weak_ptr::operator="]
66
helpviewer_keywords: ["std::weak_ptr [C++]", "std::weak_ptr [C++], element_type", "std::weak_ptr [C++], expired", "std::weak_ptr [C++], lock", "std::weak_ptr [C++], owner_before", "std::weak_ptr [C++], reset", "std::weak_ptr [C++], swap", "std::weak_ptr [C++], use_count", "std::weak_ptr [C++], element_type", "std::weak_ptr [C++], expired", "std::weak_ptr [C++], lock", "std::weak_ptr [C++], owner_before", "std::weak_ptr [C++], reset", "std::weak_ptr [C++], swap", "std::weak_ptr [C++], use_count"]
7+
ms.custom: devdivchpfy22
78
---
9+
810
# `weak_ptr` Class
911

1012
Wraps a weakly linked pointer.

docs/standard-library/writing-your-own-manipulators-without-arguments.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
22
description: "Learn more about: Writing Your Own Manipulators Without Arguments"
33
title: "Writing Your Own Manipulators Without Arguments"
4-
ms.date: "11/04/2016"
4+
ms.date: 06/21/2022
55
helpviewer_keywords: ["manipulators"]
66
ms.assetid: 2dc62d09-45b7-454d-bd9d-55f3c72c206d
7+
ms.custom: devdivchpfy22
78
---
9+
810
# Writing Your Own Manipulators Without Arguments
911

10-
Writing manipulators that do not use arguments requires neither class derivation nor use of complex macros. Suppose your printer requires the pair \<ESC>[ to enter bold mode. You can insert this pair directly into the stream:
12+
Writing manipulators that don't use arguments requires neither class derivation nor use of complex macros. Suppose your printer requires the pair \<ESC>[ to enter bold mode. You can insert this pair directly into the stream:
1113

1214
```cpp
1315
cout << "regular " << '\033' << '[' << "boldface" << endl;
@@ -22,7 +24,7 @@ ostream& bold(ostream& os) {
2224
cout << "regular " << bold << "boldface" << endl;
2325
```
2426
25-
The globally defined `bold` function takes an `ostream` reference argument and returns the `ostream` reference. It is not a member function or a friend because it does not need access to any private class elements. The `bold` function connects to the stream because the stream's `<<` operator is overloaded to accept that type of function, using a declaration that looks something like this:
27+
The globally defined `bold` function takes an `ostream` reference argument and returns the `ostream` reference. It isn't a member function or a friend because it doesn't need access to any private class elements. The `bold` function connects to the stream because the stream's `<<` operator is overloaded to accept that type of function, using a declaration that looks something like this:
2628
2729
```cpp
2830
_Myt& operator<<(ios_base& (__cdecl *_Pfn)(ios_base&))
@@ -34,7 +36,7 @@ _Myt& operator<<(ios_base& (__cdecl *_Pfn)(ios_base&))
3436
}
3537
```
3638

37-
You can use this feature to extend other overloaded operators. In this case, it is incidental that `bold` inserts characters into the stream. The function is called when it is inserted into the stream, not necessarily when the adjacent characters are printed. Thus, printing could be delayed because of the stream's buffering.
39+
You can use this feature to extend other overloaded operators. In this case, it's incidental that `bold` inserts characters into the stream. The function is called when it's inserted into the stream, not necessarily when the adjacent characters are printed. Thus, printing could be delayed because of the stream's buffering.
3840

3941
## See also
4042

0 commit comments

Comments
 (0)