We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
check-cfg
target_pointer_width = "128"
1 parent 9210db6 commit 29c4d04Copy full SHA for 29c4d04
src/macros.rs
@@ -2,19 +2,19 @@
2
3
macro_rules! cfg_32 {
4
($($any:tt)+) => {
5
- #[cfg(not(any(target_pointer_width = "64", target_pointer_width = "128")))] $($any)+
+ #[cfg(not(target_pointer_width = "64"))] $($any)+
6
}
7
8
9
macro_rules! cfg_32_or_test {
10
11
- #[cfg(any(not(any(target_pointer_width = "64", target_pointer_width = "128")), test))] $($any)+
+ #[cfg(any(not(target_pointer_width = "64"), test))] $($any)+
12
13
14
15
macro_rules! cfg_64 {
16
17
- #[cfg(any(target_pointer_width = "64", target_pointer_width = "128"))] $($any)+
+ #[cfg(target_pointer_width = "64")] $($any)+
18
19
20
0 commit comments