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

Use small vector.

This commit is contained in:
Bartosz Taudul
2017-09-15 20:17:39 +02:00
parent 6b589e9479
commit b4faa0a9b9
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
#include <vector>
#include "TracyVector.hpp"
namespace tracy
{
@@ -11,7 +11,7 @@ struct Event
int64_t start;
int64_t end;
std::vector<Event*> child;
Vector<Event*> child;
};
enum { EventSize = sizeof( Event ) };