Browse Source

Clarify limitations around exceptions and RTTI.

pull/1247/merge
João Matos 6 years ago committed by GitHub
parent
commit
fc20e9f495
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      docs/UsersManual.md

8
docs/UsersManual.md

@ -345,11 +345,17 @@ Related passes: @@ -345,11 +345,17 @@ Related passes:
## Limitations
Support for these features is limited or only partial:
Support for these features is limited:
- Exceptions
- RTTI
They are supported and taken into account by the C++ parser for bindings generation,
but there is currently no way to catch C++ exceptions from C#.
There is also no way to check RTTI type information for a specific type from C#,
but not an issue in practice since C# itself provides this via `GetType()`.
## Standard library support
The generator provides some built-in type maps for the most common C/C++

Loading…
Cancel
Save