We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generally a lot of the existing C++ code can be moved to C so that functions could be inlined there as well.
Note extra care must be taken, so that we can maintain exception safety: no extern "C", no function pointer leaks, that would break ODR
extern "C"
Is the effort worth it?
The text was updated successfully, but these errors were encountered:
If type becomes less opaque, we could have more informative debug information in C (through natvis or other watchers)
type
Sorry, something went wrong.
No branches or pull requests
Generally a lot of the existing C++ code can be moved to C so that functions could be inlined there as well.
Note extra care must be taken, so that we can maintain exception safety: no
extern "C"
, no function pointer leaks, that would break ODRIs the effort worth it?
The text was updated successfully, but these errors were encountered: