1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Using std::vector instead of Vector is no longer possible.

This commit is contained in:
Bartosz Taudul 2018-03-18 19:56:53 +01:00
parent 77fa8f54a6
commit f5b0f34827

View File

@ -11,10 +11,6 @@
namespace tracy
{
#if 0
template<typename T>
using Vector = std::vector<T>;
#else
#pragma pack( 1 )
template<typename T>
class Vector
@ -241,7 +237,6 @@ private:
uint8_t m_capacity;
};
#pragma pack()
#endif
}