Skip to content

Commit

Permalink
Fix the C++20 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx committed Mar 7, 2024
1 parent aab301d commit d5522b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/fmq/ODC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void ODC::SubscribeForConnectingChannels()
string channelName = key.substr(8);
LOG(info) << "Update for channel name: " << channelName;

boost::asio::post(fWorkerQueue, [=, this]() {
boost::asio::post(fWorkerQueue, [key, value, senderTaskID, channelName, this]() {
try {
{
unique_lock<mutex> lk(fUpdateMutex);
Expand Down

0 comments on commit d5522b6

Please sign in to comment.