Fix g++-14 -Wtemplate-id-cdtor

This commit is contained in:
Marko Mäkelä 2024-04-11 15:51:30 +03:00
parent f131c60938
commit 04be12a8f5

View file

@ -1084,8 +1084,7 @@ template <class T>
class PFS_buffer_processor
{
public:
virtual ~PFS_buffer_processor<T> ()
{}
virtual ~PFS_buffer_processor()= default;
virtual void operator()(T *element) = 0;
};