diff --git a/server/TracyVector.hpp b/server/TracyVector.hpp index cb9d602f..c06de5a7 100644 --- a/server/TracyVector.hpp +++ b/server/TracyVector.hpp @@ -56,7 +56,6 @@ public: if( m_capacity != MaxCapacity() && m_ptr ) { memUsage -= Capacity() * sizeof( T ); - const auto sz = size(); free( m_ptr ); } } @@ -67,7 +66,6 @@ public: if( m_capacity != MaxCapacity() && m_ptr ) { memUsage -= Capacity() * sizeof( T ); - const auto sz = size(); free( m_ptr ); } memcpy( this, &src, sizeof( Vector ) );