Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Fix unused_import in benchmarks
  • Loading branch information
Markus Westerlind committed Nov 7, 2018
commit 7e655b7c3e699357727541add21c8fb6f5a64bf6
4 changes: 3 additions & 1 deletion bench/src/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ use std::iter::repeat;

use test::Bencher;

use {Regex, RegexSet, Text};
#[cfg(any(feature = "re-rust", feature = "re-rust-bytes"))]
use RegexSet;
use {Regex, Text};

#[cfg(not(feature = "re-onig"))]
#[cfg(not(feature = "re-pcre1"))]
Expand Down