We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ff82a commit e629842Copy full SHA for e629842
opentelemetry-sdk/src/metrics/internal/mod.rs
@@ -11,10 +11,10 @@ use std::mem::swap;
11
use std::ops::{Add, AddAssign, DerefMut, Sub};
12
use std::sync::atomic::Ordering;
13
14
-#[cfg(not(any(target_arch = "xtensa")))]
+#[cfg(not(target_arch = "xtensa"))]
15
use std::sync::atomic::{AtomicBool, AtomicI64, AtomicU64, AtomicUsize};
16
17
-#[cfg(any(target_arch = "xtensa"))]
+#[cfg(target_arch = "xtensa")]
18
use portable_atomic::{AtomicBool, AtomicI64, AtomicU64, AtomicUsize};
19
20
use std::sync::{Arc, OnceLock, RwLock};
0 commit comments