Skip to content

Commit

Permalink
Merge pull request #4437 from puneet/master
Browse files Browse the repository at this point in the history
Fix for for issue 16182 - std.traits.fullyQualifiedName Bug
  • Loading branch information
9il authored Jul 29, 2016
2 parents 3b960a1 + 59df244 commit f75eeb5
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 @@ -537,7 +537,7 @@ private template fqnSym(alias T : X!A, alias X, A...)
private template fqnSym(alias T)
{
static if (__traits(compiles, __traits(parent, T)))
enum parentPrefix = fqnSym!(__traits(parent, T)) ~ '.';
enum parentPrefix = fqnSym!(__traits(parent, T)) ~ ".";
else
enum parentPrefix = null;

Expand Down

0 comments on commit f75eeb5

Please sign in to comment.