Replies: 1 comment
-
I'm facing the same issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a project that involves generating C++ code, and there are many different aliases that end up resolving to the same type. This is causing "type already registered" errors.
I'm unsure of what is the correct way to determine whether a type is already registered.
I am currently attempting to use
py::detail::get_type_info
to get apy::detail::type_info
structure. However, the fact that this structure is defined in a header called "internals" makes me think it's not a good idea to use it.Is there another, better way?
Beta Was this translation helpful? Give feedback.
All reactions