Skip to content

Commit db73992

Browse files
committed
Resolve conflicts
1 parent 08a2823 commit db73992

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

library/alloc/Cargo.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@ bench = false
1616

1717
[dependencies]
1818
core = { path = "../core", public = true }
19-
<<<<<<< HEAD
20-
compiler_builtins = { version = "=0.1.151", features = ['rustc-dep-of-std'] }
21-
safety = { path = "../contracts/safety" }
22-
=======
2319
compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std'] }
24-
>>>>>>> subtree/library
20+
safety = { path = "../contracts/safety" }
2521

2622
[features]
2723
compiler-builtins-mem = ['compiler_builtins/mem']

library/core/src/num/f32.rs

-4
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,9 @@ use crate::convert::FloatToInt;
1818
use crate::kani;
1919
use crate::num::FpCategory;
2020
use crate::panic::const_assert;
21-
<<<<<<< HEAD
2221
#[allow(unused_imports)]
2322
use crate::ub_checks::float_to_int_in_range;
24-
use crate::{intrinsics, mem};
25-
=======
2623
use crate::{cfg_match, intrinsics, mem};
27-
>>>>>>> subtree/library
2824

2925
/// The radix or base of the internal representation of `f32`.
3026
/// Use [`f32::RADIX`] instead.

0 commit comments

Comments
 (0)