Skip to content

Commit

Permalink
Merge pull request #4218 from 9il/ffpt
Browse files Browse the repository at this point in the history
Trivial. Fix FPTemporary
  • Loading branch information
DmitryOlshansky committed Apr 22, 2016
2 parents 4b44f19 + fe4df8d commit a7dcfdd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion std/numeric.d
Original file line number Diff line number Diff line change
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 a7dcfdd

Please sign in to comment.