diff --git a/include/profiler/reader.h b/include/profiler/reader.h index 8423acf..20a9c5a 100644 --- a/include/profiler/reader.h +++ b/include/profiler/reader.h @@ -22,15 +22,17 @@ along with this program.If not, see . ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #include -#include "profiler/profiler.h" #include +#include "profiler/profiler.h" ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct BlocksTree { + typedef std::vector children_t; + profiler::SerilizedBlock* node; - std::vector children; + children_t children; BlocksTree():node(nullptr) {