about summary refs log tree commit diff
path: root/src/libcore/ops/range.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-04-18 17:48:21 +0000
committerbors <bors@rust-lang.org>2019-04-18 17:48:21 +0000
commit5d20ff4d2718c820632b38c1e49d4de648a9810b (patch)
treea9aa3fcb675be47650c5dd9d35a76f65784e8850 /src/libcore/ops/range.rs
parentd6f513ec7d1e83c8689f94fb48686dd11f1d1c80 (diff)
parente28bce7a518824a90a23f1e1e79ba62507d9dc44 (diff)
downloadrust-5d20ff4d2718c820632b38c1e49d4de648a9810b.tar.gz
rust-5d20ff4d2718c820632b38c1e49d4de648a9810b.zip
Auto merge of #58702 - taiki-e:libcore-2018, r=Centril
libcore => 2018

Transitions `libcore` to Rust 2018; cc #58099

r? @Centril
Diffstat (limited to 'src/libcore/ops/range.rs')
-rw-r--r--src/libcore/ops/range.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/ops/range.rs b/src/libcore/ops/range.rs
index 5b6023f2e2c..e13df04c2ce 100644
--- a/src/libcore/ops/range.rs
+++ b/src/libcore/ops/range.rs
@@ -1,5 +1,5 @@
-use fmt;
-use hash::{Hash, Hasher};
+use crate::fmt;
+use crate::hash::{Hash, Hasher};
 
 /// An unbounded range (`..`).
 ///