diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-15 12:02:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 12:02:31 +0200 |
commit | 8266f63130bc3655539e626095a24594adcaebc8 (patch) | |
tree | 455fd298e0341cc0269b1f02da12e062f342d4b4 | |
parent | Merge pull request #8586 from merryhime/KCodeMemory-override (diff) | |
parent | nvflinger: Polymorphic destructor requried for abstract class IBinder (diff) | |
download | yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.gz yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.bz2 yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.lz yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.xz yuzu-8266f63130bc3655539e626095a24594adcaebc8.tar.zst yuzu-8266f63130bc3655539e626095a24594adcaebc8.zip |
-rw-r--r-- | src/core/hle/service/nvflinger/binder.h | 1 |
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; |