Skip to content

Commit 5fd9dcb

Browse files
committed
Fix incorrect attribute as a result of blanket rename
1 parent 5501bf0 commit 5fd9dcb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

include/openlibm_math.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# ifdef IMPORT_EXPORTS
3838
# define OLM_DLLEXPORT __declspec(dllimport)
3939
# else
40-
# define OLM_DLLEXPORT __declspec(OLM_DLLEXPORT)
40+
# define OLM_DLLEXPORT __declspec(dllexport)
4141
# endif
4242
#else
4343
#define OLM_DLLEXPORT __attribute__ ((visibility("default")))

src/math_private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ long double __kernel_tanl(long double, long double, int);
360360
# ifdef IMPORT_EXPORTS
361361
# define OLM_DLLEXPORT __declspec(dllimport)
362362
# else
363-
# define OLM_DLLEXPORT __declspec(OLM_DLLEXPORT)
363+
# define OLM_DLLEXPORT __declspec(dllexport)
364364
# endif
365365
#else
366366
#define OLM_DLLEXPORT __attribute__ ((visibility("default")))

0 commit comments

Comments
 (0)