overte-lubosz/libraries/render
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/render interface+libraries+tools: Capture this explicitly in lambda copy capture. 2024-08-03 18:59:15 +02:00
CMakeLists.txt Moving to cmake time shader compiling 2018-08-03 14:58:11 -07:00