16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 19:19:19 +02:00

Usunięcie pozostałych jeszcze słów kluczowych __fastcall.

This commit is contained in:
firleju
2016-04-06 06:58:29 +02:00
parent 52cf14d83a
commit 25bdd9d536
32 changed files with 147 additions and 147 deletions

View File

@@ -272,8 +272,8 @@ typedef Py_intptr_t Py_ssize_t;
/* ignore warnings if the compiler decides not to inline a function */
#pragma warning(disable: 4710)
/* fastest possible local call under MSVC */
#define Py_LOCAL(type) static type __fastcall
#define Py_LOCAL_INLINE(type) static __inline type __fastcall
#define Py_LOCAL(type) static type
#define Py_LOCAL_INLINE(type) static __inline type
#elif defined(USE_INLINE)
#define Py_LOCAL(type) static type
#define Py_LOCAL_INLINE(type) static inline type