Implicit Capture of 'This' via '[=]' is Deprecated
Error
Cause
Lambdas change slighlty with the upgrade to c++20, which gets implemented in 5.3. This error happens when upgrading something from 5.2 to 5.3.
Fix
In 5.2, a lambda is defined like this:
But in 5.3, it needs to become this:
Last updated