mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-24 08:14:55 +01:00
coprocessor: Coprocessor's destructor doesn't have to be pure
This commit is contained in:
parent
a0e9417912
commit
459d7d1baf
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ class Jit;
|
|||
|
||||
class Coprocessor {
|
||||
public:
|
||||
virtual ~Coprocessor() = 0;
|
||||
virtual ~Coprocessor() = default;
|
||||
|
||||
using CoprocReg = Arm::CoprocReg;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue