Closed sergeyvfx closed 12 months ago
std::shared_ptr requires <memory> header. Without it being included explicitly some compilers might fail to compile (while others might have been using the header indirectly).
std::shared_ptr
<memory>
Fixes compilation error with GCC 12 on Raspberry Pi OS.
std::shared_ptr
requires<memory>
header. Without it being included explicitly some compilers might fail to compile (while others might have been using the header indirectly).Fixes compilation error with GCC 12 on Raspberry Pi OS.