From 5fd9dcbbdf8565281c1b15f7cdc9d8594e70426a Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Tue, 3 May 2016 18:48:45 -0400 Subject: [PATCH] Fix incorrect attribute as a result of blanket rename --- include/openlibm_math.h | 2 +- src/math_private.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/openlibm_math.h b/include/openlibm_math.h index eca248d..e17e6ad 100644 --- a/include/openlibm_math.h +++ b/include/openlibm_math.h @@ -37,7 +37,7 @@ # ifdef IMPORT_EXPORTS # define OLM_DLLEXPORT __declspec(dllimport) # else -# define OLM_DLLEXPORT __declspec(OLM_DLLEXPORT) +# define OLM_DLLEXPORT __declspec(dllexport) # endif #else #define OLM_DLLEXPORT __attribute__ ((visibility("default"))) diff --git a/src/math_private.h b/src/math_private.h index 2d40880..5c98046 100644 --- a/src/math_private.h +++ b/src/math_private.h @@ -360,7 +360,7 @@ long double __kernel_tanl(long double, long double, int); # ifdef IMPORT_EXPORTS # define OLM_DLLEXPORT __declspec(dllimport) # else -# define OLM_DLLEXPORT __declspec(OLM_DLLEXPORT) +# define OLM_DLLEXPORT __declspec(dllexport) # endif #else #define OLM_DLLEXPORT __attribute__ ((visibility("default")))