x64/exception_handler_windows: Join namespace declaration
Uses a nested namespace declaration like the rest of the codebase.
This commit is contained in:
parent
ccf923305c
commit
23f56bdb67
1 changed files with 2 additions and 4 deletions
|
@ -68,8 +68,7 @@ struct UNWIND_INFO {
|
||||||
// With Flags == 0 there are no additional fields.
|
// With Flags == 0 there are no additional fields.
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace Dynarmic {
|
namespace Dynarmic::BackendX64 {
|
||||||
namespace BackendX64 {
|
|
||||||
|
|
||||||
struct PrologueInformation {
|
struct PrologueInformation {
|
||||||
std::vector<UNWIND_CODE> unwind_code;
|
std::vector<UNWIND_CODE> unwind_code;
|
||||||
|
@ -198,5 +197,4 @@ void BlockOfCode::ExceptionHandler::Register(BlockOfCode& code) {
|
||||||
impl = std::make_unique<Impl>(rfuncs, code.getCode());
|
impl = std::make_unique<Impl>(rfuncs, code.getCode());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace BackendX64
|
} // namespace Dynarmic::BackendX64
|
||||||
} // namespace Dynarmic
|
|
||||||
|
|
Loading…
Reference in a new issue