From 9c6d037859e5f6733e593aba148a52d10e20e638 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 6 Jan 2019 21:15:49 +0100 Subject: [PATCH] Another unneeded capture. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();