Skip to content

Commit

Permalink
revert addition of ALIGNTYPE16
Browse files Browse the repository at this point in the history
  • Loading branch information
revelator authored Nov 18, 2024
1 parent d0fc68c commit 59afa20
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions neo/sys/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ If you have questions concerning this license or the applicable additional terms
#define ID_GAME_API
#endif
#define ALIGN16( x ) __declspec( align( 16 ) ) x
#define ALIGNTYPE16 __declspec( align( 16 ) )
#define PACKED
#define ID_INLINE __forceinline
// DG: alternative to forced inlining of ID_INLINE for functions that do alloca()
Expand All @@ -116,7 +115,6 @@ If you have questions concerning this license or the applicable additional terms
#define ID_GAME_API
#endif
#define ALIGN16( x ) x __attribute__ ( ( aligned ( 16 ) ) )
#define ALIGNTYPE16 __attribute__ ( ( aligned ( 16 ) ) )
#define PACKED __attribute__( ( packed ) )
#define ID_INLINE inline
#define ID_STATIC_TEMPLATE
Expand Down Expand Up @@ -163,7 +161,6 @@ If you have questions concerning this license or the applicable additional terms
#endif

#define ALIGN16( x ) x __attribute__ ( ( aligned ( 16 ) ) )
#define ALIGNTYPE16 __attribute__ ( ( aligned ( 16 ) ) )
#define PACKED __attribute__( ( packed ) )

#define _alloca alloca
Expand Down Expand Up @@ -201,7 +198,6 @@ If you have questions concerning this license or the applicable additional terms
#endif

#define ALIGN16( x ) x __attribute__ ( ( aligned ( 16 ) ) )
#define ALIGNTYPE16 __attribute__ ( ( aligned ( 16 ) ) )
#define PACKED __attribute__( (packed) )

#define PATHSEPERATOR_STR "/"
Expand Down

0 comments on commit 59afa20

Please sign in to comment.