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:
@@ -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 ) };
|
||||
|
||||
Reference in New Issue
Block a user