mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +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 );
|
||||
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 );
|
||||
}, "##allocations" );
|
||||
ImGui::End();
|
||||
|
Loading…
Reference in New Issue
Block a user