Skip to content

Commit

Permalink
Fixed spacing around colon in selective import
Browse files Browse the repository at this point in the history
  • Loading branch information
Lodovico Giaretta authored and Lodovico Giaretta committed Jul 24, 2016
1 parent 0ecc086 commit 33f813a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/traits.d
Original file line number Diff line number Diff line change
Expand Up @@ -2027,7 +2027,7 @@ and that $(D T.outer) is the implicit reference to the outer class
template isInnerClass(T)
if (is(T == class))
{
import std.meta: staticIndexOf;
import std.meta : staticIndexOf;

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

0 comments on commit 33f813a

Please sign in to comment.