Skip to content

Commit 99ac9a8

Browse files
authored
Merge pull request #10459 from Michael-K-Stein/patch-1
Update UdtKind C enumeration code
2 parents fb557ba + 663388f commit 99ac9a8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/debugger/debug-interface-access/udtkind.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ Describes the variety of user-defined type (UDT).
1919
## Syntax
2020

2121
```C++
22-
enum UdtKind {
22+
enum UdtKind
23+
{
2324
UdtStruct,
2425
UdtClass,
2526
UdtUnion,
26-
UdtInterface
27+
UdtInterface,
28+
UdtTaggedUnion
2729
};
2830
```
2931

0 commit comments

Comments
 (0)