mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-23 06:44:35 +00:00
Another unneeded capture.
This commit is contained in:
parent
096022a718
commit
9c6d037859
@ -7990,7 +7990,7 @@ void View::DrawAllocList()
|
|||||||
|
|
||||||
ImGui::Begin( "Allocations list", &m_memInfo.showAllocList );
|
ImGui::Begin( "Allocations list", &m_memInfo.showAllocList );
|
||||||
TextFocused( "Number of allocations:", RealToString( m_memInfo.allocList.size(), true ) );
|
TextFocused( "Number of allocations:", RealToString( m_memInfo.allocList.size(), true ) );
|
||||||
ListMemData<decltype( data.begin() )>( data.begin(), data.end(), [this]( auto& v ) {
|
ListMemData<decltype( data.begin() )>( data.begin(), data.end(), []( auto& v ) {
|
||||||
ImGui::Text( "0x%" PRIx64, (*v)->ptr );
|
ImGui::Text( "0x%" PRIx64, (*v)->ptr );
|
||||||
}, "##allocations" );
|
}, "##allocations" );
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
Loading…
Reference in New Issue
Block a user