Skip to content

Commit 5aa77d5

Browse files
authored
Merge pull request #13352 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch main)
2 parents 7afa50c + 3350987 commit 5aa77d5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/debugger/debug-interface-access/cv-modifier-e.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ typedef enum CV_modifier_e
5858
| `CV_MOD_INVALID` | Invalid modifier (unused) |
5959
| `CV_MOD_CONST` | C++ `const` |
6060
| `CV_MOD_VOLATILE` | C++ `volatile` |
61+
| `CV_MOD_UNALIGNED` | C++ `__unaligned` |
6162
| `CV_MOD_HLSL_UNIFORM` | HLSL uniform |
6263
| `CV_MOD_HLSL_LINE` | HLSL line |
6364
| `CV_MOD_HLSL_TRIANGLE` | HLSL triangle |

docs/debugger/debug-interface-access/idiasymbol-get-value.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The supplied VARIANT must be initialized before it is passed to this method. For
4444
void ProcessValue(IDiaSymbol *pSymbol)
4545
{
4646
VARIANT value;
47-
value.vt = VT_EMPTY; // Initialize variant for use.
47+
VariantInit(&value); // Initialize variant for use.
4848
if (pSymbol->get_value(&value) == S_OK)
4949
{
5050
// Do something with value.
@@ -65,3 +65,4 @@ void ProcessValue2(IDiaSymbol *pSymbol)
6565
6666
## See also
6767
- [IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)
68+
- [Variant Manipulation Functions](/previous-versions/windows/desktop/automat/variant-manipulation-functions)

docs/extensibility/visualstudio.extensibility/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### YamlMime:Landing
22

33
title: VisualStudio.Extensibility SDK
4-
summary: Learn about the new VisualStudio.Extensibility SDK, current in preview.
4+
summary: Learn about the new VisualStudio.Extensibility SDK, currently in preview.
55

66
metadata:
77
title: VisualStudio.Extensibility SDK

0 commit comments

Comments
 (0)