mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 09:14:54 +01:00
a32_interface: Default destructor in the cpp file
Makes it more consistent with code throughout the codebase.
This commit is contained in:
parent
25750ad2a2
commit
b13b6610b5
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ private:
|
|||
|
||||
Jit::Jit(UserConfig config) : impl(std::make_unique<Impl>(this, config)) {}
|
||||
|
||||
Jit::~Jit() {}
|
||||
Jit::~Jit() = default;
|
||||
|
||||
void Jit::Run() {
|
||||
ASSERT(!is_executing);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue