matches the change in node.h in 88b494191c, both are necessary because Chromium builds with symbols hidden by default
This commit is contained in:
Jeremy Apthorp 2018-10-15 15:15:58 -07:00 коммит произвёл GitHub
Родитель 3bcbfdff69
Коммит 3349ef049f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ struct uv_loop_s; // Forward declaration.
#define NAPI_EXTERN __declspec(dllexport)
#endif
#else
#define NAPI_EXTERN /* nothing */
#define NAPI_EXTERN __attribute__((visibility("default")))
#endif
#ifdef _WIN32