Merge pull request #9346 from lioncash/vtable

producer_listener: Add virtual destructor to IProducerListener
pull/8/head
liamwhite 2 years ago committed by GitHub
commit 6b8ab9ed8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save