Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #931 from rainers/ms_long_double
Browse files Browse the repository at this point in the history
Fix c_long_double for COFF32 support
  • Loading branch information
WalterBright committed Aug 22, 2014
2 parents ae403ae + 6817ff8 commit 1685c90
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/core/stdc/config.d
Expand Up @@ -39,13 +39,15 @@ else

version( DigitalMars )
{
version( X86 )
version( CRuntime_Microsoft )
alias double c_long_double;
else version( X86 )
{
alias real c_long_double;
}
else version( X86_64 )
{
version( Windows )
alias double c_long_double;
else version( linux )
version( linux )
alias real c_long_double;
else version( FreeBSD )
alias real c_long_double;
Expand Down

0 comments on commit 1685c90

Please sign in to comment.