* BugFix: Correct 3 missing defines in the GCC types include file.

* BugFix: Move several compiledEval declarations around to resolve ordering issues.
* BugFix: Experimentally remove the reference on an engineAPI template function to allow parameter types to match.
This commit is contained in:
Robert MacGregor 2021-07-09 21:05:55 -04:00
parent 464cb7ae29
commit 6ad2876504
3 changed files with 64 additions and 61 deletions

View file

@ -43,6 +43,9 @@ typedef unsigned long U64;
// Compiler Version
#define TORQUE_COMPILER_GCC (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#define TORQUE_FORCEINLINE __attribute__((always_inline))
#define TORQUE_CASE_FALLTHROUGH __attribute__((fallthrough))
#define TORQUE_NOINLINE __attribute__ ((noinline))
//--------------------------------------
// Identify the compiler string