Skip to content

Commit

Permalink
Merge pull request #45078 from iarspider/iarspider-patch-20240528-7
Browse files Browse the repository at this point in the history
[CPP20][Visualization] Remove deprecated implicit capture of this in FWTEveViewer
  • Loading branch information
cmsbuild authored Jun 3, 2024
2 parents 39f21dd + 4e40d5c commit 2a33c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fireworks/Core/src/FWTEveViewer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ FWTEveViewer::~FWTEveViewer() {
void FWTEveViewer::spawn_image_thread() {
std::unique_lock<std::mutex> lko(m_moo);

m_thr = new std::thread([=]() {
m_thr = new std::thread([this]() {
{
std::unique_lock<std::mutex> lk(m_moo);
m_cnd.notify_one();
Expand Down

0 comments on commit 2a33c36

Please sign in to comment.