Skip to content

Commit 5dfd82b

Browse files
committed
Resolve conflicts
1 parent 7609a46 commit 5dfd82b

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

library/core/src/str/pattern.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,14 +1921,10 @@ fn simd_contains(needle: &str, haystack: &str) -> Option<bool> {
19211921
/// # Safety
19221922
///
19231923
/// Both slices must have the same length.
1924-
<<<<<<< HEAD
1925-
#[cfg(all(target_arch = "x86_64", any(kani, target_feature = "sse2")))] // only called on x86
1926-
=======
19271924
#[cfg(any(
1928-
all(target_arch = "x86_64", target_feature = "sse2"),
1925+
all(target_arch = "x86_64", any(kani, target_feature = "sse2")),
19291926
all(target_arch = "loongarch64", target_feature = "lsx")
19301927
))]
1931-
>>>>>>> subtree/library
19321928
#[inline]
19331929
#[requires(x.len() == y.len())]
19341930
unsafe fn small_slice_eq(x: &[u8], y: &[u8]) -> bool {

library/std/Cargo.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,8 @@ unwind = { path = "../unwind" }
2323
hashbrown = { version = "0.15", default-features = false, features = [
2424
'rustc-dep-of-std',
2525
] }
26-
<<<<<<< HEAD
27-
std_detect = { path = "../stdarch/crates/std_detect", public = true, default-features = false, features = [
28-
'rustc-dep-of-std',
29-
] }
30-
safety = { path = "../contracts/safety" }
31-
=======
3226
std_detect = { path = "../std_detect", public = true }
33-
>>>>>>> subtree/library
27+
safety = { path = "../contracts/safety" }
3428

3529
# Dependencies of the `backtrace` crate
3630
rustc-demangle = { version = "0.1.24", features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)