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
This module is using an AtomicU64, which is preventing the client to be compilable on 32bit system. I propose to change this to use an AtomicUsize, but I am not sure if there are any implication or explicit decision to not support 32bit architectures.
The text was updated successfully, but these errors were encountered:
https://github.com/awslabs/smithy-rs/blob/6322569ea7e1f0a43e380b859c1cfabfcab92a5d/rust-runtime/aws-smithy-client/src/never.rs#L30
This module is using an
AtomicU64
, which is preventing the client to be compilable on 32bit system. I propose to change this to use anAtomicUsize
, but I am not sure if there are any implication or explicit decision to not support 32bit architectures.The text was updated successfully, but these errors were encountered: