Skip to content

Commit

Permalink
fixing aligning bug that cause prtoblems with unreal build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioJerez committed Oct 18, 2024
1 parent 382bf65 commit 60bd7e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions newton-4.00/sdk/dCore/ndTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,19 @@
#define D_GCC_NEWTON_ALIGN_32
#define D_MSV_NEWTON_ALIGN_32 __declspec(align(32))
#else
#define D_GCC_NEWTON_ALIGN_16 __attribute__((aligned (16)))
#define D_GCC_NEWTON_ALIGN_16 __attribute__(aligned (16))
#define D_MSV_NEWTON_ALIGN_16

#define D_GCC_NEWTON_ALIGN_32 __attribute__((aligned (32)))
#define D_GCC_NEWTON_ALIGN_32 __attribute__(aligned (32))
#define D_MSV_NEWTON_ALIGN_32
#endif

#if defined(_MSC_VER)
#define D_LIBRARY_EXPORT __declspec(dllexport)
#define D_LIBRARY_IMPORT __declspec(dllimport)
#else
#define D_LIBRARY_EXPORT __attribute__((visibility("default")))
#define D_LIBRARY_IMPORT __attribute__((visibility("default")))
#define D_LIBRARY_EXPORT __attribute__(visibility("default"))
#define D_LIBRARY_IMPORT __attribute__(visibility("default"))
#endif

#ifdef _D_CORE_DLL
Expand Down

0 comments on commit 60bd7e7

Please sign in to comment.