1
0
Fork 0
mirror of https://git.suyu.dev/suyu/dynarmic.git synced 2025-03-05 13:45:36 +00:00

coprocessor: Coprocessor's destructor doesn't have to be pure

This commit is contained in:
MerryMage 2017-01-30 22:10:40 +00:00
parent a0e9417912
commit 459d7d1baf

View file

@ -19,7 +19,7 @@ class Jit;
class Coprocessor { class Coprocessor {
public: public:
virtual ~Coprocessor() = 0; virtual ~Coprocessor() = default;
using CoprocReg = Arm::CoprocReg; using CoprocReg = Arm::CoprocReg;