Skip to content

Commit

Permalink
no that wasn't the problem, reverts
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioJerez committed Oct 18, 2024
1 parent 60bd7e7 commit 2a05260
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 2a05260

Please sign in to comment.