x64/exception_handler_windows: Join namespace declaration

Uses a nested namespace declaration like the rest of the codebase.
This commit is contained in:
Lioncash 2019-05-24 02:18:35 -04:00 committed by MerryMage
parent ccf923305c
commit 23f56bdb67

View file

@ -68,8 +68,7 @@ struct UNWIND_INFO {
// With Flags == 0 there are no additional fields.
};
namespace Dynarmic {
namespace BackendX64 {
namespace Dynarmic::BackendX64 {
struct PrologueInformation {
std::vector<UNWIND_CODE> unwind_code;
@ -198,5 +197,4 @@ void BlockOfCode::ExceptionHandler::Register(BlockOfCode& code) {
impl = std::make_unique<Impl>(rfuncs, code.getCode());
}
} // namespace BackendX64
} // namespace Dynarmic
} // namespace Dynarmic::BackendX64