Bugfix: Wrongly remembered visibility parameter

This commit is contained in:
Johannes Schriewer 2018-08-05 18:48:47 +02:00
parent 61f0bc880e
commit 57d765acd9

View file

@ -21,11 +21,7 @@ extern "C" {
#if MSVC
#define API __declspec(dllexport)
#else
#if DEBUG
#define API __attribute__((visibility("visible")))
#else
#define API __attribute__((visibility("visible")))
#endif
#define API __attribute__((visibility("default")))
#endif
#include <stdint.h>