Some very minor tweaks to get borealis to build without warnings on C++20
LayerView: [=] to implicitly capture this was deprecated in in C++20
Makefile: One use of volatile, specifically reading and writing to a single volatile variable in one expression was deprecated, this happens in glm so it can't be fixed directly. -Wno-volatile disables this warning as it's generally not something that needs to be worried about within borealis.
Some very minor tweaks to get borealis to build without warnings on C++20
[=]
to implicitly capturethis
was deprecated in in C++20-Wno-volatile
disables this warning as it's generally not something that needs to be worried about within borealis.