Skip to content

Commit 96a8156

Browse files
cmelloCesar Menin De Mello
andauthored
Fix warning about unused this parameter in lambda (#942)
Co-authored-by: Cesar Menin De Mello <cesarmen@microsoft.com>
1 parent e0be0f0 commit 96a8156

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Task/TaskQueue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ void TaskQueuePortImpl::SignalTerminations()
12251225

12261226
{
12271227
std::lock_guard<std::mutex> lock(m_terminationLock);
1228-
m_terminationList->remove_if([this, &entries_to_process](auto& entry, auto address)
1228+
m_terminationList->remove_if([&entries_to_process](auto& entry, auto address)
12291229
{
12301230
if (entry->portContext->GetStatus() >= TaskQueuePortStatus::Terminating)
12311231
{

0 commit comments

Comments
 (0)