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
The class CSFilter, unlike other filters like PMFFilter etc., does not declare or define a destructor. This leads to problems when including the file into other C++ projects, since the unique_ptr holding the CSArgs needs to know how to destruct it.
Expected behavior
Project compiles when including the header "CSFiler.hpp" into another project that uses PDAL as a DLL.
The text was updated successfully, but these errors were encountered:
To be clear, there's no problem including the file, the problem comes when you need to invoke the destructor of a CSFilter. You can avoid this issue by using StageFactory, but will fix.
The class CSFilter, unlike other filters like PMFFilter etc., does not declare or define a destructor. This leads to problems when including the file into other C++ projects, since the unique_ptr holding the CSArgs needs to know how to destruct it.
Expected behavior
Project compiles when including the header "CSFiler.hpp" into another project that uses PDAL as a DLL.
The text was updated successfully, but these errors were encountered: