Removed NOINLINE

This commit is contained in:
Tom Lally 2022-08-28 10:13:37 +01:00
parent 52a7f6fcd5
commit fc407e509e
3 changed files with 2 additions and 9 deletions

View file

@ -253,13 +253,6 @@ typedef union _LARGE_INTEGER {
#error No definition for DLLEXPORT and DLLIMPORT
#endif
#if defined(_MSC_VER)
#define NOINLINE __declspec(noinline)
#elif defined(__GNUC__)
#define NOINLINE __attribute__((noinline))
#else
#error No definition for NOINLINE
#endif
// MEMPTR
#include "Common/MemPtr.h"