backend_x64: Rename UnwindHandler to ExceptionHandler

This commit is contained in:
MerryMage 2017-04-20 14:08:56 +01:00
parent 0d47f50f57
commit 2c9dcfa2db
5 changed files with 15 additions and 15 deletions

View file

@ -0,0 +1,23 @@
/* 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