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
Add support for #[cfg_attr(feature="reload", no_mangle)]
README contains example how to use feature flag on one side of API, it would be nice if feature could be used on the other side of the api too.
Additionaly, no_mangle_if_debug looks like it uses debug_assertions , but reading documentation it looks like it doesn't work in debug mode if optimizations are enabled.
So alternative method for controlling no_mangle attribute would be useful
The text was updated successfully, but these errors were encountered:
fixesrksm#36
the predicate currently isn't checked, which may cause false positives,
but this is very unlikely to happen and this can be dealt with in the future.
the relevant documentation and example have been adjusted.
the documentation for #[no_mangle_if_debug] has been removed since it doesn't
work with optimizations or the feature flag anyways.
it should later be deprecated and phased out.
Add support for #[cfg_attr(feature="reload", no_mangle)]
README contains example how to use feature flag on one side of API, it would be nice if feature could be used on the other side of the api too.
Additionaly, no_mangle_if_debug looks like it uses debug_assertions , but reading documentation it looks like it doesn't work in debug mode if optimizations are enabled.
So alternative method for controlling no_mangle attribute would be useful
The text was updated successfully, but these errors were encountered: