From 29dcc5c8bc51ca0e547d888f14c46e186dbc2339 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 3 Nov 2019 14:33:13 +0100 Subject: [PATCH] Don't zero-initialize Int48. --- server/TracyEvent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index 18ff9c6c..56cb12f9 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -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 );