mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-03 12:05:58 +02:00
24 lines
616 B
C++
24 lines
616 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 MerryMage
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
* General Public License version 2 or any later version.
|
|
*/
|
|
|
|
#include "backend_x64/block_of_code.h"
|
|
|
|
namespace Dynarmic {
|
|
namespace BackendX64 {
|
|
|
|
struct BlockOfCode::ExceptionHandler::Impl final {
|
|
};
|
|
|
|
BlockOfCode::ExceptionHandler::ExceptionHandler() = default;
|
|
BlockOfCode::ExceptionHandler::~ExceptionHandler() = default;
|
|
|
|
void BlockOfCode::ExceptionHandler::Register(BlockOfCode*) {
|
|
// Do nothing
|
|
}
|
|
|
|
} // namespace BackendX64
|
|
} // namespace Dynarmic
|