Merge pull request #9346 from lioncash/vtable

producer_listener: Add virtual destructor to IProducerListener
This commit is contained in:
liamwhite 2022-11-29 08:26:32 -05:00 committed by GitHub
commit 6b8ab9ed8f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@ namespace Service::android {
class IProducerListener {
public:
virtual ~IProducerListener() = default;
virtual void OnBufferReleased() = 0;
};