diff --git a/server/TracyView.cpp b/server/TracyView.cpp index d71247e5..2361d36c 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -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( data.begin(), data.end(), [this]( auto& v ) { + ListMemData( data.begin(), data.end(), []( auto& v ) { ImGui::Text( "0x%" PRIx64, (*v)->ptr ); }, "##allocations" ); ImGui::End();