Skip to content

Commit

Permalink
fix: always inline with inline keyword (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy authored Apr 4, 2024
1 parent 0a9994f commit 392b5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecsact/runtime/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifdef _MSC_VER
# define ECSACT_ALWAYS_INLINE __forceinline
#else
# define ECSACT_ALWAYS_INLINE __attribute__((always_inline))
# define ECSACT_ALWAYS_INLINE inline __attribute__((always_inline))
#endif

ECSACT_TYPED_ID(ecsact_package_id);
Expand Down

0 comments on commit 392b5df

Please sign in to comment.