Skip to content

Commit 27cc7e7

Browse files
Merge pull request #5218 from TylerMSFT/github
Fixes #3195 - update required header file
2 parents 434ebe3 + 4bb3598 commit 27cc7e7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/c-runtime-library/rtdynamiccast.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["RTTIDATA/__RTDynamicCast", "__RTDynamicCast"]
1010
helpviewer_keywords: ["__RTDynamicCast"]
11-
ms.assetid: 56aa2d7a-aa47-46ef-830d-e37175611239
1211
---
1312
# `__RTDynamicCast`
1413

@@ -17,13 +16,13 @@ Runtime implementation of the [`dynamic_cast`](../cpp/dynamic-cast-operator.md)
1716
## Syntax
1817

1918
```cpp
20-
PVOID __RTDynamicCast (
19+
PVOID __RTDynamicCast(
2120
PVOID inptr,
2221
LONG VfDelta,
2322
PVOID SrcType,
2423
PVOID TargetType,
2524
BOOL isReference
26-
) throw(...)
25+
) throw(...)
2726
```
2827
2928
#### Parameters
@@ -45,7 +44,7 @@ Intended result of cast.
4544
4645
## Return value
4746
48-
Pointer to the appropriate subobject, if successful; otherwise, `NULL`.
47+
Pointer to the appropriate subobject if successful; otherwise, `NULL`.
4948
5049
## Exceptions
5150
@@ -59,4 +58,4 @@ Converts `inptr` to an object of type `TargetType`. The type of `inptr` must be
5958
6059
| Routine | Required header |
6160
|---|---|
62-
| **`__RTDynamicCast`** | `<rtti.h>` |
61+
| **`__RTDynamicCast`** | `<rttidata.h>` |

0 commit comments

Comments
 (0)