Skip to content

Commit

Permalink
The std.traits.ImplicitConversionTargets returns wrong result for dchar
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldMax committed Jan 17, 2014
1 parent 0bf2507 commit dbf868e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/traits.d
Expand Up @@ -3892,7 +3892,7 @@ template ImplicitConversionTargets(T)
float, double, real)
ImplicitConversionTargets;
else static if (is(T == dchar))
alias TypeTuple!(wchar, dchar, int, uint, long, ulong,
alias TypeTuple!(dchar, int, uint, long, ulong,
float, double, real)
ImplicitConversionTargets;
else static if (is(T : typeof(null)))
Expand Down

0 comments on commit dbf868e

Please sign in to comment.