mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-28 01:04:41 +08:00
Typedef for children array type
This commit is contained in:
parent
f0a0b51a85
commit
bc496f7ecf
@ -22,15 +22,17 @@ along with this program.If not, see <http://www.gnu.org/licenses/>.
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <vector>
|
||||
#include "profiler/profiler.h"
|
||||
#include <map>
|
||||
#include "profiler/profiler.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
struct BlocksTree
|
||||
{
|
||||
typedef std::vector<BlocksTree> children_t;
|
||||
|
||||
profiler::SerilizedBlock* node;
|
||||
std::vector<BlocksTree > children;
|
||||
children_t children;
|
||||
|
||||
BlocksTree():node(nullptr)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user