Skip to content

Commit

Permalink
Update Core.h
Browse files Browse the repository at this point in the history
  • Loading branch information
SirLynix authored Nov 10, 2023
1 parent b83d947 commit 8a8668f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jolt/Core/Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
#ifdef JPH_PLATFORM_WINDOWS
#define JPH_EXPORT __declspec(dllexport)
#elif defined(JPH_COMPILER_GCC)
#define JPH_EXPORT [[gnu::dllexport]]
#define JPH_EXPORT [[gnu::visibility("default")]]
#else
#define JPH_EXPORT __attribute__((visibility("default")))
#endif
Expand All @@ -200,7 +200,7 @@
#ifdef JPH_PLATFORM_WINDOWS
#define JPH_EXPORT __declspec(dllimport)
#elif defined(JPH_COMPILER_GCC)
#define JPH_EXPORT [[gnu::dllexport]]
#define JPH_EXPORT [[gnu::visibility("default")]]
#else
#define JPH_EXPORT __attribute__((visibility("default")))
#endif
Expand Down

0 comments on commit 8a8668f

Please sign in to comment.