Skip to content

Commit

Permalink
Fix FPTemporary
Browse files Browse the repository at this point in the history
  • Loading branch information
9il committed Apr 19, 2016
1 parent 1f37557 commit fe4df8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion std/numeric.d
Expand Up @@ -680,7 +680,10 @@ on very many factors.
template FPTemporary(F)
if (isFloatingPoint!F)
{
alias FPTemporary = real;
version(X86)
alias FPTemporary = real;
else
alias FPTemporary = Unqual!F;
}

///
Expand Down

0 comments on commit fe4df8d

Please sign in to comment.