0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00

(profiler Reader fix) Added thread_name assignment into BlocksTree::makeMove()

This commit is contained in:
Victor Zarubkin 2016-08-02 21:20:38 +03:00
parent fd67a3d81b
commit 4b0d8e5e63

View File

@ -99,7 +99,7 @@ struct BlocksTree
::profiler::SerilizedBlock* node;
::profiler::BlockStatistics* frame_statistics; ///< Pointer to statistics for this block within the parent (may be nullptr for top-level blocks)
::profiler::BlockStatistics* total_statistics; ///< Pointer to statistics for this block within the bounds of all frames per current thread
const char* thread_name;
const char* thread_name;
#ifdef PROFILER_COUNT_TOTAL_CHILDREN_NUMBER
unsigned int total_children_number; ///< Number of all children including number of grandchildren (and so on)
@ -178,6 +178,7 @@ private:
node = that.node;
frame_statistics = that.frame_statistics;
total_statistics = that.total_statistics;
thread_name = that.thread_name;
#ifdef PROFILER_COUNT_TOTAL_CHILDREN_NUMBER
total_children_number = that.total_children_number;