From 2bc37801f8fe2f98db5473b6a9c718540a27ba87 Mon Sep 17 00:00:00 2001 From: pleroy Date: Tue, 15 Oct 2024 14:18:52 +0200 Subject: [PATCH] Put the includes at the right place. --- include/{ => core-math}/cos.h | 0 include/{ => core-math}/sin.h | 0 msvc/core-math.vcxproj | 4 ++-- msvc/core-math.vcxproj.filters | 4 ++-- src/binary64/cos/cos.c | 2 +- src/binary64/sin/sin.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename include/{ => core-math}/cos.h (100%) rename include/{ => core-math}/sin.h (100%) diff --git a/include/cos.h b/include/core-math/cos.h similarity index 100% rename from include/cos.h rename to include/core-math/cos.h diff --git a/include/sin.h b/include/core-math/sin.h similarity index 100% rename from include/sin.h rename to include/core-math/sin.h diff --git a/msvc/core-math.vcxproj b/msvc/core-math.vcxproj index f9b8447..eb6cbd9 100644 --- a/msvc/core-math.vcxproj +++ b/msvc/core-math.vcxproj @@ -24,7 +24,7 @@ - - + + \ No newline at end of file diff --git a/msvc/core-math.vcxproj.filters b/msvc/core-math.vcxproj.filters index 77965b5..1cb6860 100644 --- a/msvc/core-math.vcxproj.filters +++ b/msvc/core-math.vcxproj.filters @@ -23,10 +23,10 @@ - + Header Files - + Header Files diff --git a/src/binary64/cos/cos.c b/src/binary64/cos/cos.c index 45ec54c..bc50021 100644 --- a/src/binary64/cos/cos.c +++ b/src/binary64/cos/cos.c @@ -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. */ diff --git a/src/binary64/sin/sin.c b/src/binary64/sin/sin.c index ddce012..af8225b 100644 --- a/src/binary64/sin/sin.c +++ b/src/binary64/sin/sin.c @@ -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. */