summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2022-07-15 06:02:31 -0400
committerGravatar GitHub2022-07-15 06:02:31 -0400
commit8266f63130bc3655539e626095a24594adcaebc8 (patch)
tree455fd298e0341cc0269b1f02da12e062f342d4b4
parentMerge pull request #8586 from merryhime/KCodeMemory-override (diff)
parentnvflinger: Polymorphic destructor requried for abstract class IBinder (diff)
downloadyuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.gz
yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.xz
yuzu-8266f63130bc3655539e626095a24594adcaebc8.zip
Merge pull request #8588 from merryhime/IBinder-vdestruct
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 {
34 34
35class IBinder { 35class IBinder {
36public: 36public:
37 virtual ~IBinder() = default;
37 virtual void Transact(Kernel::HLERequestContext& ctx, android::TransactionId code, 38 virtual void Transact(Kernel::HLERequestContext& ctx, android::TransactionId code,
38 u32 flags) = 0; 39 u32 flags) = 0;
39 virtual Kernel::KReadableEvent& GetNativeHandle() = 0; 40 virtual Kernel::KReadableEvent& GetNativeHandle() = 0;