mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
Merge pull request #675 from BeamNG/fix_assertfatal_release_performance
Fix assertfatal/TORQUE_UNUSED release performance
This commit is contained in:
commit
ef4e7ec975
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ typedef double F64; ///< Compiler independent 64-bit float
|
||||||
|
|
||||||
struct EmptyType {}; ///< "Null" type used by templates
|
struct EmptyType {}; ///< "Null" type used by templates
|
||||||
|
|
||||||
#define TORQUE_UNUSED(var) (void)(var)
|
#define TORQUE_UNUSED(var) (void)sizeof(var)
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
//------------------------------------- String Types
|
//------------------------------------- String Types
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue