Skip to content

Use std::unique_ptr for PIMPL

Li-Ta Lo requested to merge ollielo/vtk-m:rendering_cpp_cleanup into master

Many classes in the rendering library used std::shared_ptr for PIMPL. They could and should be changed to use std::unique_ptr since the PIMPL are supposed to be owned by multiple instances.

Merge request reports