summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2022-07-15 10:28:18 +0100
committerMerry <git@mary.rs>2022-07-15 10:28:54 +0100
commit30b23fb7b80ca51c7dfacafbb5ef428348deac31 (patch)
tree3344c1fafaa9e54bea90018e158fdc56468a6e91
parent53fb4a78a3ab73b4233464b74be5fcf53b0424d0 (diff)
nvflinger: Polymorphic destructor requried for abstract class IBinder
-rw-r--r--src/core/hle/service/nvflinger/binder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/binder.h b/src/core/hle/service/nvflinger/binder.h
index 21aaa40cd..157333ff8 100644
--- a/src/core/hle/service/nvflinger/binder.h
+++ b/src/core/hle/service/nvflinger/binder.h
@@ -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;