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
For feature flagged logic like below. Full example here.
#[cfg(not(feature = "high_precision"))] pub const MAX: u64 = 100; #[cfg(feature = "high_precision")] pub const MAX: u128 = 50;
[defines] "feature = high_precision" = "DEFINE_HIGH_PRECISION"
IF not DEFINE_HIGH_PRECISION: const uint64_t MAX # = 100
However, Cython compiler is deprecating IF DEF logic1 and has started showing warnings in the latest version.
https://cython.readthedocs.io/en/latest/src/userguide/migrating_to_cy30.html#deprecated-def-if ↩
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For feature flagged logic like below. Full example here.
However, Cython compiler is deprecating IF DEF logic1 and has started showing warnings in the latest version.
Footnotes
https://cython.readthedocs.io/en/latest/src/userguide/migrating_to_cy30.html#deprecated-def-if ↩
The text was updated successfully, but these errors were encountered: