Commit 04be12a8 authored by Marko Mäkelä's avatar Marko Mäkelä

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

parent f131c609
...@@ -1084,8 +1084,7 @@ template <class T> ...@@ -1084,8 +1084,7 @@ template <class T>
class PFS_buffer_processor class PFS_buffer_processor
{ {
public: public:
virtual ~PFS_buffer_processor<T> () virtual ~PFS_buffer_processor()= default;
{}
virtual void operator()(T *element) = 0; virtual void operator()(T *element) = 0;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment