summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/src/float/extend.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/compiler_builtins/src/float/extend.rs')
-rw-r--r--vendor/compiler_builtins/src/float/extend.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/compiler_builtins/src/float/extend.rs b/vendor/compiler_builtins/src/float/extend.rs
index 39633773b..cffc57510 100644
--- a/vendor/compiler_builtins/src/float/extend.rs
+++ b/vendor/compiler_builtins/src/float/extend.rs
@@ -1,5 +1,5 @@
-use float::Float;
-use int::{CastInto, Int};
+use crate::float::Float;
+use crate::int::{CastInto, Int};
/// Generic conversion from a narrower to a wider IEEE-754 floating-point type
fn extend<F: Float, R: Float>(a: F) -> R