Open3DMotionGroup / Open3DMotion

Other
5 stars 2 forks source link

Update C++ auto_ptr to unique_ptr #38

Closed drjrm closed 4 years ago

drjrm commented 4 years ago

std::unique_ptr is preferred over std::auto_ptr since C++ 11. It would be helpful to update this as some C++ 17 compilers show use of auto_ptr as an error by default (e.g. Visual Studio 2019).

drjrm commented 4 years ago

Implemented in abf7f5d24c958ef6cd03d5efc5172d44c53dc45f .