Skip to content

Commit 33f813a

Browse files
Lodovico GiarettaLodovico Giaretta
authored andcommitted
Fixed spacing around colon in selective import
1 parent 0ecc086 commit 33f813a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/traits.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2027,7 +2027,7 @@ and that $(D T.outer) is the implicit reference to the outer class
20272027
template isInnerClass(T)
20282028
if (is(T == class))
20292029
{
2030-
import std.meta: staticIndexOf;
2030+
import std.meta : staticIndexOf;
20312031

20322032
enum isInnerClass = __traits(isSame, typeof(T.outer), __traits(parent, T))
20332033
&& (staticIndexOf!(__traits(allMembers, T), "outer") == -1);

0 commit comments

Comments
 (0)