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
Considering some existing code that logically returns values as u64:
u64
qcs-sdk-qir/src/interop/instruction.rs
Lines 137 to 146 in 121101e
Lines 88 to 94 in 121101e
These values are regularly re-used elsewhere and need to be cast to usize, which technically can cause truncation, e.g.
usize
qcs-sdk-qir/src/output/debug.rs
Lines 55 to 61 in 82d7339
While it's not a major issue now, it's worth re-visiting in the future. This issue tracks the intent to do so.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Considering some existing code that logically returns values as
u64
:qcs-sdk-qir/src/interop/instruction.rs
Lines 137 to 146 in 121101e
qcs-sdk-qir/src/interop/instruction.rs
Lines 88 to 94 in 121101e
These values are regularly re-used elsewhere and need to be cast to
usize
, which technically can cause truncation, e.g.qcs-sdk-qir/src/output/debug.rs
Lines 55 to 61 in 82d7339
While it's not a major issue now, it's worth re-visiting in the future. This issue tracks the intent to do so.
The text was updated successfully, but these errors were encountered: