a32_interface: Default destructor in the cpp file

Makes it more consistent with code throughout the codebase.
This commit is contained in:
Lioncash 2019-05-23 21:56:23 -04:00
parent 884d759eba
commit 1d65e3a521
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -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);