backend/x64: Make ExceptionHandler its own class

This commit is contained in:
MerryMage
2020-04-08 11:57:53 +01:00
parent 325808949f
commit 9d60d92692
8 changed files with 50 additions and 27 deletions

View File

@@ -4,17 +4,17 @@
* General Public License version 2 or any later version.
*/
#include "backend/x64/block_of_code.h"
#include "backend/x64/exception_handler.h"
namespace Dynarmic::Backend::X64 {
struct BlockOfCode::ExceptionHandler::Impl final {
struct ExceptionHandler::Impl final {
};
BlockOfCode::ExceptionHandler::ExceptionHandler() = default;
BlockOfCode::ExceptionHandler::~ExceptionHandler() = default;
ExceptionHandler::ExceptionHandler() = default;
ExceptionHandler::~ExceptionHandler() = default;
void BlockOfCode::ExceptionHandler::Register(BlockOfCode&) {
void ExceptionHandler::Register(BlockOfCode&) {
// Do nothing
}