mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
producer_listener: Add virtual destructor to IProducerListener
Several member variables are shared_ptr's to this base class. Even though producer listeners are still unimplemented, this ensures we always have consistent deletion behavior once this ends up being used polymorphically.
This commit is contained in:
parent
6291eec700
commit
25dda06f49
1 changed files with 1 additions and 0 deletions
|
@ -10,6 +10,7 @@ namespace Service::android {
|
||||||
|
|
||||||
class IProducerListener {
|
class IProducerListener {
|
||||||
public:
|
public:
|
||||||
|
virtual ~IProducerListener() = default;
|
||||||
virtual void OnBufferReleased() = 0;
|
virtual void OnBufferReleased() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue