Skip to content

Commit

Permalink
Merge pull request #3 from mockingbirdnest/MSVC
Browse files Browse the repository at this point in the history
Put includes at the right place
  • Loading branch information
pleroy authored Oct 15, 2024
2 parents 09654cd + be88ed9 commit d794654
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions msvc/core-math.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ClCompile Include="..\src\binary64\sin\sin.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\include\cos.h" />
<ClInclude Include="..\include\sin.h" />
<ClInclude Include="..\include\core-math\cos.h" />
<ClInclude Include="..\include\core-math\sin.h" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions msvc/core-math.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\include\cos.h">
<ClInclude Include="..\include\core-math\cos.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\include\sin.h">
<ClInclude Include="..\include\core-math\sin.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/binary64/cos/cos.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SOFTWARE.

// This code has been adapted to C++ and MSVC.

#include "cos.h"
#include "core-math/cos.h"

/* stdio.h and stdlib.h are needed in case the rounding test of the accurate
step fails, to print the corresponding input and exit. */
Expand Down
2 changes: 1 addition & 1 deletion src/binary64/sin/sin.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SOFTWARE.

// This code has been adapted to C++ and MSVC.

#include "sin.h"
#include "core-math/sin.h"

/* stdio.h and stdlib.h are needed in case the rounding test of the accurate
step fails, to print the corresponding input and exit. */
Expand Down

0 comments on commit d794654

Please sign in to comment.