Skip to content

Commit

Permalink
Merge pull request #59 from alexcrichton/update
Browse files Browse the repository at this point in the history
Remove prelude imports
  • Loading branch information
sfackler committed Apr 23, 2015
2 parents 66bd037 + 98183e1 commit 6bd5a93
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 6bd5a93

Please sign in to comment.