Merge pull request #8588 from merryhime/IBinder-vdestruct

nvflinger: Polymorphic destructor requried for abstract class IBinder
This commit is contained in:
Morph 2022-07-15 06:02:31 -04:00 committed by GitHub
commit 8266f63130
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

@ -34,6 +34,7 @@ enum class TransactionId {
class IBinder {
public:
virtual ~IBinder() = default;
virtual void Transact(Kernel::HLERequestContext& ctx, android::TransactionId code,
u32 flags) = 0;
virtual Kernel::KReadableEvent& GetNativeHandle() = 0;