Browse Source
Merge pull request #8588 from merryhime/IBinder-vdestruct
nvflinger: Polymorphic destructor requried for abstract class IBinder
pull/15/merge
Morph
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
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; |
|
|
|
|