Skip to content

Commit

Permalink
fix vcbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers committed Feb 24, 2012
1 parent fe3a113 commit 9098b1b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions src/dmd_msc.vcproj
Expand Up @@ -349,6 +349,10 @@
RelativePath=".\aliasthis.h"
>
</File>
<File
RelativePath=".\apply.c"
>
</File>
<File
RelativePath=".\argtypes.c"
>
Expand All @@ -373,6 +377,10 @@
RelativePath=".\builtin.c"
>
</File>
<File
RelativePath=".\canthrow.c"
>
</File>
<File
RelativePath=".\cast.c"
>
Expand Down Expand Up @@ -645,6 +653,10 @@
RelativePath=".\scope.h"
>
</File>
<File
RelativePath=".\sideeffect.c"
>
</File>
<File
RelativePath=".\statement.c"
>
Expand Down
8 changes: 4 additions & 4 deletions src/root/longdouble.c
Expand Up @@ -10,7 +10,7 @@

// 80 bit floating point value implementation for Microsoft compiler

#ifdef _MSC_VER
#if _MSC_VER
#include "longdouble.h"

#include "assert.h"
Expand Down Expand Up @@ -571,8 +571,6 @@ int ld_sprint(char* str, int fmt, longdouble x)
return len;
}

#endif // _MSC_VER

//////////////////////////////////////////////////////////////

#if UNITTEST
Expand Down Expand Up @@ -632,5 +630,7 @@ static bool unittest()

static bool runUnittest = unittest();

#endif
#endif // UNITTEST

#endif // _MSC_VER

0 comments on commit 9098b1b

Please sign in to comment.