0
0
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:
Victor Zarubkin 2016-06-19 23:57:58 +03:00
parent f0a0b51a85
commit bc496f7ecf

View File

@ -22,15 +22,17 @@ along with this program.If not, see <http://www.gnu.org/licenses/>.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <vector> #include <vector>
#include "profiler/profiler.h"
#include <map> #include <map>
#include "profiler/profiler.h"
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
struct BlocksTree struct BlocksTree
{ {
typedef std::vector<BlocksTree> children_t;
profiler::SerilizedBlock* node; profiler::SerilizedBlock* node;
std::vector<BlocksTree > children; children_t children;
BlocksTree():node(nullptr) BlocksTree():node(nullptr)
{ {