mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-31 18:15:24 +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
|
||||
|
||||
#define TORQUE_UNUSED(var) (void)(var)
|
||||
#define TORQUE_UNUSED(var) (void)sizeof(var)
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
//------------------------------------- String Types
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue