mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
Fixed typo for Mac OS X builds
This commit is contained in:
parent
7f33b7371b
commit
625f0006c9
@ -5,8 +5,12 @@
|
||||
#ifdef __MINGW32__
|
||||
# define JNIEXPORT __declspec(dllexport)
|
||||
#else
|
||||
#ifdef __APPLE__
|
||||
# define JNIEXPORT __attribute__ ((used))
|
||||
#else
|
||||
# define JNIEXPORT __attribute__ ((visibility("default")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace {
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# define JNIEXPORT __declspec(dllexport)
|
||||
#else
|
||||
#ifdef __APPLE__
|
||||
# define JNIEXPORT __attribute__ ((visibility("used")))
|
||||
# define JNIEXPORT __attribute__ ((used))
|
||||
#else
|
||||
# define JNIEXPORT __attribute__ ((visibility("default")))
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user