Skip to content

Repo sync for protected CLA branch #4223

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
30a7583
Merge pull request #4568 from MicrosoftDocs/FromPublicMasterBranch
colin-home Oct 11, 2022
2171749
Fix style, grammar in Arm64 Exception
colin-home Oct 11, 2022
b0ce95d
Merge pull request #4569 from corob-msft/learn/corob/cpp-docs-4202-fo…
prmerger-automator[bot] Oct 11, 2022
43b0e1f
Confirm merge from FromPublicMasterBranch to main to sync with https:…
fenxu Oct 12, 2022
bd9438f
Merge branch 'main' into FromPublicMasterBranch
colin-home Oct 12, 2022
149081f
Merge pull request #4572 from MicrosoftDocs/FromPublicMasterBranch
prmerger-automator[bot] Oct 12, 2022
0caeadf
cleanup empty remarks and tidy up code example formatting
Oct 12, 2022
8d130aa
Confirm merge from FromPublicMasterBranch to main to sync with https:…
fenxu Oct 12, 2022
4c47ccd
Merge pull request #4575 from TylerMSFT/twhitney-update
LJSpiller Oct 12, 2022
2c72f5c
fix typo
Oct 13, 2022
93c480f
fix another typo from code escaping
Oct 13, 2022
6bde3d2
Merge pull request #4577 from TylerMSFT/fixstream
prmerger-automator[bot] Oct 13, 2022
10707ed
Update relog.md
laurenprinn Oct 13, 2022
92b6bc6
Update relog.md
laurenprinn Oct 13, 2022
e4f9e77
Merge pull request #4579 from MicrosoftDocs/FromPublicMasterBranch
prmerger-automator[bot] Oct 14, 2022
32a525d
Make the grammar checker happy.
colin-home Oct 14, 2022
95c703e
Merge pull request #4578 from laurenprinn/main
prmerger-automator[bot] Oct 14, 2022
2960820
Merge pull request #4580 from MicrosoftDocs/FromPublicMasterBranch
colin-home Oct 14, 2022
83d7da5
Merge pull request #4581 from MicrosoftDocs/main
huypub Oct 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/build-insights/reference/sdk/functions/relog.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,6 @@ The input trace is passed through the analyzer group *numberOfAnalysisPasses* ti
The relogging of system events like CPU samples from within a relogger class isn't supported. Use the *systemEventsRetentionFlags* parameter to decide which system events to keep in the output trace.
The `relog` function depends on the COM API. You must call `CoInitialize` before you call `relog`. Call `CoUninitialize` once `relog` has finished. If you call `relog` without a call to `CoInitialize` first, you'll get error code 9 (`RESULT_CODE_FAILURE_START_RELOGGER`).
::: moniker-end
12 changes: 1 addition & 11 deletions docs/mfc/reference/cmfcpropertygridproperty-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -1427,17 +1427,7 @@ Sets the value of a property grid property.
```cpp
virtual void SetValue(const _variant_t& varValue);
```
Example:
```
void SetPropBarValue( UINT propId, const DWORD& barPropDwordValue )
{
auto property = propertiesGridCtrlList.FindItemByData( propId );
if( property )
{
property->SetValue( static_cast< _variant_t >( barPropDwordValue == 1 ) ); // sets property bar value to true or false depending on dword value
}
}
```

### Parameters

*`varValue`*\
Expand Down
4 changes: 2 additions & 2 deletions docs/standard-library/basic-istream-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ See the example for [`basic_ifstream` Class](../standard-library/basic-ifstream-
|[`swap`](#swap)|Exchanges this `basic_istream` object for the provided `basic_istream` object parameter.|
|[`sync`](#sync)|Synchronizes the stream's associated input device with the stream's buffer.|
|[`tellg`](#tellg)|Reports the current read position in the stream.|
|[u`nget](#unget)|Puts the most recently read character back into the stream.|
|[`unget`](#unget)|Puts the most recently read character back into the stream.|

### Operators

Expand Down Expand Up @@ -161,7 +161,7 @@ A `basic_istream` object to copy.

The first constructor initializes the base class by calling `init(strbuf)`. It also stores zero in the extraction count. For more information, see [`init`](../standard-library/basic-ios-class.md#init). And for more information about this extraction count, see the Remarks section of the [`basic_istream` Class](../standard-library/basic-istream-class.md) overview.

The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`**.
The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`*.

### Example

Expand Down