mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-31 23:48:26 +00:00
Store manual chunk level.
This commit is contained in:
@@ -100,7 +100,8 @@ void TracyManualData::AddManualChunk( const std::string_view& manual, int start,
|
||||
.text = std::move( text ),
|
||||
.section = std::move( section ),
|
||||
.title = std::move( title ),
|
||||
.parents = std::move( parents )
|
||||
.parents = std::move( parents ),
|
||||
.level = (int)levels.size() - 1
|
||||
} );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@ public:
|
||||
std::string section;
|
||||
std::string title;
|
||||
std::string parents;
|
||||
int level;
|
||||
};
|
||||
|
||||
TracyManualData();
|
||||
|
||||
Reference in New Issue
Block a user