mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-25 02:50:42 +00:00
Linux: Force some inline functions in clang (faster)
This commit is contained in:
parent
8378cb59ac
commit
cd665ae688
@ -19,8 +19,12 @@
|
||||
|
||||
#include "../Utilities/UTF8Util.h"
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define __forceinline
|
||||
#ifdef __clang__
|
||||
#define __forceinline __attribute__((always_inline))
|
||||
#else
|
||||
#ifdef __GNUC__
|
||||
#define __forceinline
|
||||
#endif
|
||||
#endif
|
||||
|
||||
using std::vector;
|
||||
|
Loading…
x
Reference in New Issue
Block a user