You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of ctypeslib does not support C++ interface (I understand this could be a very complicated issue). If I have a c++ interface like this:
To my understanding, you can't use C++ with ctypes, because it does not result in a stable, FFI-bindable ABI (as opposed to C). You'll want something like pybind11 instead.
The current implementation of ctypeslib does not support C++ interface (I understand this could be a very complicated issue). If I have a c++ interface like this:
the output of clang2py is like this:
Which basically generates a dummy class.
I would expect something like this:
And I can call the function from python like:
The text was updated successfully, but these errors were encountered: