0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-28 01:04:41 +08:00

Merge branch 'develop' of github.com:yse/easy_profiler into develop

This commit is contained in:
Sergey Yagovtsev 2016-06-20 22:27:10 +03:00
commit 8c746fc991

View File

@ -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)
{