mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2025-07-02 03:41:04 -07:00
Fixed bugs with optimized builds
Symbol table for engine module was out of order.
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
|
||||
// Casting
|
||||
|
||||
#define ccast( Type, Value ) ( * const_cast< Type* >( & (Value) ) )
|
||||
#define ccast( Type, Value ) ( const_cast< Type >( (Value) ) )
|
||||
#define pcast( Type, Value ) ( * reinterpret_cast< Type* >( & ( Value ) ) )
|
||||
#define rcast( Type, Value ) reinterpret_cast< Type >( Value )
|
||||
#define scast( Type, Value ) static_cast< Type >( Value )
|
||||
|
Reference in New Issue
Block a user