Skip to content

Commit

Permalink
fix crate root imports for 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Jun 21, 2018
1 parent 5364273 commit 5a9855c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/simd/avx2.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use ::Bytes;
use ::iter::Bytes;

pub unsafe fn parse_uri_batch_32<'a>(bytes: &mut Bytes<'a>) {
while bytes.as_ref().len() >= 32 {
Expand Down
2 changes: 1 addition & 1 deletion src/simd/fallback.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use ::Bytes;
use ::iter::Bytes;

// Fallbacks that do nothing...

Expand Down
2 changes: 1 addition & 1 deletion src/simd/sse42.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use ::Bytes;
use ::iter::Bytes;

pub unsafe fn parse_uri_batch_16<'a>(bytes: &mut Bytes<'a>) {
while bytes.as_ref().len() >= 16 {
Expand Down

0 comments on commit 5a9855c

Please sign in to comment.