From f5b0f34827406281528cd936ff6293b4a5256496 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 18 Mar 2018 19:56:53 +0100 Subject: [PATCH] Using std::vector instead of Vector is no longer possible. --- server/TracyVector.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/server/TracyVector.hpp b/server/TracyVector.hpp index d63fe2ec..db2474f8 100644 --- a/server/TracyVector.hpp +++ b/server/TracyVector.hpp @@ -11,10 +11,6 @@ namespace tracy { -#if 0 -template -using Vector = std::vector; -#else #pragma pack( 1 ) template class Vector @@ -241,7 +237,6 @@ private: uint8_t m_capacity; }; #pragma pack() -#endif }