Skip to content

Commit 5d0c5db

Browse files
std.uni : appease circle-CI checks
1 parent bc14c02 commit 5d0c5db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

std/uni.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,8 @@ import std.range.primitives; // back, ElementEncodingType, ElementType, empty,
713713
// save
714714
import std.traits; // isConvertibleToString, isIntegral, isSomeChar,
715715
// isSomeString, Unqual
716-
import std.exception; // enforce
716+
import std.exception : enforce, collectException;
717+
static import std.ascii;
717718
// debug = std_uni;
718719

719720
debug(std_uni) import std.stdio; // writefln, writeln
@@ -6827,7 +6828,6 @@ auto caseEnclose(CodepointSet set)
68276828
static package CodepointSet parsePropertySpec(Range)(ref Range p,
68286829
bool negated, bool casefold)
68296830
{
6830-
import std.ascii;
68316831
with(p)
68326832
{
68336833
enum MAX_PROPERTY = 128;
@@ -6878,7 +6878,7 @@ auto caseEnclose(CodepointSet set)
68786878
///
68796879
@safe unittest
68806880
{
6881-
import std.uni;
6881+
import std.uni : unicode;
68826882
string pat = "[a-zA-Z0-9]hello";
68836883
auto set = unicode.parseSet(pat);
68846884
// check some of the codepoints

0 commit comments

Comments
 (0)