From 5ddfda9170b608fd6c9d80350b9509c5c03af160 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 10 Sep 2018 11:28:12 +0200 Subject: [PATCH] Initialize capacity in vector, as it's checked by asserts. --- server/TracyVector.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyVector.hpp b/server/TracyVector.hpp index 8db9df98..ad47c82f 100644 --- a/server/TracyVector.hpp +++ b/server/TracyVector.hpp @@ -23,6 +23,7 @@ public: Vector() : m_ptr( nullptr ) , m_size( 0 ) + , m_capacity( 0 ) { }