1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Don't zero-initialize Int48.

This commit is contained in:
Bartosz Taudul 2019-11-03 14:33:13 +01:00
parent acce6867f1
commit 29dcc5c8bc

View File

@ -112,7 +112,7 @@ private:
class Int48
{
public:
tracy_force_inline Int48() { memset( m_val, 0, sizeof( m_val ) ); }
tracy_force_inline Int48() {}
tracy_force_inline Int48( int64_t val )
{
SetVal( val );