mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
* 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:
parent
464cb7ae29
commit
6ad2876504
3 changed files with 64 additions and 61 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue