From 88d458063184cc320ecbadc049aac89b50802da4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 11 Nov 2017 02:43:08 +0100 Subject: [PATCH] Proper initialization order. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 97534ef0..b75fb2f7 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -121,6 +121,7 @@ View::View( const char* addr ) , m_connected( false ) , m_hasData( false ) , m_staticView( false ) + , m_sourceLocationExpand( { 0 } ) , m_zonesCnt( 0 ) , m_mbps( 64 ) , m_stream( LZ4_createStreamDecode() ) @@ -144,7 +145,6 @@ View::View( const char* addr ) , m_onlyContendedLocks( false ) , m_namespace( Namespace::Full ) , m_terminate( false ) - , m_sourceLocationExpand( { 0 } ) { assert( s_instance == nullptr ); s_instance = this;