Skip to content

Commit b7d19d0

Browse files
committed
Fix module export on GCC...
1 parent 9eec60e commit b7d19d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#if defined(WIN32) || defined(_WIN32) || defined(__CYGWIN__)
2828
#define HTTPS_DLLEXPORT __declspec(dllexport)
29-
#elif defined(__GNUC_) || defined(__clang__)
29+
#elif defined(__GNUC__) || defined(__clang__)
3030
#define HTTPS_DLLEXPORT __attribute__ ((visibility("default")))
3131
#else
3232
#define HTTPS_DLLEXPORT

0 commit comments

Comments
 (0)