Skip to content

Commit

Permalink
Fixed package wide std.range import in std.regex.internal.kickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed Jul 5, 2016
1 parent e97579b commit 0bdd144
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion std/regex/internal/kickstart.d
Expand Up @@ -7,7 +7,7 @@ module std.regex.internal.kickstart;
package(std.regex):

import std.regex.internal.ir;
import std.range, std.utf;
import std.range.primitives, std.utf;

//utility for shiftOr, returns a minimum number of bytes to test in a Char
uint effectiveSize(Char)()
Expand Down Expand Up @@ -132,6 +132,7 @@ public:
static import std.algorithm.comparison;
import std.algorithm.searching : countUntil;
import std.conv : text;
import std.range : assumeSorted;
assert(memory.length == 256);
fChar = uint.max;
// FNV-1a flavored hash (uses 32bits at a time)
Expand Down

0 comments on commit 0bdd144

Please sign in to comment.