diff --git a/Engine/source/platform/types.h b/Engine/source/platform/types.h index 8ce702a3c..0a7bd63ba 100644 --- a/Engine/source/platform/types.h +++ b/Engine/source/platform/types.h @@ -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