AcademySoftwareFoundation / openfx

OpenFX effects API
Other
410 stars 120 forks source link

Replace deprecated auto_ptr with unique_ptr. #115

Closed acolwell closed 1 year ago

acolwell commented 1 year ago

Replaced all std::auto_ptr usage with std::unique_ptr usage. auto_ptr was deprecated in C++11 and was removed in C++17. I tried to make minimal changes that would preserve behavior and avoid changing too many function signatures.