Skip to content

Commit

Permalink
Remove prelude imports
Browse files Browse the repository at this point in the history
They cause conflicts with IntoIterator imports, and by removing the prelude
import instead of IntoIterator this enables continuing to work with 1.0.0-beta
  • Loading branch information
alexcrichton committed Apr 23, 2015
1 parent 66bd037 commit 98183e1
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion phf/src/map.rs
@@ -1,6 +1,5 @@
//! An immutable map constructed at compile time.
use debug_builders::DebugMap;
use std::prelude::v1::*;
use std::borrow::Borrow;
use std::ops::Index;
use std::slice;
Expand Down
1 change: 0 additions & 1 deletion phf/src/ordered_map.rs
@@ -1,6 +1,5 @@
//! An order-preserving immutable map constructed at compile time.
use debug_builders::DebugMap;
use std::prelude::v1::*;
use std::borrow::Borrow;
use std::iter::IntoIterator;
use std::ops::Index;
Expand Down
1 change: 0 additions & 1 deletion phf/src/ordered_set.rs
@@ -1,6 +1,5 @@
//! An order-preserving immutable set constructed at compile time.
use debug_builders::DebugSet;
use std::prelude::v1::*;
use std::borrow::Borrow;
use std::iter::IntoIterator;
use std::fmt;
Expand Down
1 change: 0 additions & 1 deletion phf/src/set.rs
@@ -1,6 +1,5 @@
//! An immutable set constructed at compile time.
use debug_builders::DebugSet;
use std::prelude::v1::*;
use std::borrow::Borrow;
use std::iter::IntoIterator;
use std::fmt;
Expand Down

0 comments on commit 98183e1

Please sign in to comment.