mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 15:10:46 +03:00
Fix FPTemporary
This commit is contained in:
parent
1f37557e38
commit
fe4df8df52
1 changed files with 4 additions and 1 deletions
|
@ -680,7 +680,10 @@ on very many factors.
|
||||||
template FPTemporary(F)
|
template FPTemporary(F)
|
||||||
if (isFloatingPoint!F)
|
if (isFloatingPoint!F)
|
||||||
{
|
{
|
||||||
alias FPTemporary = real;
|
version(X86)
|
||||||
|
alias FPTemporary = real;
|
||||||
|
else
|
||||||
|
alias FPTemporary = Unqual!F;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue