You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need substitute SDL's shared pointer with the one from c++11 standard and std::auto_ptr with std::unique_ptr
Description
SDL has own implementation of shared pointer. Since this one is not quite efficient and in some cases danger to use, SDL has to use shared pointer from standard library.
Required activities:
Substitute utils::SharedPtr with std::shared_ptr
Use std::make_shared instead of SDL's analogue as well as explicit new operator
Substitute std::auto_ptr with std::unique_ptr
Check if it compiles fine for QNX 6.5
OS & Version Information
OS/Version:
SDL Core Version:
Testing Against:
The text was updated successfully, but these errors were encountered:
Bug Report
Need substitute SDL's shared pointer with the one from c++11 standard and std::auto_ptr with std::unique_ptr
Description
SDL has own implementation of shared pointer. Since this one is not quite efficient and in some cases danger to use, SDL has to use shared pointer from standard library.
Required activities:
OS & Version Information
The text was updated successfully, but these errors were encountered: