overte-lubosz/assignment-client
Lubosz Sarnecki 676de4b75b interface+libraries+tools: Capture this explicitly in lambda copy capture.
Since C++20 it is deprecated to implicitly capture this with [=] lambda
copy expressions.

See: https://en.cppreference.com/w/cpp/language/lambda#Lambda_capture

This patch replaces these occurances with [this] where only this is
required and [=, this] where more scope is required.

In case only this and another variable is required in the scope I chose
to use that variable explicitly in favor of =.

This fixes the GCC14 warning: implicit capture of ‘this’ via ‘[=]’ is deprecated in C++20 [-Wdeprecated].
2024-08-03 18:59:15 +02:00
..
src interface+libraries+tools: Capture this explicitly in lambda copy capture. 2024-08-03 18:59:15 +02:00
CMakeLists.txt Move crash handler to networking library. 2023-07-02 22:10:27 +02:00